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
05218724
Commit
05218724
authored
Aug 23, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合单出货渠道
parent
f24d1446
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
12 deletions
+20
-12
detail.vue
src/views/ecw/offer/detail.vue
+19
-11
singleApply.vue
src/views/ecw/order/singleApply.vue
+1
-1
No files found.
src/views/ecw/offer/detail.vue
View file @
05218724
...
@@ -331,12 +331,12 @@
...
@@ -331,12 +331,12 @@
</el-descriptions>
</el-descriptions>
<el-descriptions
v-if=
"[3,4].indexOf(list.transportId) > -1"
>
<el-descriptions
v-if=
"[3,4].indexOf(list.transportId) > -1"
>
<el-descriptions-item
:label=
"$t('航空公司')"
>
<el-descriptions-item
:label=
"$t('航空公司')"
>
{{
getSupplierData(list.transportVO.airlineCompany)
||'/'}}
{{
airCompanyName
||'/'}}
</el-descriptions-item>
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
<el-descriptions
v-if=
"list.transportId==2"
>
<el-descriptions
v-if=
"list.transportId==2"
>
<el-descriptions-item
:label=
"$t('船公司')"
>
<el-descriptions-item
:label=
"$t('船公司')"
>
{{
getSupplierData(list.transportVO.shippingCompany)
||'/'}}
{{
shipCompanyName
||'/'}}
</el-descriptions-item>
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
<el-descriptions
v-if=
"[2,3,4].indexOf(list.transportId) > -1"
>
<el-descriptions
v-if=
"[2,3,4].indexOf(list.transportId) > -1"
>
...
@@ -419,6 +419,8 @@
...
@@ -419,6 +419,8 @@
customerSource
:
getDictDatas
(
DICT_TYPE
.
CUSTOMER_SOURCE
),
customerSource
:
getDictDatas
(
DICT_TYPE
.
CUSTOMER_SOURCE
),
couponAvailableGroupDtoList
:
[],
// 可用优惠
couponAvailableGroupDtoList
:
[],
// 可用优惠
couponTotalAmountList
:
[],
// 优惠总额
couponTotalAmountList
:
[],
// 优惠总额
airCompanyName
:
''
,
shipCompanyName
:
''
};
};
},
},
computed
:{
computed
:{
...
@@ -611,16 +613,16 @@
...
@@ -611,16 +613,16 @@
that
.
orderData
=
response
.
data
;
that
.
orderData
=
response
.
data
;
});
});
},
},
getSupplierData
(
id
){
getSupplierData
(
id
,
type
){
var
labelname
=
''
getSupplier
(
id
).
then
(
res
=>
{
if
(
id
){
if
(
res
.
data
){
getSupplier
(
id
).
then
(
res
=>
{
if
(
type
==
1
){
if
(
res
.
data
){
this
.
airCompanyName
=
res
.
data
.
companyZh
labelname
=
res
.
data
.
companyZh
}
else
{
this
.
shipCompanyName
=
res
.
data
.
companyZh
}
}
})
}
}
})
return
labelname
},
},
getProductListWithDefaultValue
(){
getProductListWithDefaultValue
(){
let
arr
=
[]
let
arr
=
[]
...
@@ -673,6 +675,12 @@
...
@@ -673,6 +675,12 @@
if
(
that
.
list
.
channelId
){
if
(
that
.
list
.
channelId
){
that
.
getChannelData
()
that
.
getChannelData
()
}
}
if
(
that
.
list
.
transportVO
.
airlineCompany
){
that
.
getSupplierData
(
that
.
list
.
transportVO
.
airlineCompany
,
1
)
}
if
(
that
.
list
.
transportVO
.
shippingCompany
){
that
.
getSupplierData
(
that
.
list
.
transportVO
.
shippingCompany
,
2
)
}
that
.
calculationPrice
()
that
.
calculationPrice
()
// if(that.list.orderId){
// if(that.list.orderId){
// that.getOrderData(that.list.orderId)
// that.getOrderData(that.list.orderId)
...
...
src/views/ecw/order/singleApply.vue
View file @
05218724
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"orderData.transportId"
/>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"orderData.transportId"
/>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('出货渠道')"
>
<el-descriptions-item
:label=
"$t('出货渠道')"
>
{{
orderData
.
channel
Id
?
getChannelName
(
orderData
.
channelId
):
'
/
'
}}
{{
orderData
.
channel
Name
||
'
/
'
}}
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('始发地')"
>
<el-descriptions-item
:label=
"$t('始发地')"
>
{{
orderData
.
logisticsInfoDto
?
orderData
.
logisticsInfoDto
.
startTitleZh
:
$t
(
'
无
'
)
}}
{{
orderData
.
logisticsInfoDto
?
orderData
.
logisticsInfoDto
.
startTitleZh
:
$t
(
'
无
'
)
}}
...
...
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