Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
c9f603a8
Commit
c9f603a8
authored
Mar 15, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求 136后台-集运-包裹列表-操作-撤出包裹
parent
f1a1da62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
6 deletions
+27
-6
index.vue
src/views/ecw/cons/index.vue
+27
-6
No files found.
src/views/ecw/cons/index.vue
View file @
c9f603a8
...
@@ -252,6 +252,22 @@
...
@@ -252,6 +252,22 @@
v-hasPermi=
"['ecw:order:warehouse_exit']"
v-hasPermi=
"['ecw:order:warehouse_exit']"
>
{{
$t
(
"
处理退仓
"
)
}}
>
{{
$t
(
"
处理退仓
"
)
}}
</el-button>
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click.native=
"
showExit = true
consId = scope.row.id
"
v-hasPermi=
"['ecw:order:warehouse_exit']"
>
{{
$t
(
"
撤出包裹
"
)
}}
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click.native=
"
showAdd = true
consId = scope.row.id
"
v-hasPermi=
"['ecw:order:warehouse_exit']"
>
{{
$t
(
"
追加包裹
"
)
}}
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
...
@@ -350,8 +366,9 @@
...
@@ -350,8 +366,9 @@
:consIds=
"consIds"
></batch-sign-off>
:consIds=
"consIds"
></batch-sign-off>
<batch-cons-edit
:showConsBatchEdit.sync=
"showConsBatchEdit"
@
determine=
"getList"
<batch-cons-edit
:showConsBatchEdit.sync=
"showConsBatchEdit"
@
determine=
"getList"
:consIds=
"consIds"
></batch-cons-edit>
:consIds=
"consIds"
></batch-cons-edit>
<consWithdrawal
v-if=
"show"
:dialog-visible=
"show"
:consId=
"consId"
></consWithdrawal>
<cons-withdrawal
v-if=
"show"
:dialog-visible=
"show"
:consId=
"consId"
></cons-withdrawal>
<cons-cons-withdrawal-deal
v-if=
"showReturnWarehouse"
:dialog-visible=
"showReturnWarehouse"
:consId=
"consId"
></cons-cons-withdrawal-deal>
<cons-withdrawal-exit
v-if=
"showExit"
:dialog-visible=
"showExit"
:consId=
"consId"
></cons-withdrawal-exit>
<cons-withdrawal-deal
v-if=
"showReturnWarehouse"
:dialog-visible=
"showReturnWarehouse"
:consId=
"consId"
></cons-withdrawal-deal>
</div>
</div>
</template>
</template>
...
@@ -371,15 +388,17 @@ import {getChannelList} from "@/api/ecw/channel";
...
@@ -371,15 +388,17 @@ import {getChannelList} from "@/api/ecw/channel";
import
ConsFollowupEdit
from
"
@/views/ecw/consFollowup/components/ConsFollowupEdit.vue
"
import
ConsFollowupEdit
from
"
@/views/ecw/consFollowup/components/ConsFollowupEdit.vue
"
import
BatchSignOff
from
"
@/views/ecw/cons/batchSignOff.vue
"
;
import
BatchSignOff
from
"
@/views/ecw/cons/batchSignOff.vue
"
;
import
BatchConsEdit
from
"
@/views/ecw/cons/batchConsEdit.vue
"
;
import
BatchConsEdit
from
"
@/views/ecw/cons/batchConsEdit.vue
"
;
import
ConsConsWithdrawal
from
"
@/views/ecw/cons/consWithdrawal.vue
"
;
import
ConsWithdrawal
from
"
@/views/ecw/cons/consWithdrawal.vue
"
;
import
ConsConsWithdrawalDeal
from
"
@/views/ecw/cons/consWithdrawalDeal.vue
"
;
import
ConsWithdrawalExit
from
"
@/views/ecw/cons/consWithdrawalExit.vue
"
;
import
ConsWithdrawalDeal
from
"
@/views/ecw/cons/consWithdrawalDeal.vue
"
;
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
{
arrryToKeyedObjectBy
}
from
"
@/utils
"
;
import
{
arrryToKeyedObjectBy
}
from
"
@/utils
"
;
export
default
{
export
default
{
name
:
"
Cons
"
,
name
:
"
Cons
"
,
components
:
{
components
:
{
consWithdrawal
:
ConsConsWithdrawal
,
ConsWithdrawal
,
ConsWithdrawalExit
,
UserSelector
,
UserSelector
,
Transmutation
,
Transmutation
,
Template
,
Template
,
...
@@ -389,7 +408,7 @@ export default {
...
@@ -389,7 +408,7 @@ export default {
SpecialNeedsCons
,
SpecialNeedsCons
,
BatchSignOff
,
BatchSignOff
,
BatchConsEdit
,
BatchConsEdit
,
Cons
Cons
WithdrawalDeal
ConsWithdrawalDeal
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -400,6 +419,8 @@ export default {
...
@@ -400,6 +419,8 @@ export default {
// 显示搜索条件
// 显示搜索条件
showSearch
:
true
,
showSearch
:
true
,
show
:
false
,
show
:
false
,
showExit
:
false
,
showAdd
:
false
,
showReturnWarehouse
:
false
,
showReturnWarehouse
:
false
,
consId
:
undefined
,
consId
:
undefined
,
// 总条数
// 总条数
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment