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
bc045b2e
Commit
bc045b2e
authored
Apr 26, 2024
by
liuzeheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
筛选调整
parent
75aae5f6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
+17
-8
index.vue
src/views/ecw/order/index.vue
+17
-8
No files found.
src/views/ecw/order/index.vue
View file @
bc045b2e
...
...
@@ -41,7 +41,7 @@
<el-form-item
:label=
"$t('目的国')"
prop=
"destCountryId"
>
<el-select
v-model=
"destCountryId"
:label=
"destCountryId"
:placeholder=
"$t('请选择目的国')"
clearable
@
change=
"handleQuery"
>
<el-select
v-model=
"destCountryId"
multiple
:label=
"destCountryId"
:placeholder=
"$t('请选择目的国')"
clearable
@
change=
"handleQuery"
>
<el-option
v-for=
"item in AddressProvince"
:key=
"item.shi"
:label=
"item.guojiaName"
:value=
"item.guojia"
></el-option>
...
...
@@ -49,7 +49,7 @@
</el-form-item>
<el-form-item
:label=
"$t('目的城市')"
prop=
"objectiveId"
>
<el-select
v-model=
"objectiveId"
:placeholder=
"$t('请根据目的国选择目的城市')"
style=
"width: 200px"
clearable
@
change=
"handleQuery"
>
<el-select
v-model=
"objectiveId"
multiple
:placeholder=
"$t('请根据目的国选择目的城市')"
style=
"width: 200px"
clearable
@
change=
"handleQuery"
>
<el-option
v-for=
"item in AddressCity"
:key=
"item.shi"
:label=
"item.shiName"
:value=
"item.shi"
></el-option>
...
...
@@ -57,7 +57,7 @@
</el-form-item>
<el-form-item
:label=
"$t('目的仓')"
prop=
"destWarehouseId"
>
<el-select
v-model=
"destWarehouseId"
:placeholder=
"$t('请根据目的城市选择目的仓')"
style=
"width: 200px"
clearable
@
change=
"handleQuery"
>
<el-select
v-model=
"destWarehouseId"
multiple
:placeholder=
"$t('请根据目的城市选择目的仓')"
style=
"width: 200px"
clearable
@
change=
"handleQuery"
>
<el-option
v-for=
"item in AddressTown"
:key=
"item.id"
:label=
"item.titleZh"
:value=
"item.id"
></el-option>
...
...
@@ -68,7 +68,7 @@
<el-form-item
:label=
"$t('运输方式')"
prop=
"transportId"
v-if=
"!transportId"
>
<dict-selector
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
v-model.number=
"queryParams.transportId"
clearable
@
change=
"handleQuery"
/>
<dict-selector
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
multiple
v-model.number=
"queryParams.transportId"
clearable
@
change=
"handleQuery"
/>
</el-form-item>
<!-- <el-form-item :label="$t('商品分类')" prop="goodsType">
...
...
@@ -637,10 +637,10 @@ export default {
AddressCity
:
[],
AddressProvince
:
[],
AddressTown
:
[],
destCountryId
:
''
,
destCountryId
:
[]
,
countryId
:
''
,
//destCountryId:'',
objectiveId
:
''
,
objectiveId
:
[]
,
destWarehouseId
:
''
,
// 选中数组
...
...
@@ -804,11 +804,20 @@ export default {
queryParams
[
this
.
prodParam
.
key
]
=
this
.
prodParam
.
value
}
//目的国
if
(
this
.
destCountryId
!=
null
&&
this
.
destCountryId
!=
''
){
queryParams
.
destCountryId
=
this
.
destCountryId
}
if
(
this
.
objectiveId
!=
null
&&
this
.
objectiveId
!=
''
){
//目的城市
queryParams
.
objectiveId
=
this
.
objectiveId
}
if
(
this
.
destWarehouseId
!=
null
&&
this
.
destWarehouseId
!=
''
){
//目的仓
queryParams
.
destWarehouseId
=
this
.
destWarehouseId
}
return
queryParams
},
...
...
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