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
f56a663f
Commit
f56a663f
authored
Jan 18, 2025
by
knight
Committed by
wux
Jan 22, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug208 【订单列表-修改货值】修改货值页面的问题,请看截图
parent
244750e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
edit.vue
src/views/ecw/order/edit.vue
+12
-7
No files found.
src/views/ecw/order/edit.vue
View file @
f56a663f
...
...
@@ -29,9 +29,9 @@
<!-- <customer-contact-selector v-model="form.consignorContactsId" @change="consignorContact = $event" type="1" /> -->
<div
class=
"contact"
>
<el-input
v-model=
"form.consignorName"
placeholder=
""
:disabled2=
"inWarehouse"
/>
<img
v-if=
"!
updateChannel || !updateWorth"
src=
"@/assets/svg/contacts.svg"
class=
"phonebook"
<img
v-if=
"!
(updateChannel || updateWorth)"
disabled
src=
"@/assets/svg/contacts.svg"
class=
"phonebook"
@
click=
"contactChooseType='consignor'"
/>
<img
v-if=
"!
updateChannel || !updateWorth
"
src=
"@/assets/svg/contact_create.svg"
class=
"phonebook"
<img
v-if=
"!
(updateChannel || updateWorth )
"
src=
"@/assets/svg/contact_create.svg"
class=
"phonebook"
@
click=
"quickCreateType='0'"
/>
</div>
</el-form-item>
...
...
@@ -89,9 +89,9 @@
<!-- <customer-contact-selector v-model="form.consignorContactsId" @change="consignorContact = $event" type="1" /> -->
<div
class=
"contact"
>
<el-input
v-model=
"form.consigneeName"
placeholder=
""
:disabled=
"!hasConsignee"
/>
<img
v-if=
"
(!updateChannel || !
updateWorth) && hasConsignee"
src=
"@/assets/svg/contacts.svg"
class=
"phonebook"
<img
v-if=
"
!(updateChannel ||
updateWorth) && hasConsignee"
src=
"@/assets/svg/contacts.svg"
class=
"phonebook"
@
click=
"contactChooseType='consignee'"
/>
<img
v-if=
"
(!updateChannel || !
updateWorth) && hasConsignee"
src=
"@/assets/svg/contact_create.svg"
class=
"phonebook"
<img
v-if=
"
!(updateChannel ||
updateWorth) && hasConsignee"
src=
"@/assets/svg/contact_create.svg"
class=
"phonebook"
@
click=
"quickCreateType='1'"
/>
</div>
</el-form-item>
...
...
@@ -633,7 +633,7 @@
<div
class=
"form-section"
>
<el-form-item
:label=
"$t('快递单号')"
>
<el-input
v-model=
"form.number"
:placeholder=
"$t('请输入购买商品的快递单号')"
:disabled=
"false"
>
<el-button
type=
"primary"
slot=
"append"
@
click=
"getOrderCourierNumber"
:disabled=
"
false
"
>
<el-button
type=
"primary"
slot=
"append"
@
click=
"getOrderCourierNumber"
:disabled=
"
updateWorth
"
>
{{ $t('生成单号') }}
</el-button>
</el-input>
...
...
@@ -1279,7 +1279,7 @@ export default {
},
// 变更渠道需要显示工作流组件
updateChannel
(
updateChannel
)
{
if
(
updateChannel
)
{
if
(
updateChannel
)
{
this
.
$set
(
this
,
'
showWorkFlow
'
,
true
)
}
},
...
...
@@ -1546,6 +1546,7 @@ export default {
// 复制订单逻辑不管审批业务
this
.
showWorkFlow
=
false
}
// 如果是自定义付款人,则需要同步具体发货人信息
if
(
this
.
form
.
drawee
==
3
)
{
console
.
log
(
'
同步自定义付款人信息
'
,
JSON
.
stringify
(
this
.
customDraweeList
))
...
...
@@ -1583,7 +1584,9 @@ export default {
})
// 已入仓后,必填字段修改则需要显示审批流
if
(
this
.
inWarehouse
)
{
if
(
this
.
updateWorth
==
1
){
this
.
showWorkFlow
=
false
}
else
if
(
this
.
inWarehouse
)
{
Object
.
keys
(
this
.
rules
).
forEach
(
field
=>
{
console
.
log
(
"
watch
"
,
field
)
this
.
$watch
(
`form.
${
field
}
`
,
()
=>
{
...
...
@@ -1592,6 +1595,8 @@ export default {
})
}
// 在初始化结束后transportId还会发生一次变化导致目的港清关被重置,所以需要延迟一下。暂不清楚原因
setTimeout
(()
=>
{
console
.
log
(
'
transportId
'
,
this
.
form
.
transportId
)
...
...
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