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
d05971d9
Commit
d05971d9
authored
Jan 20, 2024
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加国家
parent
9d89036c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
all-routes-list.vue
src/views/ecw/offer/all-routes-list.vue
+18
-1
channel-route.vue
src/views/ecw/offer/channel-route.vue
+1
-0
No files found.
src/views/ecw/offer/all-routes-list.vue
View file @
d05971d9
...
...
@@ -16,7 +16,7 @@
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('目的仓')"
prop=
"destWarehouseIdArr"
>
<el-select
multiple
v-model=
"queryParams.destWarehouseIdList"
multiple
<el-select
multiple
v-model=
"queryParams.destWarehouseIdList"
multiple
:placeholder=
"$t('请选择目的仓')"
clearable
>
<el-option
v-for=
"item in importWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
...
...
@@ -28,6 +28,12 @@
:key=
"item.channelId"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label-width=
"200"
label=
"目的仓国家"
>
<el-select
style=
"width: 100%"
filterable
clearable
v-model=
"queryParams.destCountryId"
:placeholder=
"$t('请选择国家')"
>
<el-option
v-for=
"dict in countryList"
:key=
"dict.id"
:label=
"$l(dict,'title')"
:value=
"parseInt(dict.id)"
/>
</el-select>
</el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{
$t
(
'
搜索
'
)
}}
</el-button>
</el-form-item>
</el-form>
...
...
@@ -49,6 +55,11 @@
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"row.transportType"
></dict-tag>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('目的仓国家')"
align=
"center"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
channelIds
?
$l
(
row
,
'
destCountryName
'
)
:
'
/
'
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('出货渠道')"
align=
"center"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
channelIds
?
$l
(
row
,
'
channelNames
'
)
:
'
/
'
}}
...
...
@@ -61,6 +72,7 @@
query:{
startWarehouseTitle:$l(row,'startWarehouseTitle'),
destWarehouseTitle: $l(row, 'destWarehouseTitle'),
destCountryName:$l(row,'destCountryName')
}
})">空运渠道包装清关费
</el-button>
...
...
@@ -92,12 +104,14 @@ import {listServiceUser} from "@/api/system/user";
import
{
getWarehouseList
}
from
'
@/api/ecw/warehouse
'
import
{
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
{
warehouseLinePage
}
from
"
@/api/ecw/customerContacts
"
;
import
{
getTradeCountryList
}
from
"
@/api/ecw/region
"
;
export
default
{
name
:
"
EcwOfferAll-routes-list
"
,
components
:
{},
data
()
{
return
{
countryList
:[],
// 遮罩层
loading
:
true
,
// 总条数
...
...
@@ -135,6 +149,9 @@ export default {
this
.
getList
();
},
created
()
{
getTradeCountryList
().
then
(
r
=>
{
this
.
countryList
=
r
.
data
})
this
.
getChannelList
();
this
.
getList
();
listServiceUser
().
then
(
r
=>
{
...
...
src/views/ecw/offer/channel-route.vue
View file @
d05971d9
...
...
@@ -244,6 +244,7 @@ export default {
<
template
>
<div
style=
"padding: 20px"
>
<div
style=
"margin-bottom: 15px"
>
<span>
目的国:
{{
$route
.
query
.
destCountryName
}}
</span>
<span>
路线:
{{
$route
.
query
.
startWarehouseTitle
}}
到
{{
$route
.
query
.
destWarehouseTitle
}}
</span>
<span
style=
"margin-left: 30px;"
>
运输方式:空运专线
</span>
</div>
...
...
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