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
9ae1c560
Commit
9ae1c560
authored
Oct 11, 2022
by
我在何方
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
a92c33cc
b6afa16a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
16 deletions
+37
-16
index.vue
src/views/ecw/customerCommission/index.vue
+23
-4
batchSingleApplication.vue
src/views/ecw/order/batchSingleApplication.vue
+3
-1
mutexOrder.vue
src/views/ecw/order/mutexOrder.vue
+4
-4
editDialog.vue
src/views/ecw/order/warehousing/components/editDialog.vue
+7
-7
No files found.
src/views/ecw/customerCommission/index.vue
View file @
9ae1c560
...
...
@@ -4,8 +4,19 @@
<!-- 搜索工作栏 -->
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"客户名称"
prop=
"customerId"
>
<el-input
v-model=
"queryParams.customerId"
placeholder=
"请选择客户id"
clearable
size=
"small"
>
</el-input>
<el-select
clearable
filterable
v-model=
"queryParams.customerId"
placeholder=
"请输入关键词"
>
<el-option
v-for=
"(item, index) in customeList"
:key=
"index"
:value=
"item.id"
:label=
"item.name"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"联系电话"
prop=
"type"
>
<el-input
v-model=
"queryParams.defaultContactPhone"
placeholder=
"请输入电话"
clearable
size=
"small"
>
...
...
@@ -128,6 +139,7 @@
import
{
deleteCustomerCommission
,
getCustomerCommissionPage
,
exportCustomerCommissionExcel
}
from
"
@/api/ecw/customerCommission
"
;
import
{
DICT_TYPE
,
getDictDatas
}
from
"
@/utils/dict
"
;
import
{
getTradeCityList
}
from
"
@/api/ecw/region
"
;
import
{
customerDropDownList
}
from
"
@/api/ecw/customerCommissionInfo
"
;
export
default
{
name
:
"
CustomerCommission
"
,
...
...
@@ -173,7 +185,8 @@ export default {
customerId
:
[{
required
:
true
,
message
:
"
客户id不能为空
"
,
trigger
:
"
change
"
}],
type
:
[{
required
:
true
,
message
:
"
佣金类型不能为空
"
,
trigger
:
"
change
"
}],
darkReturnType
:
[{
required
:
true
,
message
:
"
暗佣类型 1产品2达标不能为空
"
,
trigger
:
"
change
"
}],
}
},
customeList
:[],
};
},
computed
:{
...
...
@@ -187,8 +200,14 @@ export default {
},
},
created
()
{
customerDropDownList
().
then
(
res
=>
{
console
.
log
(
res
);
if
(
res
.
code
===
0
)
{
this
.
customeList
=
res
.
data
}
})
if
(
this
.
$route
.
query
.
customerId
){
this
.
queryParams
.
customerId
=
this
.
$route
.
query
.
customerId
this
.
queryParams
.
customerId
=
Number
(
this
.
$route
.
query
.
customerId
)
}
this
.
getList
();
getTradeCityList
().
then
(
res
=>
{
...
...
src/views/ecw/order/batchSingleApplication.vue
View file @
9ae1c560
...
...
@@ -32,7 +32,9 @@
</
template
>
</el-table-column>
<el-table-column
label=
"入仓时间"
prop=
"rucangTime"
>
<
template
v-slot=
"{row}"
>
{{
parseTime
(
row
.
rucangTime
)
}}
</
template
>
</el-table-column>
<el-table-column
label=
"运输方式"
>
<
template
v-slot=
{row}
>
...
...
src/views/ecw/order/mutexOrder.vue
View file @
9ae1c560
...
...
@@ -68,8 +68,8 @@
}}
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
>
<
template
v-slot
:default=
'scope
'
>
<el-button
type=
"text"
@
click =
"guanlianOrderByOrderId(
scope.row.orderId
)"
>
<
template
v-slot
=
'{row}
'
>
<el-button
type=
"text"
@
click =
"guanlianOrderByOrderId(
row
)"
>
移出
</el-button>
</
template
>
...
...
@@ -136,8 +136,8 @@ export default {
}
})
},
guanlianOrderByOrderId
(
id
){
deleteGuanlianOrderByOrderId
({
orderId
:
this
.
orderId
,
mutualOrderId
:
i
d
}).
then
(
r
=>
{
guanlianOrderByOrderId
(
row
){
deleteGuanlianOrderByOrderId
({
orderId
:
this
.
orderId
,
mutualOrderId
:
row
.
mutualOrderI
d
}).
then
(
r
=>
{
if
(
r
.
code
===
0
){
this
.
getList
()
this
.
$message
.
success
(
'
操作成功
'
);
...
...
src/views/ecw/order/warehousing/components/editDialog.vue
View file @
9ae1c560
...
...
@@ -390,12 +390,12 @@ export default {
recordMode
:
undefined
},
tableFormRules
:
{
cartonsNum
:
[{
required
:
true
,
message
:
"
箱数不能为空
"
,
trigger
:
"
blur
"
}],
boxGauge1
:
[{
required
:
true
,
message
:
"
货物长不能为空
"
,
trigger
:
"
blur
"
}],
boxGauge2
:
[{
required
:
true
,
message
:
"
货物宽不能为空
"
,
trigger
:
"
blur
"
}],
boxGauge3
:
[{
required
:
true
,
message
:
"
货物高不能为空
"
,
trigger
:
"
blur
"
}],
volume
:
[{
required
:
true
,
message
:
"
体积不能为空
"
,
trigger
:
"
blur
"
}],
weight
:
[{
required
:
true
,
message
:
"
重量不能为空
"
,
trigger
:
"
blur
"
}],
cartonsNum
:
[{
required
:
true
,
message
:
this
.
$t
(
"
箱数不能为空
"
)
,
trigger
:
"
blur
"
}],
boxGauge1
:
[{
required
:
true
,
message
:
this
.
$t
(
"
货物长不能为空
"
)
,
trigger
:
"
blur
"
}],
boxGauge2
:
[{
required
:
true
,
message
:
this
.
$t
(
"
货物宽不能为空
"
)
,
trigger
:
"
blur
"
}],
boxGauge3
:
[{
required
:
true
,
message
:
this
.
$t
(
"
货物高不能为空
"
)
,
trigger
:
"
blur
"
}],
volume
:
[{
required
:
true
,
message
:
this
.
$t
(
"
体积不能为空
"
)
,
trigger
:
"
blur
"
}],
weight
:
[{
required
:
true
,
message
:
this
.
$t
(
"
重量不能为空
"
)
,
trigger
:
"
blur
"
}],
quantityAll
:
[{
required
:
true
,
message
:
"
数量不能为空
"
,
trigger
:
"
blur
"
}]
},
form1
:
{
...
...
@@ -533,7 +533,7 @@ export default {
orderId
:
this
.
warehousing
.
orderId
,
orderItemId
:
this
.
warehousing
.
orderItemId
,
orderNo
:
this
.
warehousing
.
orderNo
,
cartonsN
um
:
this
.
warehousing
.
num
,
n
um
:
this
.
warehousing
.
num
,
volume
:
this
.
warehousing
.
volume
.
toFixed
(
2
),
weight
:
this
.
warehousing
.
weight
.
toFixed
(
2
),
prodId
:
this
.
warehousing
.
prodId
,
...
...
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