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
8f8a7027
Commit
8f8a7027
authored
May 16, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单详情优化
parent
ef3aa6a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
46 deletions
+42
-46
detail.vue
src/views/ecw/order/detail.vue
+42
-46
No files found.
src/views/ecw/order/detail.vue
View file @
8f8a7027
...
...
@@ -7,8 +7,7 @@
<
template
v-else-if=
"order.containerNumber"
>
-
{{
order
.
containerNumber
}}
</
template
>
</div>
<el-row
:gutter=
"24"
>
<el-col
:span=
"12"
v-if=
"order.consignorVO"
style=
"position: relative;"
>
<span
style=
"color:#409EFF;position: absolute;left:160px;top:0;font-size:16px"
@
click=
"consigneeChange"
>
{{consigneeText}}
</span>
<el-col
:span=
"12"
v-if=
"order.consignorVO"
>
<el-descriptions
class=
"margin-top"
border
:title=
"$t('发货人')"
:column=
"3"
:labelStyle=
"{width:'110px'}"
:contentStyle=
"{width:'150px'}"
>
<el-descriptions-item
:label=
"$t('中文名称')"
>
{{order.consignorVO.name}}
</el-descriptions-item>
<!-- v1.7新增 -->
...
...
@@ -32,7 +31,8 @@
</el-descriptions-item>
</el-descriptions>
</el-col>
<el-col
:span=
"12"
v-if=
"order.consigneeVO"
>
<el-col
:span=
"12"
v-if=
"order.consigneeVO"
style=
"position: relative;"
>
<span
style=
"color:#409EFF;position: absolute;right:40px;top:0;font-size:16px;cursor: pointer;"
@
click=
"consigneeChange"
>
{{consigneeText}}
</span>
<el-descriptions
class=
"margin-top"
border
:title=
"$t('收货人')"
:column=
"3"
:labelStyle=
"{width:'110px'}"
:contentStyle=
"{width:'150px'}"
>
<el-descriptions-item
:label=
"$t('中文名称')"
>
{{order.consigneeVO.name}}
</el-descriptions-item>
<!-- v1.7新增 -->
...
...
@@ -64,7 +64,7 @@
</el-row>
</el-card>
<el-card
class=
"card"
>
<el-descriptions
border
:title=
"$t('物流信息')"
:column=
"4"
>
<el-descriptions
border
:title=
"$t('物流信息')"
:column=
"4"
:labelStyle=
"{width:'110px'}"
:contentStyle=
"{width:'150px'}"
>
<el-descriptions-item
:label=
"$t('始发仓')"
>
{{$l(order.logisticsInfoDto, 'startTitle')}}
</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> -->
...
...
@@ -76,7 +76,7 @@
</el-card>
<el-card
class=
"card"
>
<el-descriptions
class=
"mr-10"
border
:title=
"$t('基础信息')"
:column=
"2"
>
<el-descriptions
class=
"mr-10"
border
:title=
"$t('基础信息')"
:column=
"2"
:labelStyle=
"{width:'110px'}"
:contentStyle=
"{width:'150px'}"
>
<el-descriptions-item
:label=
"$t('唛头')"
>
{{order.marks}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('送货时间')"
v-if=
"!order.isExternalWarehouse"
>
{{order.deliveryDate}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('是否控货')"
>
...
...
@@ -107,9 +107,7 @@
<dict-tag
:type=
"DICT_TYPE.ECW_CUSTOMS_TYPE"
:value=
"order.customsType"
/>
</el-descriptions-item>
</el-descriptions>
<el-collapse
v-model=
"activeNames"
@
change=
"handleChange"
>
<el-collapse-item
:title=
"showText"
name=
"1"
>
<el-descriptions
class=
"mr-10"
border
:column=
"2"
>
<el-descriptions
class=
"mr-10"
border
:column=
"2"
:class=
"showMore?'showInfo':'hiddenInfo'"
:labelStyle=
"{width:'110px'}"
:contentStyle=
"{width:'150px'}"
>
<el-descriptions-item
:label=
"$t('出单方式')"
>
<dict-tag
:type=
"DICT_TYPE.ECW_SUING_METHOD"
:value=
"order.issuingMethod"
/>
</el-descriptions-item>
...
...
@@ -145,8 +143,6 @@
{{order.createTime|parseTime}}
</el-descriptions-item>
</el-descriptions>
</el-collapse-item>
</el-collapse>
</el-card>
<el-card
class=
"card"
>
...
...
@@ -467,7 +463,7 @@ export default {
activeNames
:
[],
//显示隐藏订单基本信息
showText
:
this
.
$t
(
'
显示更多
'
),
showMore
:
false
,
consigneeText
:
this
.
$t
(
'
展示
'
),
consigneeText
:
this
.
$t
(
'
更多
'
),
}
}
,
computed
:{
...
...
@@ -552,7 +548,7 @@ export default {
//订单信息显示更多
consigneeChange
(){
this
.
showMore
=
!
this
.
showMore
;
this
.
consigneeText
=
this
.
showMore
?
this
.
$t
(
'
隐藏
'
)
:
this
.
$t
(
'
展示
'
)
this
.
consigneeText
=
this
.
showMore
?
this
.
$t
(
'
隐藏
'
)
:
this
.
$t
(
'
更多
'
)
}
,
// 显示费用详情
showFeeDetail
(
row
,
type
){
...
...
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