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
0427e2f5
Commit
0427e2f5
authored
Mar 04, 2025
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量优惠全包价改运费+清关费bug修复
parent
d11cc8fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
Discounts.vue
src/views/ecw/order/special/Discounts.vue
+12
-1
No files found.
src/views/ecw/order/special/Discounts.vue
View file @
0427e2f5
...
...
@@ -70,7 +70,7 @@
<
div
>
{{
$t
(
'
新清关费
'
)
}}
:
<
el
-
input
v
-
model
=
"
row.clearanceFreight
"
type
=
"
number
"
class
=
"
w-100
"
/>
<!--
货币
-->
<
selector
v
-
model
=
"
row.clearanceFreightCurrency
"
:
options
=
"
currencyList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
defaultable
class
=
"
w-100 ml-10
"
/>
/ {{ unitMap
[
row.
clearanceF
reightVolume
]
}}
</
div
>
/ {{ unitMap
[
row.
f
reightVolume
]
}}
</
div
>
<
/div
>
<
div
v
-
else
>
{{
$t
(
'
新全包价
'
)
}}
:
<
el
-
input
v
-
model
=
"
row.freight
"
type
=
"
number
"
class
=
"
w-100
"
/>
...
...
@@ -156,6 +156,13 @@ export default {
}
}
,
methods
:
{
changeClearanceFreightVolume
(
row
)
{
console
.
log
(
"
切换付费模式:
"
,
row
.
charging
)
if
(
!
row
.
charging
&&
(
!
row
.
clearanceFreightVolume
&&
row
.
clearanceFreightVolume
==
0
)){
// 当付费模式从全包价修改为运费+清关费时,清关费的计量单位为空,需要同步运费的计量单位
row
.
clearanceFreightVolume
=
row
.
freightVolume
}
}
,
handleSubmit
(){
var
fee
=
false
var
msg
=
''
...
...
@@ -170,6 +177,10 @@ export default {
}
}
else
{
if
(
!
v
.
clearanceFreightVolume
&&
v
.
clearanceFreightVolume
==
0
){
// 当付费模式从全包价修改为运费+清关费时,清关费的计量单位为空,需要同步运费的计量单位
v
.
clearanceFreightVolume
=
v
.
freightVolume
}
if
(
!
v
.
clearanceFreight
){
fee
=
true
msg
=
this
.
$t
(
'
新清关费不能为空
'
)
...
...
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