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
3d905e4f
Commit
3d905e4f
authored
Jun 20, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
创建佣金
parent
7642139a
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
401 additions
and
334 deletions
+401
-334
customerCommissionInfo.js
src/api/ecw/customerCommissionInfo.js
+15
-0
customSelectorsDictionary.vue
.../ecw/customerCommissionInfo/customSelectorsDictionary.vue
+1
-1
darkServantAndProduct.vue
...iews/ecw/customerCommissionInfo/darkServantAndProduct.vue
+0
-90
darkServantAndRebate.vue
...views/ecw/customerCommissionInfo/darkServantAndRebate.vue
+0
-72
index.vue
src/views/ecw/customerCommissionInfo/index.vue
+385
-77
mingServantAndDarkServant.vue
.../ecw/customerCommissionInfo/mingServantAndDarkServant.vue
+0
-91
index.vue
src/views/ecw/messageLeave/index.vue
+0
-3
No files found.
src/api/ecw/customerCommissionInfo.js
View file @
3d905e4f
...
...
@@ -68,3 +68,18 @@ export function customerDropDownList(query){
query
,
})
}
//商品
export
function
commodityList
(){
return
request
({
url
:
'
/ecw/product/list
'
,
method
:
'
get
'
,
})
}
export
function
createCommission
(
query
){
return
request
({
url
:
'
/ecw/customer-commission/create
'
,
method
:
'
post
'
,
data
:
query
})
}
src/views/ecw/customerCommissionInfo/customSelectorsDictionary.vue
View file @
3d905e4f
...
...
@@ -17,7 +17,7 @@ export default {
type
:
Array
,
default
:()
=>
[]
},
value
:
String
,
value
:
[
String
,
Number
]
,
labelKey
:{
type
:
String
,
default
:
'
label
'
...
...
src/views/ecw/customerCommissionInfo/darkServantAndProduct.vue
deleted
100644 → 0
View file @
7642139a
<
template
>
<el-form>
<el-form-item
label=
"商品类型"
>
<div
class=
"shanping-type"
>
<div
class=
"tool"
>
<el-input
placeholder=
"商品"
></el-input>
</div>
<div
class=
"box"
>
<div
class=
"label"
>
商品类型
</div>
<div
class=
"custom"
>
<custom-selectors-dictionary
label-key=
"attrName"
value-key=
"id"
:options=
"commodityType"
></custom-selectors-dictionary>
</div>
</div>
<div
class=
"box"
>
<div
class=
"label"
>
佣金
</div>
<div
class=
"custom"
>
<el-input></el-input>
</div>
<div
class=
"custom"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_CURRENCY_TYPE)"
></custom-selectors-dictionary>
</div>
<div
class=
"custom"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_UNIT)"
></custom-selectors-dictionary>
</div>
</div>
<div>
<el-button
type=
"primary"
>
添加
</el-button>
</div>
</div>
</el-form-item>
</el-form>
</
template
>
<
script
>
//暗涌加产品
import
{
DICT_TYPE
,
getDictDatas
}
from
"
@/utils/dict
"
;
import
customSelectorsDictionary
from
"
@/views/ecw/customerCommissionInfo/customSelectorsDictionary
"
;
export
default
{
name
:
"
darkServantAndProduct
"
,
components
:{
customSelectorsDictionary
},
props
:{
commodityType
:{
type
:
Array
,
default
:()
=>
[]
}
},
data
(){
return
{
DICT_TYPE
,
getDictDatas
,
}
},
mounted
()
{
console
.
log
(
this
.
commodityType
,
'
commodityType
'
)
},
watch
:{
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.shanping-type
{
display
:
flex
;
.tool
{
width
:
150px
;
}
.box
{
margin-left
:
20px
;
display
:
flex
;
.label
{
width
:
80px
;
vertical-align
:
middle
;
font-size
:
14px
;
color
:
#606266
;
font-weight
:
700
;
}
.custom
{
width
:
150px
;
margin-right
:
10px
;
}
}
}
</
style
>
src/views/ecw/customerCommissionInfo/darkServantAndRebate.vue
deleted
100644 → 0
View file @
7642139a
<
template
>
<div>
<div
class=
"column"
>
<div
class=
"label"
>
佣金:
</div>
<div
class=
"content"
>
<div
class=
"item label"
>
满
</div>
<div
class=
"item"
><el-input></el-input></div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_CURRENCY_TYPE)"
></custom-selectors-dictionary></div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_UNIT)"
></custom-selectors-dictionary>
</div>
</div>
<div
class=
"content"
>
<div
class=
"item label"
>
返
</div>
<div
class=
"item"
><el-input></el-input></div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_CURRENCY_TYPE)"
></custom-selectors-dictionary></div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_UNIT)"
></custom-selectors-dictionary>
</div>
</div>
<el-button>
添加
</el-button>
</div>
</div>
</
template
>
<
script
>
//暗佣-达标返佣
import
customSelectorsDictionary
from
"
@/views/ecw/customerCommissionInfo/customSelectorsDictionary
"
;
import
{
DICT_TYPE
,
getDictDatas
}
from
"
@/utils/dict
"
;
export
default
{
name
:
"
darkServantAndRebate
"
,
components
:{
customSelectorsDictionary
},
data
(){
return
{
DICT_TYPE
,
getDictDatas
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.column
{
display
:
flex
;
align-items
:
center
;
.label
{
width
:
50px
;
white-space
:
nowrap
;
vertical-align
:
middle
;
font-size
:
14px
;
color
:
#606266
;
font-weight
:
700
;
}
}
.content
{
display
:
flex
;
align-items
:
center
;
margin-right
:
10px
;
.item
{
text-align
:
right
;
width
:
150px
;
margin
:
0
5px
;
}
.label
{
width
:
50px
;
}
}
</
style
>
src/views/ecw/customerCommissionInfo/index.vue
View file @
3d905e4f
This diff is collapsed.
Click to expand it.
src/views/ecw/customerCommissionInfo/mingServantAndDarkServant.vue
deleted
100644 → 0
View file @
7642139a
<
template
>
<div>
<div
class=
"mingServantAndDarkServant"
>
<div
class=
"box"
>
<div
class=
"label"
>
暗佣佣金:
</div>
<div
class=
"content"
>
<div
class=
"item"
>
<el-input></el-input>
</div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_CURRENCY_TYPE)"
></custom-selectors-dictionary>
</div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_UNIT)"
></custom-selectors-dictionary>
</div>
</div>
</div>
<div
class=
"title"
>
<span
class=
"label"
>
成本价:
</span>
原价-暗佣佣金
</div>
<div
class=
"box"
>
<div
class=
"label"
>
销售价上调:
</div>
<div
class=
"content"
>
<div
class=
"item"
>
<el-input></el-input>
</div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_CURRENCY_TYPE)"
></custom-selectors-dictionary>
</div>
<div
class=
"item"
>
<custom-selectors-dictionary
:options=
"getDictDatas(DICT_TYPE.COMMISSION_UNIT)"
></custom-selectors-dictionary>
</div>
</div>
</div>
<div
class=
"title"
>
<span
class=
"label"
>
实际佣金返点:
</span>
销售价-成本价
</div>
</div>
</div>
</
template
>
<
script
>
//暗佣+明佣
import
customSelectorsDictionary
from
"
@/views/ecw/customerCommissionInfo/customSelectorsDictionary
"
;
import
{
DICT_TYPE
,
getDictDatas
}
from
"
@/utils/dict
"
;
export
default
{
name
:
"
mingServantAndDarkServant
"
,
components
:{
customSelectorsDictionary
},
data
(){
return
{
getDictDatas
,
DICT_TYPE
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.mingServantAndDarkServant
{
margin-top
:
10px
;
.box
{
display
:
flex
;
align-items
:
center
;
.label
{
vertical-align
:
middle
;
font-size
:
14px
;
color
:
#606266
;
font-weight
:
700
;
}
.content
{
display
:
flex
;
align-items
:
center
;
.item
{
margin-right
:
20px
;
}
}
}
.title
{
margin
:
15px
0
;
.label
{
vertical-align
:
middle
;
font-size
:
14px
;
color
:
#606266
;
font-weight
:
700
;
}
}
}
</
style
>
src/views/ecw/messageLeave/index.vue
View file @
3d905e4f
...
...
@@ -121,9 +121,6 @@
</el-dialog>
<!-- 留言详情-->
<el-dialog
title=
"留言详情"
:visible.sync=
"leavingShow"
width=
"500px"
append-to-body
>
<el-row
class=
"el-row-leaving"
:gutter=
"10"
>
<el-col
:span=
"4"
>
客户编号:
</el-col><el-col
:span=
"12"
>
{{}}
</el-col>
</el-row>
<el-row
class=
"el-row-leaving"
:gutter=
"10"
>
<el-col
:span=
"4"
>
姓名:
</el-col><el-col
:span=
"12"
>
{{messageVal.name ? messageVal.name : ''}}
</el-col>
</el-row>
...
...
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