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
350b6e31
Commit
350b6e31
authored
Mar 01, 2025
by
knight
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求110 后台-订单列表-订单详情修改
parent
651e5599
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
consPackage.vue
src/views/ecw/order/components/consPackage.vue
+27
-0
detail.vue
src/views/ecw/order/detail.vue
+5
-1
No files found.
src/views/ecw/order/components/consPackage.vue
0 → 100644
View file @
350b6e31
<
template
>
<el-table
:data=
"list"
border
style=
"width: 100%"
>
<el-table-column
:label=
"$t('包裹ID')"
align=
"center"
prop=
"expressNo"
></el-table-column>
<el-table-column
:label=
"$t('快递单号')"
align=
"center"
prop=
"expressNo"
></el-table-column>
<el-table-column
:label=
"$t('签收时间')"
align=
"center"
prop=
"expressNo"
></el-table-column>
<el-table-column
:label=
"$t('签收图片')"
align=
"center"
prop=
"expressNo"
></el-table-column>
<el-table-column
:label=
"$t('验货服务')"
align=
"center"
prop=
"expressNo"
></el-table-column>
<el-table-column
:label=
"$t('验货信息')"
align=
"center"
prop=
"expressNo"
></el-table-column>
</el-table>
</
template
>
<
script
>
export
default
{
name
:
'
ConsPackage
'
,
props
:
[
'
orderId
'
],
data
(){
return
{
'
list
'
:
null
,
}
},
}
</
script
>
src/views/ecw/order/detail.vue
View file @
350b6e31
...
...
@@ -297,6 +297,9 @@
<el-tab-pane
:label=
"$t('到仓详情')"
name=
"seven"
>
<check-detail-prod
:list=
"warehouseCheckInfoData"
:attr-list=
"attrList"
:prod-type-list=
"prodTypeList"
:currency-map=
"currencyMap"
:unit-map=
"unitMap"
:transport-id=
"order.transportId"
:unload-time=
"order.unloadTime | parseTime"
></check-detail-prod>
</el-tab-pane>
<el-tab-pane
:label=
"$t('集运包裹')"
v-if=
"order.type.includes('1')"
name=
"consPackage"
>
<cons-package
ref=
"consPackage"
:order-id=
"order.orderId"
></cons-package>
</el-tab-pane>
<!-- 这个地方v-hasPermi不生效,所以换checkPermi函数检查 -->
<el-tab-pane
:label=
"$t('操作日志')"
name=
"five"
v-if=
"checkPermi(['ecw:order:logs'])"
>
<el-table
:data=
"logs"
v-loading=
"logsLoading"
>
...
...
@@ -394,10 +397,12 @@ import Decimal from "decimal.js"
import
DetailProd
from
"
@/views/ecw/order/components/DetailProd.vue
"
import
CheckDetailProd
from
"
@/views/ecw/order/components/CheckDetailProd.vue
"
import
{
getProductTypeList
}
from
"
@/api/ecw/productType
"
import
ConsPackage
from
'
@/views/ecw/order/components/consPackage.vue
'
export
default
{
name
:
"
detail
"
,
components
:
{
ConsPackage
,
DetailProd
,
CheckDetailProd
,
ImageDisplay
,
...
...
@@ -561,7 +566,6 @@ export default {
handleChange
(
val
)
{
this
.
showText
=
val
.
length
>
0
?
this
.
$t
(
"
隐藏
"
)
:
this
.
$t
(
"
显示更多
"
)
}
,
getAirCompany
()
{
getSupplier
(
this
.
order
.
airlineCompany
).
then
((
res
)
=>
{
this
.
$set
(
this
.
order
,
"
companyName
"
,
this
.
$l
(
res
.
data
,
"
company
"
))
...
...
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