Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-pda-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-pda-master
Commits
76d673f4
Commit
76d673f4
authored
Dec 07, 2024
by
xiaoyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修改理货/装柜关联单等取值
parent
9e56310b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
20 deletions
+13
-20
detail.vue
src/pages/loading/detail.vue
+4
-4
detail.vue
src/pages/tally/detail.vue
+4
-8
detail.vue
src/pages/tallyAir/detail.vue
+4
-8
config.js
src/util/config.js
+1
-0
No files found.
src/pages/loading/detail.vue
View file @
76d673f4
...
...
@@ -58,14 +58,14 @@
</view>
<!-- 包装类型 -->
<view
style=
"color:red;fontWeight:bold;"
>
<text
v-for=
"(
prod, index) in order.goodsList"
:key=
"prod.orderItemId
"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"
prod.unit"
/>
{{
index
!==
order
.
goodsList
.
length
-
1
?
'
,
'
:
''
}}
<text
v-for=
"(
unit, index) in order.units.split(',')"
:key=
"index
"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"
unit"
/>
{{
index
!==
order
.
units
.
split
(
'
,
'
)
.
length
-
1
?
'
,
'
:
''
}}
</text>
</view>
<!-- 关联单 -->
<view
v-if=
"order.
guanLianOrderStatusVOList&&order.guanLianOrderStatusVOList.length>0
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<view
v-if=
"order.
hasRelationOrder
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<!-- 混箱 -->
<view
v-if=
"order.
goodsList&&order.goodsList.length>0&&order.goodsList.some(v => v.mixStatus === 1)
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseLogs(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
<view
v-if=
"order.
mixStatus=== 1
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseLogs(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
</view>
<view
style=
"width:12%;"
>
{{
order
.
volume
|
toFixed
}}
</view>
<view
style=
"width:12%;"
>
{{
order
.
weight
|
toFixed
}}
</view>
...
...
src/pages/tally/detail.vue
View file @
76d673f4
...
...
@@ -45,18 +45,14 @@
</view>
<!-- 包装类型 -->
<view
style=
"color:red;fontWeight:bold;"
>
<text
v-for=
"(prod, index) in order.goodsList"
:key=
"prod.orderItemId"
>
<text
v-for=
"(unit, unitIdx) in prod.units.split(',')"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/>
{{
unitIdx
!==
prod
.
units
.
split
(
'
,
'
).
length
-
1
?
'
,
'
:
''
}}
</text>
{{
index
!==
order
.
goodsList
.
length
-
1
?
'
,
'
:
''
}}
<text
v-for=
"(unit, index) in order.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/>
{{
index
!==
order
.
units
.
split
(
'
,
'
).
length
-
1
?
'
,
'
:
''
}}
</text>
</view>
<!-- 关联单 -->
<view
v-if=
"order.
guanLianOrderStatusVOList&&order.guanLianOrderStatusVOList.length>0
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<view
v-if=
"order.
hasRelationOrder
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<!-- 混箱 -->
<view
v-if=
"order.
goodsList&&order.goodsList.length>0&&order.goodsList.some(v => v.mixStatus === 1)
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseList(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
<view
v-if=
"order.
mixStatus === 1
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseList(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
</view>
<view
style=
"width:15%;"
>
{{
order
.
volume
|
toFixed
}}
m³
</view>
<view
style=
"width:15%;"
>
{{
order
.
weight
|
toFixed
}}
kg
</view>
...
...
src/pages/tallyAir/detail.vue
View file @
76d673f4
...
...
@@ -57,18 +57,14 @@
</view>
<!-- 包装类型 -->
<view
style=
"color:red;fontWeight:bold;"
>
<text
v-for=
"(prod, index) in order.goodsList"
:key=
"prod.orderItemId"
>
<text
v-for=
"(unit, unitIdx) in prod.units.split(',')"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/>
{{
unitIdx
!==
prod
.
units
.
split
(
'
,
'
).
length
-
1
?
'
,
'
:
''
}}
</text>
{{
index
!==
order
.
goodsList
.
length
-
1
?
'
,
'
:
''
}}
<text
v-for=
"(unit, index) in order.units.split(',')"
:key=
"index"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PACKAGING_TYPE"
:value=
"unit"
/>
{{
index
!==
order
.
units
.
split
(
'
,
'
).
length
-
1
?
'
,
'
:
''
}}
</text>
</view>
<!-- 关联单 -->
<view
v-if=
"order.
guanLianOrderStatusVOList&&order.guanLianOrderStatusVOList.length>0
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<view
v-if=
"order.
hasRelationOrder
"
style=
"color:red;fontWeight:bold;"
@
tap=
"relatedClick(order.orderId)"
>
{{
$t
(
'
关联单
'
)
}}
</view>
<!-- 混箱 -->
<view
v-if=
"order.
goodsList&&order.goodsList.length>0&&order.goodsList.some(v => v.mixStatus === 1)
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseList(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
<view
v-if=
"order.
mixStatus === 1
"
style=
"color:red;fontWeight:bold;"
@
tap=
"showWarehouseList(order)"
>
{{
$t
(
'
混箱
'
)
}}
</view>
</view>
<view
style=
"width:15%;"
>
{{
order
.
volume
|
toFixed
}}
m³
</view>
<view
style=
"width:15%;"
>
{{
order
.
weight
|
toFixed
}}
kg
</view>
...
...
src/util/config.js
View file @
76d673f4
...
...
@@ -19,6 +19,7 @@ if (process.env.NODE_ENV === 'development') {
* 配置api基础路径
*/
let
apiBaseUrl
=
'
https://api2.groupage.cn/
'
// let apiBaseUrl = 'https://apitest.groupage.cn/'
// let apiBaseUrl = 'https://api.jd.qipx.top/'
//let apiBaseUrl = 'http://192.168.1.13:48080/'
let
localApiBaseUrl
=
uni
.
getStorageSync
(
"
localApiBaseUrl
"
)
...
...
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