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
b492a544
Commit
b492a544
authored
Apr 05, 2023
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
parents
fa60dc52
b8e78ffb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
detail.vue
src/views/ecw/order/detail.vue
+8
-8
No files found.
src/views/ecw/order/detail.vue
View file @
b492a544
...
@@ -51,8 +51,8 @@
...
@@ -51,8 +51,8 @@
</el-card>
</el-card>
<el-card
class=
"card"
>
<el-card
class=
"card"
>
<el-descriptions
border
:title=
"$t('物流信息')"
:column=
"2"
>
<el-descriptions
border
:title=
"$t('物流信息')"
:column=
"2"
>
<el-descriptions-item
:label=
"$t('始发仓')"
>
{{
order.logisticsInfoDto.startTitleZh
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('始发仓')"
>
{{
$l(order.logisticsInfoDto, 'startTitle')
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('目的仓')"
>
{{
order.logisticsInfoDto.destTitleZh
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('目的仓')"
>
{{
$l(order.logisticsInfoDto, 'destTitle')
}}
</el-descriptions-item>
<!-- <el-descriptions-item :label="$t('地址')" :span="2">{{order.logisticsInfoDto.startAddressZh}}</el-descriptions-item> -->
<!-- <el-descriptions-item :label="$t('地址')" :span="2">{{order.logisticsInfoDto.startAddressZh}}</el-descriptions-item> -->
<el-descriptions-item
:label=
"$t('运输方式')"
:span=
"2"
>
<el-descriptions-item
:label=
"$t('运输方式')"
:span=
"2"
>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"order.transportId"
/>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"order.transportId"
/>
...
@@ -210,7 +210,7 @@
...
@@ -210,7 +210,7 @@
<el-tab-pane
:label=
"$t('订单动态')"
name=
"second"
>
<el-tab-pane
:label=
"$t('订单动态')"
name=
"second"
>
<el-timeline
v-if=
"order.orderTimeVOList && order.orderTimeVOList.length"
:reverse=
"true"
>
<el-timeline
v-if=
"order.orderTimeVOList && order.orderTimeVOList.length"
:reverse=
"true"
>
<el-timeline-item
v-for=
"(activity, index) in order.orderTimeVOList"
:key=
"index"
:timestamp=
"activity.timestamp"
>
<el-timeline-item
v-for=
"(activity, index) in order.orderTimeVOList"
:key=
"index"
:timestamp=
"activity.timestamp"
>
{{
activity.titleZh
}}
{{
$l(activity, 'title')
}}
<div>
{{$l(activity, 'remarks')}}
</div>
<div>
{{$l(activity, 'remarks')}}
</div>
</el-timeline-item>
</el-timeline-item>
</el-timeline>
</el-timeline>
...
@@ -232,10 +232,10 @@
...
@@ -232,10 +232,10 @@
{{channelName}}
{{channelName}}
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('始发地')"
prop=
"orderNo"
>
<el-table-column
:label=
"$t('始发地')"
prop=
"orderNo"
>
{{
departure.titleZh
|| '-'}}
{{
$l(departure, 'title')
|| '-'}}
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('目的地')"
>
<el-table-column
:label=
"$t('目的地')"
>
{{
objective.titleZh
|| '-'}}
{{
$l(objective, 'title')
|| '-'}}
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('品名')"
prop=
"titleZh"
></el-table-column>
<el-table-column
:label=
"$t('品名')"
prop=
"titleZh"
></el-table-column>
<el-table-column
:label=
"$t('箱数')"
prop=
"num"
>
<el-table-column
:label=
"$t('箱数')"
prop=
"num"
>
...
@@ -404,14 +404,14 @@ export default {
...
@@ -404,14 +404,14 @@ export default {
currencyMap
(){
currencyMap
(){
let
map
=
{}
let
map
=
{}
this
.
currencyList
.
forEach
(
item
=>
{
this
.
currencyList
.
forEach
(
item
=>
{
map
[
item
.
id
]
=
item
.
titleZh
map
[
item
.
id
]
=
this
.
$l
(
item
,
'
title
'
)
})
})
return
map
return
map
},
},
unitMap
(){
unitMap
(){
let
map
=
{}
let
map
=
{}
this
.
unitList
.
forEach
(
item
=>
{
this
.
unitList
.
forEach
(
item
=>
{
map
[
item
.
id
]
=
item
.
titleZh
map
[
item
.
id
]
=
this
.
$l
(
item
,
'
title
'
)
})
})
return
map
return
map
},
},
...
@@ -443,7 +443,7 @@ export default {
...
@@ -443,7 +443,7 @@ export default {
console
.
log
(
'
listById
'
,
res
)
console
.
log
(
'
listById
'
,
res
)
let
region
=
''
let
region
=
''
res
.
data
.
forEach
(
item
=>
{
res
.
data
.
forEach
(
item
=>
{
region
+=
"
"
+
item
.
titleZh
region
+=
"
"
+
this
.
$l
(
item
,
'
title
'
)
})
})
this
.
region
=
region
this
.
region
=
region
})
})
...
...
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