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
5c374463
Commit
5c374463
authored
Sep 03, 2024
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
编辑订单默认付款人调整
parent
fde2515b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
edit.vue
src/views/ecw/order/edit.vue
+7
-1
No files found.
src/views/ecw/order/edit.vue
View file @
5c374463
...
...
@@ -939,6 +939,8 @@ export default {
hasConsignee
(
val
){
if
(
!
val
){
this
.
$set
(
this
.
form
,
'
isCargoControl
'
,
true
)
// 无收货人且控货则默认发货人付款
this
.
$set
(
this
.
form
,
'
drawee
'
,
1
)
}
},
ccIdArr
(
arr
){
...
...
@@ -1082,7 +1084,7 @@ export default {
'
form.isCargoControl
'
(
isCargoControl
){
console
.
log
(
'
form.isCargoControl
'
,
this
.
form
.
isCargoControl
,
this
.
initing
)
if
(
!
this
.
initing
){
this
.
$set
(
this
.
form
,
'
drawee
'
,
isCargoControl
?
2
:
2
)
this
.
$set
(
this
.
form
,
'
drawee
'
,
isCargoControl
&&
!
this
.
hasConsignee
?
1
:
2
)
}
this
.
setBllLandingPrice
(
'
form.isCargoControl
'
)
...
...
@@ -1373,6 +1375,10 @@ export default {
if
(
!
this
.
noConsignee
&&
!
this
.
hasConsignee
){
this
.
$set
(
this
,
'
hasConsignee
'
,
true
)
}
// 如果默认付款则设置为发货人付款
if
(
contact
.
defaultPay
){
this
.
$set
(
this
.
form
,
'
drawee
'
,
1
)
}
}
this
.
contactChooseType
=
null
...
...
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