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
684d0dba
Commit
684d0dba
authored
Nov 07, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
超限异常优化
parent
78c911d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
overweightException.vue
...ws/ecw/order/exception/components/overweightException.vue
+3
-3
prepayDeal.vue
src/views/ecw/order/prepayDeal.vue
+8
-5
No files found.
src/views/ecw/order/exception/components/overweightException.vue
View file @
684d0dba
...
...
@@ -16,7 +16,7 @@
<el-descriptions-item
:label=
"$t('目的仓')"
:span=
"2"
>
{{
order
.
logisticsInfoDto
.
destAddressZh
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('异常描述')"
:span=
"2"
>
<el-descriptions-item
:label=
"$t('异常描述')
+':'
"
:span=
"2"
>
{{
$l
(
orderExceptionData
.
orderExceptionDescVO
,
'
desc
'
)
}}
</el-descriptions-item>
</el-descriptions>
...
...
@@ -99,8 +99,8 @@
<!--
</div>
-->
<el-descriptions
:column=
"3"
v-if=
"order"
:colon=
"false"
>
<el-descriptions-item
:label=
"$t('备注')"
:span=
"2"
>
{{
$l
(
orderExceptionData
.
orderExceptionRemark
,
'
desc
'
)
}}
<el-descriptions-item
:label=
"$t('备注')
+':'
"
:span=
"2"
>
{{
orderExceptionData
.
orderExceptionNotes
||
'
/
'
}}
</el-descriptions-item>
</el-descriptions>
</div>
...
...
src/views/ecw/order/prepayDeal.vue
View file @
684d0dba
...
...
@@ -1278,10 +1278,10 @@
console
.
log
(
this
.
orderExceptionData
.
orderExceptionStatus
)
console
.
log
(
this
.
orderExceptionData
.
orderExceptionStatus
==
'
0
'
)
if
([
'
overweight_exception
'
,
'
channel_packaging_overweight_exception
'
].
indexOf
(
this
.
orderExceptionData
.
orderExceptionType
)
>-
1
){
if
(
this
.
orderExceptionData
.
orderExceptionStatus
==
'
0
'
){
this
.
getExceptionPriceList
(
'
line_loop_exception
'
,
1
)
}
else
{
if
(
this
.
orderExceptionData
.
orderExceptionStatus
!=
'
0
'
&&
this
.
handlerParams
.
orderExceptionHandlerResult
==
'
allow_over
'
){
this
.
getExceptionPriceList
(
'
continue_channel
'
,
2
)
}
else
{
this
.
getExceptionPriceList
(
'
line_loop_exception
'
,
1
)
}
}
}
);
...
...
@@ -1307,8 +1307,11 @@
if
(
this
.
handlerParams
.
productId
){
this
.
productId2
=
this
.
productId1
=
this
.
handlerParams
.
productId
}
if
(
this
.
orderExceptionData
.
orderExceptionType
==
'
overweight_exception
'
&&
this
.
orderExceptionData
.
additionalJson
&&
this
.
orderExceptionData
.
additionalJson
.
productAirWeightLimit
){
this
.
$set
(
this
.
handlerParams
,
'
weightLimit
'
,
this
.
orderExceptionData
.
additionalJson
.
productAirWeightLimit
)
if
(
this
.
orderExceptionData
.
orderExceptionType
==
'
overweight_exception
'
&&
this
.
orderExceptionData
.
additionalJson
&&
this
.
orderExceptionData
.
additionalJson
.
weightSum
){
this
.
$set
(
this
.
handlerParams
,
'
weightLimit
'
,
this
.
orderExceptionData
.
additionalJson
.
weightSum
)
}
if
(
this
.
orderExceptionData
.
orderExceptionType
==
'
channel_packaging_overweight_exception
'
&&
this
.
orderExceptionData
.
additionalJson
&&
this
.
orderExceptionData
.
additionalJson
.
packagingWeightSum
){
this
.
$set
(
this
.
handlerParams
,
'
weightLimit
'
,
this
.
orderExceptionData
.
additionalJson
.
packagingWeightSum
)
}
}
)
...
...
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