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
e8f7eace
Commit
e8f7eace
authored
Aug 29, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加
最小保价费金额 回显
parent
3a86cc5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
index.vue
src/views/ecw/warehouse/index.vue
+21
-3
No files found.
src/views/ecw/warehouse/index.vue
View file @
e8f7eace
...
...
@@ -320,7 +320,7 @@
</el-radio-group>
</el-form-item>
<el-form-item
:label=
"$t('保费币种')"
>
<el-select
v-model=
"lineform.currencyUnit"
>
<el-select
@
change=
"modifyAmountUnit"
v-model=
"lineform.currencyUnit"
>
<el-option
v-for=
"(item) in currencyList"
:disabled=
"item.status === 1"
:label=
"$l(item, 'title')"
:value=
"item.id"
></el-option>
</el-select>
</el-form-item>
...
...
@@ -694,6 +694,14 @@ export default {
this
.
getContinentsList
();
},
methods
:
{
modifyAmountUnit
(
val
){
console
.
log
(
val
,
'
val
'
)
if
(
val
===
6
){
this
.
lineform
.
minPrice
=
900
}
else
{
this
.
lineform
.
minPrice
=
2
}
},
changeOtherService
(
val
){
if
(
val
===
'
2
'
&&
!
(
Array
.
isArray
(
this
.
lineform
.
otherService
)
?
this
.
lineform
.
otherService
:[]).
includes
(
'
10
'
)){
this
.
lineform
.
otherService
.
push
(
'
10
'
);
...
...
@@ -877,8 +885,18 @@ export default {
this
.
lineform
.
lineId
=
row
.
lineId
;
this
.
lineform
.
transportType
=
row
.
transportType
;
this
.
lineform
.
currencyUnit
=
row
.
currencyUnit
?
row
.
currencyUnit
:
1
this
.
lineform
.
controlStatus
=
row
.
controlStatus
?
row
.
controlStatus
:
0
this
.
lineform
.
minPrice
=
row
.
minPrice
?
row
.
minPrice
:
0
this
.
lineform
.
controlStatus
=
row
.
controlStatus
?
row
.
controlStatus
:
0
if
(
row
.
minPrice
){
this
.
lineform
.
minPrice
=
row
.
minPrice
;
}
else
{
if
(
this
.
lineform
.
currencyUnit
===
6
){
this
.
lineform
.
minPrice
=
900
}
else
{
this
.
lineform
.
minPrice
=
2
}
}
console
.
log
(
row
,
'
row
'
)
},
...
...
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