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
432e3090
Commit
432e3090
authored
Mar 05, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求133 后台-集运-包裹列表-批量修改
parent
07e3a6e6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
331 additions
and
2 deletions
+331
-2
cons.js
src/api/ecw/cons.js
+9
-0
batchConsEdit.vue
src/views/ecw/cons/batchConsEdit.vue
+310
-0
index.vue
src/views/ecw/cons/index.vue
+12
-2
No files found.
src/api/ecw/cons.js
View file @
432e3090
...
@@ -17,6 +17,7 @@ export function updateCons(data) {
...
@@ -17,6 +17,7 @@ export function updateCons(data) {
data
:
data
data
:
data
})
})
}
}
//批量签收
export
function
updateConsBatchSignOff
(
data
)
{
export
function
updateConsBatchSignOff
(
data
)
{
return
request
({
return
request
({
url
:
'
/ecw/cons/updateConsBatchSignOff
'
,
url
:
'
/ecw/cons/updateConsBatchSignOff
'
,
...
@@ -24,6 +25,14 @@ export function updateConsBatchSignOff(data) {
...
@@ -24,6 +25,14 @@ export function updateConsBatchSignOff(data) {
data
:
data
data
:
data
})
})
}
}
//批量修改
export
function
updateConsBatch
(
data
)
{
return
request
({
url
:
'
/ecw/cons/updateConsBatch
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除集运包裹主
// 删除集运包裹主
export
function
deleteCons
(
id
)
{
export
function
deleteCons
(
id
)
{
...
...
src/views/ecw/cons/batchConsEdit.vue
0 → 100644
View file @
432e3090
This diff is collapsed.
Click to expand it.
src/views/ecw/cons/index.vue
View file @
432e3090
...
@@ -74,7 +74,7 @@
...
@@ -74,7 +74,7 @@
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleBatchSignOff"
>
批量签收
</el-button>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleBatchSignOff"
>
批量签收
</el-button>
</el-col>
</el-col>
<el-col
:span=
"1.5"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handle
Add
"
>
批量更新货运信息
</el-button>
<el-button
type=
"success"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handle
BatchConsEdit
"
>
批量更新货运信息
</el-button>
</el-col>
</el-col>
<el-col
:span=
"1.5"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-plus"
size=
"mini"
>
转运
</el-button>
<el-button
type=
"success"
plain
icon=
"el-icon-plus"
size=
"mini"
>
转运
</el-button>
...
@@ -284,6 +284,7 @@
...
@@ -284,6 +284,7 @@
<fee-application-cons
v-if=
"feeApplicationBol"
:consId=
"id"
:currencys=
"JSON.stringify(currencyList)"
:dialog-visible.sync=
"feeApplicationBol "
@
refresh=
"getList"
></fee-application-cons>
<fee-application-cons
v-if=
"feeApplicationBol"
:consId=
"id"
:currencys=
"JSON.stringify(currencyList)"
:dialog-visible.sync=
"feeApplicationBol "
@
refresh=
"getList"
></fee-application-cons>
<ConsFollowupEdit
:showConsFollowupEdit.sync=
"showConsFollowupEdit"
:consId=
"id"
@
determine=
"getList"
></ConsFollowupEdit>
<ConsFollowupEdit
:showConsFollowupEdit.sync=
"showConsFollowupEdit"
:consId=
"id"
@
determine=
"getList"
></ConsFollowupEdit>
<batch-sign-off
:showConsBatchSignOff.sync=
"showConsBatchSignOff"
@
determine=
"getList"
:consIds=
"consIds"
></batch-sign-off>
<batch-sign-off
:showConsBatchSignOff.sync=
"showConsBatchSignOff"
@
determine=
"getList"
:consIds=
"consIds"
></batch-sign-off>
<batch-cons-edit
:showConsBatchEdit.sync=
"showConsBatchEdit"
@
determine=
"getList"
:consIds=
"consIds"
></batch-cons-edit>
</div>
</div>
</template>
</template>
...
@@ -303,6 +304,7 @@ import FeeApplication from "@/views/ecw/order/feeApplication.vue"
...
@@ -303,6 +304,7 @@ import FeeApplication from "@/views/ecw/order/feeApplication.vue"
import
{
getChannelList
}
from
"
@/api/ecw/channel
"
;
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
"
;
export
default
{
export
default
{
name
:
"
Cons
"
,
name
:
"
Cons
"
,
...
@@ -314,7 +316,8 @@ export default {
...
@@ -314,7 +316,8 @@ export default {
SpecialNeedsConsLook
,
SpecialNeedsConsLook
,
ConsFollowupEdit
,
ConsFollowupEdit
,
SpecialNeedsCons
,
SpecialNeedsCons
,
BatchSignOff
BatchSignOff
,
BatchConsEdit
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -381,6 +384,7 @@ export default {
...
@@ -381,6 +384,7 @@ export default {
showSpecialNeedsConsLook
:
false
,
showSpecialNeedsConsLook
:
false
,
showConsFollowupEdit
:
false
,
showConsFollowupEdit
:
false
,
showConsBatchSignOff
:
false
,
showConsBatchSignOff
:
false
,
showConsBatchEdit
:
false
,
id
:
null
,
id
:
null
,
currencyList
:
[],
currencyList
:
[],
consNum
:
null
,
consNum
:
null
,
...
@@ -558,6 +562,12 @@ export default {
...
@@ -558,6 +562,12 @@ export default {
this
.
showConsBatchSignOff
=
true
;
this
.
showConsBatchSignOff
=
true
;
},
},
handleBatchConsEdit
(){
if
(
!
this
.
consIds
.
length
){
return
this
.
$message
.
error
(
this
.
$t
(
'
最少选择一个包裹
'
))
}
this
.
showConsBatchEdit
=
true
;
},
/** 新增按钮操作 */
/** 新增按钮操作 */
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
();
...
...
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