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
17db2b38
Commit
17db2b38
authored
Sep 25, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善审核
parent
3c4db856
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
185 additions
and
115 deletions
+185
-115
index.js
src/i18n/index.js
+2
-1
Navbar.vue
src/layout/components/Navbar.vue
+5
-3
user.js
src/store/modules/user.js
+2
-2
dict.js
src/utils/dict.js
+2
-1
detail.vue
src/views/bpm/processInstance/detail.vue
+14
-2
Commossion.vue
src/views/ecw/offer/components/Commossion.vue
+17
-13
SpecialDetail.vue
src/views/ecw/offer/components/SpecialDetail.vue
+109
-74
SpecialDiscount.vue
src/views/ecw/offer/components/SpecialDiscount.vue
+6
-6
index.vue
src/views/ecw/offer/index.vue
+1
-1
cargoControl.vue
src/views/ecw/order/cargoControl.vue
+2
-2
CargoControlEdit.vue
src/views/ecw/order/components/CargoControlEdit.vue
+2
-2
Release.vue
src/views/ecw/order/components/Release.vue
+20
-8
edit.vue
src/views/ecw/order/edit.vue
+3
-0
No files found.
src/i18n/index.js
View file @
17db2b38
...
...
@@ -11,6 +11,7 @@ const i18n = new VueI18n({
'
zh_CN
'
:
require
(
'
./languages/zh_CN.json
'
)
}
})
window
.
i18n
=
i18n
console
.
log
({
i18n
})
/*
用法
...
...
@@ -19,7 +20,7 @@ $l(item, 'title') => item.titleZh
$l(null, 'title') => titleZh
$l() => Zh
*/
Vue
.
prototype
.
$l
=
(
object
,
field
=
''
)
=>
{
Vue
.
prototype
.
$l
=
i18n
.
l
=
(
object
,
field
=
''
)
=>
{
let
prefix
=
i18n
.
locale
.
split
(
'
_
'
)[
0
]
let
append
=
prefix
.
charAt
(
0
).
toUpperCase
()
+
prefix
.
toLowerCase
().
substr
(
1
)
if
(
typeof
object
==
'
string
'
){
...
...
src/layout/components/Navbar.vue
View file @
17db2b38
...
...
@@ -10,7 +10,7 @@
<el-badge
:value=
"matterNum !== 0 ? matterNum : '' "
class=
"right-menu-item badge"
>
<div
@
click=
"$router.push('/task/todo')"
style=
"font-size: 28px; color: #cccccc;cursor: pointer;"
class=
"el-icon-postcard"
></div>
</el-badge>
<el-badge
:value=
"notMessage !== 0 ? notMessage : '' "
class=
"right-menu-item badge"
>
<el-image
style=
"width: 22px;height: 20px;cursor: pointer;"
:src=
"unreadMessage"
@
click=
"notRead"
></el-image>
</el-badge>
...
...
@@ -40,8 +40,10 @@
<dict-selector
:type=
"DICT_TYPE.SYSTEM_LOCALE"
v-model=
"lang"
defaultable
class=
"right-menu-item select-nav"
/>
<el-dropdown
class=
"avatar-container right-menu-item hover-effect"
trigger=
"click"
>
<div
class=
"avatar-wrapper"
>
<img
:src=
"avatar"
class=
"user-avatar"
>
<div
class=
"avatar-wrapper flex-center"
>
{{$store.getters.name}}
<img
:src=
"avatar"
class=
"user-avatar ml-10"
>
<i
class=
"el-icon-caret-bottom"
/>
</div>
<el-dropdown-menu
slot=
"dropdown"
>
...
...
src/store/modules/user.js
View file @
17db2b38
...
...
@@ -109,7 +109,7 @@ const user = {
user
:
{
id
:
''
,
avatar
:
''
,
userN
ame
:
''
nickn
ame
:
''
}
}
}
...
...
@@ -125,7 +125,7 @@ const user = {
commit
(
'
SET_ROLES
'
,
[
'
ROLE_DEFAULT
'
])
}
commit
(
'
SET_ID
'
,
user
.
id
)
commit
(
'
SET_NAME
'
,
user
.
userN
ame
)
commit
(
'
SET_NAME
'
,
user
.
nickn
ame
)
commit
(
'
SET_AVATAR
'
,
avatar
)
resolve
(
res
)
}).
catch
(
error
=>
{
...
...
src/utils/dict.js
View file @
17db2b38
...
...
@@ -4,6 +4,7 @@
* 数据字典工具类
*/
import
store
from
'
@/store
'
import
i18n
from
'
@/i18n
'
export
const
DICT_TYPE
=
{
USER_TYPE
:
'
user_type
'
,
...
...
@@ -256,7 +257,7 @@ export function getDictData(dictType, value) {
export
function
getDictDataLabel
(
dictType
,
value
)
{
const
dict
=
getDictData
(
dictType
,
value
);
return
dict
?
dict
.
label
:
''
;
return
dict
?
i18n
.
l
(
dict
,
'
label
'
)
:
''
;
}
export
class
getDictDataL
{
...
...
src/views/bpm/processInstance/detail.vue
View file @
17db2b38
...
...
@@ -158,10 +158,22 @@ export default {
return
false
}
const
map
=
{
// 报价单特价审核,原来配置的组件名
"
special-discount
"
:
{
component
:
'
special-d
etail
'
,
component
:
'
SpecialD
etail
'
,
id
:
this
.
processInstance
.
businessKey
,
readonly
:
true
type
:
1
},
// 报价单特价审核,符合命名规则的组件名
offer_special
:
{
component
:
'
SpecialDetail
'
,
id
:
this
.
processInstance
.
businessKey
,
type
:
1
},
offer_commission
:
{
component
:
'
SpecialDetail
'
,
id
:
this
.
processInstance
.
businessKey
,
type
:
2
},
free_apply
:
{
component
:
"
warehouseDetails
"
,
...
...
src/views/ecw/offer/components/Commossion.vue
View file @
17db2b38
<
template
>
<el-dialog
visible
:close-on-click-modal=
"false"
:before-close=
"closeDialog"
:title=
"$t('佣金规则申请')"
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"80px"
:rules=
"rules"
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"80px"
:rules=
"rules"
:disabled=
"!!form.applyStatus"
>
<el-form-item
:label=
"$t('商品类型')"
>
<span>
{{
getProduct
Attr
NameById
(
form
.
productType
)
}}
</span>
<span>
{{
getProduct
Type
NameById
(
form
.
productType
)
}}
</span>
</el-form-item>
<el-form-item
:label=
"$t('商品名称')"
>
<span>
{{
form
.
prodTitleZh
}}
</span>
...
...
@@ -66,9 +66,10 @@
<
div
v
-
if
=
"
form.commissionType == 1 || form.commissionType == 3
"
>
销售价:
{{
form
.
orgSeaFreight
+
form
.
shadeCommissionAmount
+
form
.
lightCommissionAmount
}}
{{
currentMap
[
form
.
orgSeaFreightCurrency
]
}}
/
{{
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
div
v
-
if
=
"
form.commissionType == 3
"
>
实际佣金返点:
{{
form
.
shadeCommissionAmount
+
form
.
lightCommissionAmount
}}
{{
currentMap
[
form
.
orgSeaFreightCurrency
]
}}
/
{{
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
/div
>
<
div
class
=
"
page-title
"
>
审批流程
<
/div
>
<
work
-
flow
xmlkey
=
"
sheet_sale
"
v
-
model
=
"
ccIdArr
"
/>
<
/el-form
>
<
div
class
=
"
page-title
"
>
审批流程
<
/div
>
<
work
-
flow
xmlkey
=
"
sheet_sale
"
v
-
model
=
"
ccIdArr
"
/>
<
div
v
-
if
=
"
!form.applyStatus
"
>
<
el
-
button
type
=
"
primary
"
@
click
=
"
handleSubmit
"
>
提交
<
/el-button
>
...
...
@@ -88,7 +89,7 @@ import DictSelector from "@/components/DictSelector"
import
{
getUnitList
}
from
"
@/api/ecw/unit
"
import
{
getChannelList
}
from
"
@/api/ecw/channel
"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProduct
AttrList
}
from
'
@/api/ecw/productAttr
'
import
{
getProduct
TypeList
}
from
'
@/api/ecw/productType
'
import
WorkFlow
from
'
@/components/WorkFlow
'
import
{
getDarkReturnCommission
}
from
'
@/api/ecw/customerCommission
'
export
default
{
...
...
@@ -109,7 +110,7 @@ export default {
getUnitList
().
then
(
res
=>
this
.
unitList
=
res
.
data
)
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
getCurrencyList
().
then
(
res
=>
this
.
currencyList
=
res
.
data
)
getProduct
AttrList
().
then
(
res
=>
this
.
productAttr
List
=
res
.
data
)
getProduct
TypeList
().
then
(
res
=>
this
.
productType
List
=
res
.
data
)
}
,
data
()
{
...
...
@@ -119,7 +120,7 @@ export default {
unitList
:[],
channelList
:[],
currencyList
:[],
product
Attr
List
:[],
product
Type
List
:[],
ccIdArr
:
[],
form
:
{
type
:
2
...
...
@@ -157,9 +158,12 @@ export default {
ccIdArr
(){
this
.
$set
(
this
.
form
,
'
ccIds
'
,
this
.
ccIdArr
.
join
(
'
,
'
))
}
,
'
form.commissionType
'
(
val
){
this
.
$set
(
this
.
form
,
'
lightCommissionAmount
'
,
0
)
this
.
$set
(
this
.
form
,
'
shadeCommissionAmount
'
,
0
)
'
form.commissionType
'
(
val
,
old
){
if
(
typeof
old
!=
'
undefined
'
&&
old
!=
val
){
this
.
$set
(
this
.
form
,
'
lightCommissionAmount
'
,
0
)
this
.
$set
(
this
.
form
,
'
shadeCommissionAmount
'
,
0
)
}
// 暗佣需要查询暗佣设置
if
(
val
==
2
){
...
...
@@ -185,8 +189,8 @@ export default {
this
.
form
=
r
.
data
}
)
}
,
getProduct
Attr
NameById
(
id
){
return
this
.
productAttrList
.
find
(
e
=>
e
.
id
===
id
)?.
attrName
||
''
getProduct
Type
NameById
(
id
){
return
this
.
$l
(
this
.
productTypeList
.
find
(
e
=>
e
.
id
===
id
),
'
title
'
)
}
,
closeDialog
(){
this
.
$emit
(
'
close
'
)
...
...
@@ -199,7 +203,7 @@ export default {
darkUnit
:
this
.
form
.
orgSeaFreightVolume
,
departureId
:
this
.
offer
.
departureId
,
objectiveId
:
this
.
offer
.
objectiveId
,
productAttr
:
3
,
//this.offerProd.prodAttrIds
,
productAttr
:
this
.
offerProd
.
prodAttrIds
.
split
(
'
,
'
).
filter
(
item
=>
item
&&
item
!=
''
)
,
productType
:
this
.
offerProd
.
productType
,
transportId
:
this
.
offer
.
transportId
,
type
:
2
,
// 暗佣
...
...
src/views/ecw/offer/components/SpecialDetail.vue
View file @
17db2b38
<
template
>
<el-descriptions
border
:column=
"1"
>
<el-descriptions-item
label=
"商品类型"
>
{{
form
.
productType
}}
</el-descriptions-item>
<el-descriptions
border
:column=
"3"
v-if=
"offer"
>
<el-descriptions-item
label=
"报价单号"
>
{{
offer
.
number
}}
</el-descriptions-item>
<el-descriptions-item
label=
"运输方式"
>
<dict-tag
:type=
"DICT_TYPE.TRANSPORT_TYPE"
:value=
"offer.transportId"
/>
</el-descriptions-item>
<el-descriptions-item
label=
"出货方式"
>
{{
channel
?
$l
(
channel
,
'
name
'
)
:
'
/
'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"报价单状态"
>
<dict-tag
:type=
"DICT_TYPE.ECW_OFFER_STATUS"
:value=
"offer.status"
/>
</el-descriptions-item>
<el-descriptions-item
label=
"唛头"
>
{{
offer
.
marks
}}
</el-descriptions-item>
<el-descriptions-item
label=
"始发仓"
>
{{
form
.
departureName
}}
</el-descriptions-item>
<el-descriptions-item
label=
"目的仓"
>
{{
form
.
objectiveName
}}
</el-descriptions-item>
<el-descriptions-item
label=
"申请原因"
:span=
"3"
v-if=
"type == 2"
>
<div
class=
"item"
>
商品:
{{
$l
(
form
,
'
prodTitle
'
)
}}
</div>
<div
class=
"item"
>
佣金规则:
{{
$t
(
'
从【{oldType
}
】改为【{newType
}
】
'
,
{
oldType
:
getDictDataLabel
(
DICT_TYPE
.
COMMISSION_TYPE
,
offer
.
commissionType
)
,
newType
:
getDictDataLabel
(
DICT_TYPE
.
COMMISSION_TYPE
,
form
.
commissionType
),
}
)
}}
<
/div
>
<
div
>
原运费:
{{
form
.
seaFreight
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
div
>
新运费:
{{
newSeaFreight
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
div
>
成本价:
{{
form
.
orgSeaFreight
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
div
>
明佣:
{{
form
.
lightCommissionAmount
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
div
>
暗佣:
{{
form
.
shadeCommissionAmount
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/div
>
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
申请原因
"
:
span
=
"
3
"
v
-
if
=
"
type == 1
"
>
<
div
class
=
"
item
"
>
商品:
{{
$l
(
form
,
'
prodTitle
'
)
}}
<
/div
>
<
div
>
原运费:
{{
form
.
orgSeaFreight
+
currentMap
[
form
.
seaFreight
]
+
'
/
'
+
unitMap
[
form
.
seaFreight
]
}}
,
原清关费:
{{
form
.
orgClearanceFreight
+
currentMap
[
form
.
clearanceFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
clearanceFreightVolume
]
}}
<
/div
>
<
div
>
新运费:
{{
seaFreight
+
currentMap
[
form
.
orgSeaFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
orgSeaFreightVolume
]
}}
,
新清关费:
{{
form
.
clearanceFreight
+
currentMap
[
form
.
clearanceFreightCurrency
]
+
'
/
'
+
unitMap
[
form
.
clearanceFreightVolume
]
}}
<
/div
>
<
/el-descriptions-item
>
<!--
<
el
-
descriptions
-
item
label
=
"
商品类型
"
>
{{
$l
(
productType
,
'
title
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
商品名称
"
>
{{
form
.
prodTitleZh
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
英文名称
"
>
{{
form
.
prodTitleEn
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
线路
"
>
{{
`【${getDictDataLabel(DICT_TYPE.TRANSPORT_TYPE, form.transportId)
}
】${ getChannelNameById(form.channelId)
}
从【${form.departureName
}
】发往【${form.objectiveName
}
】`
}}
【
<
dict
-
tag
:
type
=
"
DICT_TYPE.TRANSPORT_TYPE
"
:
value
=
"
form.transportId
"
/>
】
<
template
v
-
if
=
"
channel
"
>
【
{{
$l
(
channel
,
'
name
'
)
}}
】
<
/template
>
{{
$t
(
"
从【{start
}
】发往【{dest
}
】
"
,
{
start
:
form
.
departureName
,
dest
:
form
.
objectiveName
}
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
是否预付
"
>
{{
form
.
isPayAdvance
===
0
?
'
是
'
:
'
否
'
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
旧运费
"
>
{{
form
.
orgSeaFreight
}}
{{
currentMap
[
form
.
orgSeaFreightCurrency
]
}}
/
{{
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
是否预付
"
>
<
dict
-
tag
:
type
=
"
DICT_TYPE.ECW_PAY_ADVANCE
"
:
value
=
"
form.isPayAdvance
"
/>
<
/el-descriptions-item> --
>
<!--
<
el
-
descriptions
-
item
label
=
"
旧运费
"
>
{{
form
.
orgSeaFreight
}}
{{
currentMap
[
form
.
orgSeaFreightCurrency
]
}}
/
{{
unitMap
[
form
.
orgSeaFreightVolume
]
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
旧清关费
"
>
{{
form
.
orgClearanceFreight
}}
{{
currentMap
[
form
.
orgClearanceFreightCurrency
]
}}
/
{{
unitMap
[
form
.
orgClearanceFreightVolume
]
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
新运费
"
>
{{
form
.
seaFreight
}}
{{
currentMap
[
form
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
form
.
seaFreightVolume
]
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
新清关费
"
>
{{
form
.
clearanceFreight
}}
{{
currentMap
[
form
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
form
.
clearanceFreightVolume
]
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
label
=
"
新清关费
"
>
{{
form
.
clearanceFreight
}}
{{
currentMap
[
form
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
form
.
clearanceFreightVolume
]
}}
<
/el-descriptions-item>
--
>
<
/el-descriptions
>
<
/template
>
<
script
>
import
{
createOfferSpecial
,
getOfferSpecial
,
getOfferSpecialByApproveId
}
from
"
@/api/ecw/offer
"
import
{
DICT_TYPE
,
getDictDataLabel
}
from
"
@/utils/dict
"
import
{
getOfferSpecialByApproveId
,
getOffer
}
from
"
@/api/ecw/offer
"
import
{
getUnitList
}
from
"
@/api/ecw/unit
"
import
{
getChannel
List
}
from
"
@/api/ecw/channel
"
import
{
getChannel
}
from
"
@/api/ecw/channel
"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProductAttrList
}
from
'
@/api/ecw/productAttr
'
import
{
getProductType
}
from
'
@/api/ecw/productType
'
import
Decimal
from
'
decimal.js
'
export
default
{
name
:
"
s
pecialDetail
"
,
name
:
"
S
pecialDetail
"
,
props
:
{
offerProdId
:
Number
,
id
:
[
String
,
Number
],
readonly
:
{
type
:
Boolean
,
default
:
false
}
type
:
Number
,
// 类型,1特价,2佣金
}
,
created
()
{
// 从流程查看详情
...
...
@@ -38,84 +97,60 @@ export default {
this
.
getOfferSpecialByApproveId
()
getUnitList
().
then
(
res
=>
this
.
unitList
=
res
.
data
)
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
getCurrencyList
().
then
(
res
=>
this
.
currencyList
=
res
.
data
)
getProductAttrList
().
then
(
res
=>
this
.
productAttrList
=
res
.
data
)
}
,
data
()
{
return
{
getDictDataLabel
,
DICT_TYPE
,
unitList
:[],
channelList
:[],
currencyList
:[],
productAttrList
:[],
ccIdArr
:
[],
form
:
{
type
:
1
}
,
rules
:{
seaFreight
:
{
required
:
true
,
message
:
'
运费不能为空
'
}
,
clearanceFreight
:
{
required
:
true
,
message
:
'
清关费不能为空
'
}
}
}
}
,
watch
:{
ccIdArr
(){
this
.
$set
(
this
.
form
,
'
ccIds
'
,
this
.
ccIdArr
.
join
(
'
,
'
))
}
}
,
methods
:
{
handleSubmit
(){
this
.
$refs
.
form
.
validate
().
then
(
res
=>
{
console
.
log
(
this
.
form
.
type
)
createOfferSpecial
(
Object
.
assign
({
}
,
this
.
form
,
{
type
:
1
}
)).
then
(
res
=>
{
this
.
$message
.
success
(
r
.
msg
||
'
提交成功
'
)
}
)
}
)
}
,
getOfferSpecial
(){
getOfferSpecial
(
this
.
offerProdId
,
{
type
:
1
}
).
then
(
r
=>
{
this
.
form
=
r
.
data
}
)
}
,
getOfferSpecialByApproveId
(){
getOfferSpecialByApproveId
(
this
.
id
).
then
(
r
=>
{
this
.
form
=
r
.
data
}
)
}
,
getProductAttrNameById
(
id
){
return
this
.
productAttrList
.
find
(
e
=>
e
.
id
===
id
)?.
attrName
||
''
productType
:
null
,
channel
:
null
,
offer
:
null
,
form
:{
}
}
}
,
computed
:
{
// 根据渠道id显示渠道名
getChannelNameById
(){
return
channelId
=>
{
const
s
=
this
.
channelList
.
find
(
item
=>
item
.
channelId
==
channelId
)
?.
nameZh
return
s
?
'
【
'
+
s
+
'
】
'
:
''
}
}
,
currentMap
(){
let
map
=
{
}
this
.
currencyList
.
forEach
(
item
=>
{
map
[
item
.
id
]
=
item
.
titleZh
map
[
item
.
id
]
=
this
.
$l
(
item
,
'
title
'
)
}
)
return
map
}
,
unitMap
(){
let
map
=
{
}
this
.
unitList
.
forEach
(
item
=>
{
map
[
item
.
id
]
=
item
.
titleZh
map
[
item
.
id
]
=
this
.
$l
(
item
,
'
title
'
)
}
)
return
map
}
,
// 新运费
newSeaFreight
(){
return
Decimal
(
this
.
form
.
seaFreight
).
plus
(
this
.
form
.
shadeCommissionAmount
).
plus
(
this
.
form
.
lightCommissionAmount
)
}
}
,
methods
:
{
getOfferSpecialByApproveId
(){
getOfferSpecialByApproveId
(
this
.
id
).
then
(
r
=>
{
this
.
form
=
r
.
data
getOffer
(
this
.
form
.
offerId
).
then
(
res
=>
{
this
.
offer
=
res
.
data
}
)
if
(
this
.
form
.
productType
){
getProductType
(
this
.
form
.
productType
).
then
(
res
=>
{
this
.
productType
=
res
.
data
}
)
}
if
(
this
.
form
.
channelId
){
getChannel
(
this
.
form
.
channelId
).
then
(
res
=>
{
this
.
channel
=
res
.
data
}
)
}
}
)
}
}
}
,
}
<
/script
>
<
style
scoped
>
<
/style
>
<
/script>
\ No newline at end of file
src/views/ecw/offer/components/SpecialDiscount.vue
View file @
17db2b38
...
...
@@ -2,7 +2,7 @@
<el-dialog
visible
:close-on-click-modal=
"false"
:before-close=
"closeDialog"
:title=
"$t('优惠申请')"
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"80px"
:rules=
"rules"
>
<el-form-item
:label=
"$t('商品类型')"
>
<span>
{{
getProduct
Attr
NameById
(
form
.
productType
)
}}
</span>
<span>
{{
getProduct
Type
NameById
(
form
.
productType
)
}}
</span>
</el-form-item>
<el-form-item
:label=
"$t('商品名称')"
>
<span>
{{
form
.
prodTitleZh
}}
</span>
...
...
@@ -73,7 +73,7 @@ import DictSelector from "@/components/DictSelector"
import
{
getUnitList
}
from
"
@/api/ecw/unit
"
import
{
getChannelList
}
from
"
@/api/ecw/channel
"
import
{
getCurrencyList
}
from
'
@/api/ecw/currency
'
import
{
getProduct
AttrList
}
from
'
@/api/ecw/productAttr
'
import
{
getProduct
TypeList
}
from
'
@/api/ecw/productType
'
import
WorkFlow
from
'
@/components/WorkFlow
'
export
default
{
name
:
"
specialDiscount
"
,
...
...
@@ -92,7 +92,7 @@ export default {
getUnitList
().
then
(
res
=>
this
.
unitList
=
res
.
data
)
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
getCurrencyList
().
then
(
res
=>
this
.
currencyList
=
res
.
data
)
getProduct
AttrList
().
then
(
res
=>
this
.
productAttr
List
=
res
.
data
)
getProduct
TypeList
().
then
(
res
=>
this
.
productType
List
=
res
.
data
)
}
,
data
()
{
...
...
@@ -102,7 +102,7 @@ export default {
unitList
:[],
channelList
:[],
currencyList
:[],
product
Attr
List
:[],
product
Type
List
:[],
ccIdArr
:
[],
form
:
{
type
:
1
...
...
@@ -132,8 +132,8 @@ export default {
this
.
form
=
r
.
data
}
)
}
,
getProduct
Attr
NameById
(
id
){
return
this
.
productAttrList
.
find
(
e
=>
e
.
id
===
id
)?.
attrName
||
''
getProduct
Type
NameById
(
id
){
return
this
.
$l
(
this
.
productTypeList
.
find
(
e
=>
e
.
id
===
id
),
'
title
'
)
}
,
closeDialog
(){
this
.
$emit
(
'
close
'
)
...
...
src/views/ecw/offer/index.vue
View file @
17db2b38
...
...
@@ -126,7 +126,7 @@
<
el
-
dropdown
-
item
@
click
.
native
=
"
$router.push('edit?id=' + scope.row.offerId)
"
v
-
if
=
"
[1,2,3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
编辑
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
$router.push('logList?offerId=' + scope.row.offerId)
"
v
-
if
=
"
[1,3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
跟进
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
$router.push(`result?offerId=${scope.row.offerId
}
&number=${scope.row.number
}
`)
"
v
-
if
=
"
[3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
结果
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
$router.push('/offer/special?offerId=' + scope.row.offerId)
"
v
-
if
=
"
[3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
特价
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
$router.push('/offer/special?offerId=' + scope.row.offerId)
"
v
-
if
=
"
[
1,
3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
特价
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
cancel(scope.row.offerId)
"
v
-
if
=
"
[1,3,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
取消
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
recovery(scope.row.offerId)
"
v
-
if
=
"
[0].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:update']
"
>
{{
$t
(
'
恢复
'
)
}}
<
/el-dropdown-item
>
<
el
-
dropdown
-
item
@
click
.
native
=
"
deleteOffer(scope.row.offerId)
"
v
-
if
=
"
[0,1,2,3,4,5,6,7].indexOf(scope.row.status) > -1
"
v
-
hasPermi
=
"
['ecw:offer:delete']
"
>
{{
$t
(
'
删除
'
)
}}
<
/el-dropdown-item
>
...
...
src/views/ecw/order/cargoControl.vue
View file @
17db2b38
...
...
@@ -116,13 +116,13 @@
<
template
v-if=
"scope.row.cargoControlStatus == 2"
>
<el-button
type=
"text"
size=
"mini"
@
click=
"toDetail(scope.row)"
>
{{
$t
(
'
修改
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"toDetail(scope.row)"
>
{{
$t
(
'
取消
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"review(scope.row)"
>
{{
$t
(
'
放货复核
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"review(scope.row)"
v-if=
"scope.row.isToReview"
>
{{
$t
(
'
放货复核
'
)
}}
</el-button>
</
template
>
<!--已完成放货-->
<
template
v-if=
"scope.row.cargoControlStatus == 1"
>
<el-button
type=
"text"
size=
"mini"
@
click=
"toDetail(scope.row)"
>
{{
$t
(
'
查看
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"showTransferCargoOrderId=scope.row.orderId"
>
{{
$t
(
'
调货
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"showFallbackOrder=scope.row"
>
{{
$t
(
'
反复核
'
)
}}
</el-button>
<el-button
type=
"text"
size=
"mini"
@
click=
"showFallbackOrder=scope.row"
v-if=
"scope.row.isReleaseAfterGoods"
>
{{
$t
(
'
反复核
'
)
}}
</el-button>
</
template
>
<!-- <el-button type="text" size="mini" >取消</el-button>
...
...
src/views/ecw/order/components/CargoControlEdit.vue
View file @
17db2b38
...
...
@@ -13,7 +13,7 @@
</el-col>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('收货人电话')"
prop=
"field103"
>
{{
info
.
consigneePhone
}}
+
{{
info
.
consigneeCountryCode
}}
{{
info
.
consigneePhone
}}
</el-form-item>
</el-col>
</el-row>
...
...
@@ -34,7 +34,7 @@
</el-form-item>
<el-form-item
:label=
"$t('控货手机号')"
prop=
"field106"
>
{{
info
.
phone
}}
+
{{
info
.
countryCode
}}
{{
info
.
phone
}}
</el-form-item>
<el-form-item
:label=
"$t('手机验证码')"
prop=
"field106"
>
<el-input
v-model=
"formData.code"
placeholder=
""
style=
"width: 100px; margin-right:10px"
></el-input>
...
...
src/views/ecw/order/components/Release.vue
View file @
17db2b38
...
...
@@ -47,13 +47,15 @@
<el-input
v-model=
"formData.consigneeEmail"
:placeholder=
"$t('请输入收货人邮箱')"
clearable
class=
"w-150"
></el-input>
</el-form-item>
</div>
<el-table
:data=
"[formData]"
border
>
<el-table
:data=
"[formData]"
border
class=
"release-table"
>
<el-table-column
:label=
"$t('控货箱数')"
>
{{
detail
.
sumNum
}}
</el-table-column>
<el-table-column
:label=
"$t('放货箱数')"
>
<template
slot-scope=
"
{row}">
<el-input
type=
"number"
v-model.number=
"row.pickNum"
placeholder=
""
clearable
></el-input>
<el-form-item
prop=
"pickNum"
label-width=
"0"
class=
"mb-0"
>
<el-input
type=
"number"
v-model.number=
"row.pickNum"
placeholder=
""
clearable
></el-input>
</el-form-item>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('体积') + '(m³)'"
>
...
...
@@ -73,7 +75,7 @@
</el-table-column>
</el-table>
<el-form-item
:label=
"$t('控货手机号')"
prop=
"field117"
style=
"margin-top:20px"
>
<el-input
:value=
"detail.phone"
readonly
:placeholder=
"$t('请输入控货手机号')"
>
<el-input
:value=
"
'+' + detail.dialCode +
detail.phone"
readonly
:placeholder=
"$t('请输入控货手机号')"
>
</el-input>
</el-form-item>
<el-form-item
:label=
"$t('手机验证码')"
prop=
"code"
>
...
...
@@ -120,14 +122,22 @@ export default {
"
pickWeight
"
:
0
,
"
remarks
"
:
""
,
},
rules
:{
consigneeName
:
{
required
:
true
,
message
:
this
.
$t
(
'
请填写收货人
'
)},
code
:
{
required
:
true
,
message
:
'
请填写验证码
'
}
},
agreement
:
false
,
// 是否同意协议
}
},
computed
:{
rules
(){
return
{
consigneeName
:
{
required
:
true
,
message
:
this
.
$t
(
'
请填写收货人
'
)},
code
:
{
required
:
true
,
message
:
'
请填写验证码
'
},
pickNum
:
{
type
:
'
number
'
,
max
:
this
.
detail
.
sumNum
-
this
.
detail
.
releaseNum
,
message
:
"
不能超过剩余箱数
"
,
trigger
:
'
change
'
}
}
},
title
(){
let
t
=
this
.
$t
(
'
放货
'
)
if
(
this
.
detail
){
...
...
@@ -159,7 +169,6 @@ export default {
if
(
!
valid
){
return
false
}
console
.
log
(
'
submit
'
)
createPick
(
Object
.
assign
({
orderId
:
this
.
orderId
},
this
.
formData
)).
then
(
res
=>
{
this
.
$message
.
success
(
res
.
msg
||
this
.
$t
(
'
操作成功
'
))
this
.
show
=
false
...
...
@@ -186,4 +195,7 @@ export default {
margin-right
:
10px
;
}
}
::v-deep
.release-table
.el-form-item__error
{
position
:
static
;
}
</
style
>
\ No newline at end of file
src/views/ecw/order/edit.vue
View file @
17db2b38
...
...
@@ -988,6 +988,9 @@ export default {
prodConditionParamList
:
this
.
getProductListWithDefaultValue
()
}).
then
(
res
=>
{
this
.
$set
(
this
,
'
fee
'
,
res
.
data
.
costDto
)
this
.
form
.
orderItemVOList
.
map
((
item
,
index
)
=>
{
this
.
$set
(
item
,
'
fee
'
,
res
.
data
.
prodCostDtoList
[
index
]
||
null
)
})
}).
finally
(()
=>
{
this
.
calculating
=
false
})
...
...
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