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
7b711d7a
Commit
7b711d7a
authored
Sep 09, 2024
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/price_query' into pre-release
parents
eb9e7f83
7f35012e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
21 deletions
+30
-21
prepayDeal.vue
src/views/ecw/order/prepayDeal.vue
+30
-21
No files found.
src/views/ecw/order/prepayDeal.vue
View file @
7b711d7a
...
...
@@ -1160,12 +1160,6 @@
<
div
class
=
"
price_list
"
v
-
if
=
"
handlerParams.orderExceptionHandlerResult != 'confirmed_return'
"
>
<
div
class
=
"
price_label
"
>
{{
row
.
charging
==
1
?
$t
(
'
全包价
'
)
:
$t
(
"
运费
"
)
}}
:
<
/div
>
<
div
class
=
"
price_list
"
>
<
div
v
-
if
=
"
!row.seaFreightCurrency || !row.seaFreightVolume
"
>
/
<
/div
>
<
div
v
-
else
>
<
inputor
style
=
"
width: 100px
"
default2
=
"
0
"
...
...
@@ -1178,24 +1172,26 @@
{{
unitMap
[
row
.
seaFreightVolume
]
}}
<
/span
>
<
template
v
-
else
>
<
selector
style
=
"
width:100px
"
v
-
model
=
"
row.seaFreightCurrency
"
:
options
=
"
currencyList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
defaultable2
/>
/ <selector style="width:100px" v-model="row.seaFreightVolume" :options="unitList" :label-field="$l
(
'title'
)
" value-field="id" defaultable2 /
>
<!--
不能直接用
v
-
model
,默认未
0
的时候会显示
0
-->
<
selector
style
=
"
width:100px
"
@
input
=
"
handleChangeUnit(row, 'seaFreightCurrency', $event)
"
:
value
=
"
row.seaFreightCurrency || null
"
:
options
=
"
currencyList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
/>
/ <selector style="width:100px
"
@
input
=
"
handleChangeUnit(row, 'seaFreightVolume', $event)
"
:
value
=
"
row.seaFreightVolume || null
"
:
options
=
"
unitList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
/>
<
/template
>
<
/div
>
<
/div
>
<
/div
>
<
div
class
=
"
price_list
"
v
-
if
=
"
(row.charging === 0 || row.charging === '0') && handlerParams.orderExceptionHandlerResult != 'confirmed_return'
"
>
<
div
class
=
"
price_label
"
>
{{
$t
(
"
清关费
"
)
}}
:
<
/div
>
<
div
class
=
"
price_list
"
>
<
div
v
-
if
=
"
!row.clearanceFreightCurrency ||
!row.clearanceFreightVolume
"
>
/
<
/div
>
<
div
v
-
else
>
<
inputor
style
=
"
width: 100px
"
default2
=
"
0
"
...
...
@@ -1208,10 +1204,20 @@
{{
unitMap
[
row
.
clearanceFreightVolume
]
}}
<
/span
>
<
template
v
-
else
>
<
selector
style
=
"
width:100px
"
v
-
model
=
"
row.clearanceFreightCurrency
"
:
options
=
"
currencyList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
/>
/ <selector style="width:100px" v-model="row.clearanceFreightVolume" :options="unitList" :label-field="$l
(
'title'
)
" value-field="id" /
>
<
selector
style
=
"
width:100px
"
:
value
=
"
row.clearanceFreightCurrency || null
"
@
input
=
"
handleChangeUnit(row, 'clearanceFreightCurrency', $event)
"
:
options
=
"
currencyList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
/>
/ <selector style="width:100px
"
:
value
=
"
row.clearanceFreightVolume || null
"
@
input
=
"
handleChangeUnit(row, 'clearanceFreightVolume', $event)
"
:
options
=
"
unitList
"
:
label
-
field
=
"
$l('title')
"
value
-
field
=
"
id
"
/>
<
/template
>
<
/div
>
<
/div
>
<
/div
>
<
/div
>
...
...
@@ -3191,6 +3197,9 @@ export default {
}
);
}
}
,
handleChangeUnit
(
row
,
field
,
val
){
row
[
field
]
=
val
}
}
,
}
;
<
/script
>
...
...
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