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
5210bced
Commit
5210bced
authored
Jan 04, 2024
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
搜索调整
parent
3ac53420
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
airFreightRouteTemplate.vue
src/views/ecw/offer/components/airFreightRouteTemplate.vue
+8
-6
No files found.
src/views/ecw/offer/components/airFreightRouteTemplate.vue
View file @
5210bced
...
...
@@ -20,7 +20,9 @@ export default {
form
:
{},
queryParams
:
{
pageSize
:
20
,
transportType
:
3
transportType
:
3
,
startWarehouseIdList
:[],
destWarehouseIdList
:
[]
}
}
},
...
...
@@ -74,13 +76,13 @@ export default {
<template
#header
>
<el-form
inline
>
<el-form-item
label=
"始发地"
>
<el-select
v-model=
"
form.startWarehouseId"
:placeholder=
"$t('请选择始发地')"
>
<el-option
v-for=
"item in exportWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
<el-select
v-model=
"
queryParams.startWarehouseIdList"
@
change=
"getList()"
multiple
:placeholder=
"$t('请选择始发地')"
>
<el-option
v-for=
"item in exportWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('目的地')"
prop=
"destWarehouseId"
>
<el-select
v-model=
"form.destWarehouseId"
:placeholder=
"$t('请选择目的地')"
>
<el-select
@
change=
"getList()"
v-model=
"queryParams.destWarehouseIdList"
multiple
:placeholder=
"$t('请选择目的地')"
>
<el-option
v-for=
"item in importWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
</el-select>
...
...
@@ -90,12 +92,12 @@ export default {
<el-table
border
:data=
"list"
>
<el-table-column
label=
"始发仓"
>
<
template
slot-scope=
"{row}"
>
{{
$l
(
exportWarehouseList
.
find
(
i
=>
i
.
id
===
row
.
startWarehouseId
),
'
t
itle
'
)
}}
{{
$l
(
row
,
'
startWarehouseT
itle
'
)
}}
</
template
>
</el-table-column>
<el-table-column
label=
"目的仓"
>
<
template
slot-scope=
"{row}"
>
{{
$l
(
importWarehouseList
.
find
(
i
=>
i
.
id
===
row
.
destWarehouseId
),
'
t
itle
'
)
}}
{{
$l
(
row
,
'
destWarehouseT
itle
'
)
}}
</
template
>
</el-table-column>
<el-table-column
label=
"渠道数"
>
...
...
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