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
651db80c
Commit
651db80c
authored
Oct 22, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复几个bug
parent
66183b78
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
9 deletions
+19
-9
prepayDeal.vue
src/views/ecw/order/prepayDeal.vue
+11
-3
index.vue
src/views/ecw/order/special/index.vue
+3
-3
index.vue
src/views/ecw/product/index.vue
+5
-3
No files found.
src/views/ecw/order/prepayDeal.vue
View file @
651db80c
...
...
@@ -32,14 +32,19 @@
<!-- 单证异常,发货人异常,其他异常 不显示这部分内容 -->
<div
v-if=
"['order_doc_exception','order_consignor_exception', 'order_other_exception'].indexOf(orderExceptionData.orderExceptionType) == -1"
>
<!-- 预付异常,提货异常是针对整个订单的 -->
<template
v-if=
"['order_pay_exception','order_pick_up_exception'].indexOf(orderExceptionData.orderExceptionType) > -1"
>
<!-- 预付异常,提货异常
,代收货款
是针对整个订单的 -->
<template
v-if=
"['order_pay_exception','order_pick_up_exception'
, 'order_cod_exception'
].indexOf(orderExceptionData.orderExceptionType) > -1"
>
<el-row>
<el-form-item
:label=
"$t('填单参数')+':'"
>
<template
v-if=
"orderData && orderData.costVO"
>
{{
(
orderData
.
costVO
.
totalNum
||
0
)
+
$t
(
'
箱
'
)
+
(
orderData
.
costVO
.
totalVolume
||
0
)
+
'
m³
'
+
(
orderData
.
costVO
.
totalWeight
||
0
)
+
'
kg
'
+
(
orderData
.
costVO
.
totalQuantity
||
0
)
+
$t
(
'
个
'
)
}}
</
template
>
</el-form-item>
<el-form-item
:label=
"$t('代收金额')+':'"
>
<
template
v-if=
"orderData && orderData.costVO"
>
{{
orderExceptionData
.
orderExceptionAmount
}}
{{
currencyMap
[
orderExceptionData
.
orderExceptionCurrencyId
]
}}
</
template
>
</el-form-item>
</el-row>
<el-row>
<el-form-item
:label=
"$t('入仓参数')+':'"
>
...
...
@@ -129,7 +134,10 @@
<
el
-
table
-
column
:
label
=
"
$t('付款人')
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
span
>
{{
scope
.
row
.
consigneeName
}}
({{
$t
(
'
收货人
'
)
}}
)
<
/span
>
<
span
>
// TODO
<!--
<
dict
-
tag
:
type
=
"
DICT_TYPE.DRAWEE
"
:
value
=
"
order.drawee
"
><
/dict-tag> --
>
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('付款状态')
"
prop
=
"
worth
"
>
...
...
src/views/ecw/order/special/index.vue
View file @
651db80c
...
...
@@ -93,9 +93,9 @@
prop=
"address"
:label=
"$t('操作')"
>
<
template
v-slot=
"{row}"
>
<el-button
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showDiscountItem=row"
>
{{
$t
(
'
优惠申请
'
)
}}
</el-button>
<el-button
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showCommissionItem=row"
>
{{
$t
(
'
佣金规则
'
)
}}
</el-button>
<el-button
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showAllowanceItem=row"
>
{{
$t
(
'
管理折扣
'
)
}}
</el-button>
<el-button
v-if=
"row.originalSeaFreight"
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showDiscountItem=row"
>
{{
$t
(
'
优惠申请
'
)
}}
</el-button>
<el-button
v-if=
"row.originalSeaFreight"
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showCommissionItem=row"
>
{{
$t
(
'
佣金规则
'
)
}}
</el-button>
<el-button
v-if=
"row.originalSeaFreight"
size=
"mini"
type=
"text"
v-hasPermi=
"['ecw:order:update']"
@
click=
"showAllowanceItem=row"
>
{{
$t
(
'
管理折扣
'
)
}}
</el-button>
</
template
>
</el-table-column>
...
...
src/views/ecw/product/index.vue
View file @
651db80c
...
...
@@ -439,15 +439,17 @@ export default {
this
.
reset
();
const
id
=
row
.
id
;
getProduct
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
=
{...
response
.
data
}
;
let
attrArray
=
this
.
form
.
attrId
.
split
(
'
,
'
);
for
(
let
index
in
attrArray
)
{
let
value
=
attrArray
[
index
];
attrArray
[
index
]
=
parseInt
(
value
);
}
this
.
form
.
attrArray
=
attrArray
;
this
.
$nextTick
(()
=>
{
this
.
form
.
attrArray
=
attrArray
})
this
.
open
=
true
;
this
.
title
=
this
.
$t
(
"
修改商品
"
);
this
.
title
=
this
.
$t
(
"
修改商品
1
"
);
});
},
...
...
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