Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
罗超
confucius
Commits
494bb368
Commit
494bb368
authored
Nov 26, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
f211ab6e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
120 additions
and
333 deletions
+120
-333
commsionManagement.vue
src/pages/sale/commsionManagement.vue
+25
-131
happyPassbook.vue
src/pages/sale/happyPassbook.vue
+95
-202
No files found.
src/pages/sale/commsionManagement.vue
View file @
494bb368
...
...
@@ -8,24 +8,18 @@
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-right-column-table sticky-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:top=
"props"
>
<div
class=
"col-2 q-table__title"
>
返佣管理
</div>
<q-space
/>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
size=
"sm"
icon=
"add"
label=
"新增任务"
@
click=
"EditTask(null)"
/>
</div>
</
template
>
<
template
v-slot:body-cell-optioned=
"props"
>
<q-td>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditTask(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
style=
"font-weight:400"
label=
"删除"
@
click=
"RemoveTask(props.row.Id)"
/>
<q-btn
flat
size=
"xs"
icon=
"iconfont icon-view"
style=
"font-weight:400"
label=
"详情"
@
click=
"iShowEdit(props.row)"
/>
<
template
v-slot:body-cell-ClassName=
"props"
>
<q-td
:props=
"props"
style=
"padding-right: 0px"
>
{{
props
.
row
.
ClassName
}}
【
{{
props
.
row
.
ClassNo
}}
】
</q-td>
</
template
>
<
template
v-slot:bottom
>
...
...
@@ -52,109 +46,67 @@
data
()
{
return
{
columns
:
[{
name
:
'AccountMoney'
,
label
:
'AccountMoney'
,
align
:
'left'
,
field
:
'AccountMoney'
},
{
name
:
'BalanceTypeStr'
,
label
:
'
BalanceTypeStr
'
,
label
:
'
类型
'
,
field
:
'BalanceTypeStr'
,
align
:
'left'
},
{
name
:
'ClassId'
,
label
:
'ClassId'
,
field
:
'ClassId'
,
align
:
'left'
,
},
{
name
:
'CustomerId'
,
label
:
'CustomerId'
,
field
:
'CustomerId'
,
name
:
'Money'
,
label
:
'变更金额'
,
align
:
'left'
,
field
:
'Money'
},
{
name
:
'Description'
,
label
:
'
描述
'
,
label
:
'
变更详情
'
,
field
:
'Description'
,
align
:
'left'
,
},
{
name
:
'EmployeeId'
,
label
:
'EmployeeId'
,
field
:
'EmployeeId'
,
align
:
'left'
,
},
{
name
:
'Group_Id'
,
label
:
'Group_Id'
,
field
:
'Group_Id'
,
align
:
'left'
,
},
{
name
:
'Money'
,
label
:
'金额'
,
field
:
'Money'
,
name
:
'ClassName'
,
label
:
'班级信息'
,
field
:
'ClassName'
,
align
:
'left'
,
},
{
name
:
'OrderId'
,
label
:
'
OrderId
'
,
label
:
'
订单编号
'
,
field
:
'OrderId'
,
align
:
'left'
,
},
{
name
:
'OrderSource'
,
label
:
'OrderSource'
,
field
:
'OrderSource'
,
align
:
'left'
,
},
{
name
:
'PeopleNum'
,
label
:
'人数'
,
label
:
'
订单
人数'
,
field
:
'PeopleNum'
,
align
:
'left'
,
},
{
name
:
'RebateTypeStr'
,
label
:
'RebateTypeStr'
,
field
:
'RebateTypeStr'
,
align
:
'left'
,
},
{
name
:
'School_Id'
,
label
:
'School_Id'
,
field
:
'School_Id'
,
align
:
'left'
,
},
{
name
:
'UpdateTime'
,
label
:
'更新时间'
,
field
:
'UpdateTime'
,
align
:
'left'
,
},
{
name
:
'Id'
,
label
:
'操作'
,
field
:
'Id'
}
],
dataList
:
[],
loading
:
true
,
msg
:
{
CustomerId
:
0
,
pageIndex
:
1
,
pageSize
:
12
,
rowsPerPage
:
12
,
// TaskName: "" //任务
RebateType
:
1
,
},
pageCount
:
0
,
taskOption
:
null
,
isShowTask
:
false
,
}
},
created
()
{},
created
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
CustomerId
)
{
//this.msg.CustomerId = this.$route.query.CustomerId
}
},
mounted
()
{
this
.
getList
()
},
...
...
@@ -164,37 +116,6 @@
this
.
msg
.
pageIndex
=
1
;
this
.
getList
();
},
//删除
RemoveTask
(
id
)
{
let
that
=
this
this
.
$q
.
dialog
({
title
:
"删除营销任务"
,
message
:
"你正在进行删除任务行为,一旦执行无法找回,是否确认执行?"
,
persistent
:
true
,
cancel
:
{
label
:
"取消"
,
flat
:
true
},
ok
:
{
label
:
"确认"
,
flat
:
true
,
focus
:
true
}
}).
onOk
(()
=>
{
RemoveCustomerTask
({
Id
:
id
}).
then
(
res
=>
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'数据删除成功!'
,
position
:
'top'
})
this
.
getList
()
})
});
},
changePage
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
loading
=
true
;
...
...
@@ -203,32 +124,11 @@
RefreshPage
()
{
this
.
getList
()
},
//新增修改
EditTask
(
obj
)
{
if
(
obj
)
{
this
.
taskOption
=
obj
;
}
else
{
this
.
taskOption
=
null
}
this
.
isShowTask
=
true
},
iShowEdit
(
obj
){
if
(
obj
)
{
this
.
taskOption
=
obj
;
}
else
{
this
.
taskOption
=
null
}
this
.
isShowRight
=
true
},
closeSaleForm
()
{
this
.
isShowTask
=
false
;
this
.
isShowRight
=
false
;
},
//获取数据
getList
()
{
this
.
loading
=
true
;
GetCustomerBalanceDetailPage
(
this
.
msg
).
then
(
res
=>
{
console
.
log
(
res
,
'数据'
);
console
.
log
(
res
,
'数据'
);
this
.
loading
=
false
;
if
(
res
.
Code
==
1
)
{
this
.
dataList
=
res
.
Data
.
PageData
;
...
...
@@ -240,14 +140,8 @@
}
},
}
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
<
style
lang=
"scss"
>
</
style
>
</
style
>
\ No newline at end of file
src/pages/sale/happyPassbook.vue
View file @
494bb368
...
...
@@ -8,24 +8,17 @@
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-right-column-table sticky-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:top=
"props"
>
<div
class=
"col-2 q-table__title"
>
幸福存折
</div>
<q-space
/>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
size=
"sm"
icon=
"add"
label=
"新增任务"
@
click=
"EditTask(null)"
/>
</div>
</
template
>
<
template
v-slot:body-cell-optioned=
"props"
>
<q-td>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditTask(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
style=
"font-weight:400"
label=
"删除"
@
click=
"RemoveTask(props.row.Id)"
/>
<q-btn
flat
size=
"xs"
icon=
"iconfont icon-view"
style=
"font-weight:400"
label=
"详情"
@
click=
"iShowEdit(props.row)"
/>
<
template
v-slot:body-cell-ClassName=
"props"
>
<q-td
:props=
"props"
style=
"padding-right: 0px"
>
{{
props
.
row
.
ClassName
}}
【
{{
props
.
row
.
ClassNo
}}
】
</q-td>
</
template
>
<
template
v-slot:bottom
>
...
...
@@ -52,202 +45,102 @@
data
()
{
return
{
columns
:
[{
name
:
'AccountMoney'
,
label
:
'AccountMoney'
,
align
:
'left'
,
field
:
'AccountMoney'
name
:
'BalanceTypeStr'
,
label
:
'类型'
,
field
:
'BalanceTypeStr'
,
align
:
'left'
},
{
name
:
'Money'
,
label
:
'变更金额'
,
align
:
'left'
,
field
:
'Money'
},
{
name
:
'Description'
,
label
:
'变更详情'
,
field
:
'Description'
,
align
:
'left'
,
},
{
name
:
'ClassName'
,
label
:
'班级信息'
,
field
:
'ClassName'
,
align
:
'left'
,
},
{
name
:
'OrderId'
,
label
:
'订单编号'
,
field
:
'OrderId'
,
align
:
'left'
,
},
{
name
:
'PeopleNum'
,
label
:
'订单人数'
,
field
:
'PeopleNum'
,
align
:
'left'
,
},
{
name
:
'UpdateTime'
,
label
:
'更新时间'
,
field
:
'UpdateTime'
,
align
:
'left'
,
},
],
dataList
:
[],
loading
:
true
,
msg
:
{
CustomerId
:
0
,
pageIndex
:
1
,
pageSize
:
12
,
rowsPerPage
:
12
,
RebateType
:
2
,
},
{
name
:
'BalanceTypeStr'
,
label
:
'BalanceTypeStr'
,
field
:
'BalanceTypeStr'
,
align
:
'left'
},
{
name
:
'ClassId'
,
label
:
'ClassId'
,
field
:
'ClassId'
,
align
:
'left'
,
},
{
name
:
'CustomerId'
,
label
:
'CustomerId'
,
field
:
'CustomerId'
,
align
:
'left'
,
},
{
name
:
'Description'
,
label
:
'描述'
,
field
:
'Description'
,
align
:
'left'
,
},
{
name
:
'EmployeeId'
,
label
:
'EmployeeId'
,
field
:
'EmployeeId'
,
align
:
'left'
,
},
{
name
:
'Group_Id'
,
label
:
'Group_Id'
,
field
:
'Group_Id'
,
align
:
'left'
,
},
{
name
:
'Money'
,
label
:
'金额'
,
field
:
'Money'
,
align
:
'left'
,
},
{
name
:
'OrderId'
,
label
:
'OrderId'
,
field
:
'OrderId'
,
align
:
'left'
,
},
{
name
:
'OrderSource'
,
label
:
'OrderSource'
,
field
:
'OrderSource'
,
align
:
'left'
,
},
{
name
:
'PeopleNum'
,
label
:
'人数'
,
field
:
'PeopleNum'
,
align
:
'left'
,
},
{
name
:
'RebateTypeStr'
,
label
:
'RebateTypeStr'
,
field
:
'RebateTypeStr'
,
align
:
'left'
,
},
{
name
:
'School_Id'
,
label
:
'School_Id'
,
field
:
'School_Id'
,
align
:
'left'
,
},
{
name
:
'UpdateTime'
,
label
:
'更新时间'
,
field
:
'UpdateTime'
,
align
:
'left'
,
},
{
name
:
'Id'
,
label
:
'操作'
,
field
:
'Id'
pageCount
:
0
,
taskOption
:
null
,
isShowTask
:
false
,
}
},
created
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
CustomerId
)
{
//this.msg.CustomerId = this.$route.query.CustomerId
}
],
dataList
:
[],
loading
:
true
,
msg
:
{
pageIndex
:
1
,
pageSize
:
12
,
rowsPerPage
:
12
,
// TaskName: "" //任务
},
pageCount
:
0
,
taskOption
:
null
,
isShowTask
:
false
,
}
},
created
()
{},
mounted
()
{
this
.
getList
()
},
methods
:
{
resetSearch
()
{
this
.
loading
=
true
;
this
.
msg
.
pageIndex
=
1
;
this
.
getList
();
},
//删除
RemoveTask
(
id
)
{
let
that
=
this
this
.
$q
.
dialog
({
title
:
"删除营销任务"
,
message
:
"你正在进行删除任务行为,一旦执行无法找回,是否确认执行?"
,
persistent
:
true
,
cancel
:
{
label
:
"取消"
,
flat
:
true
mounted
()
{
this
.
getList
()
},
methods
:
{
resetSearch
()
{
this
.
loading
=
true
;
this
.
msg
.
pageIndex
=
1
;
this
.
getList
();
},
ok
:
{
label
:
"确认"
,
flat
:
true
,
focus
:
true
}
}).
onOk
(()
=>
{
RemoveCustomerTask
({
Id
:
id
}).
then
(
res
=>
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'数据删除成功!'
,
position
:
'top'
})
changePage
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
loading
=
true
;
this
.
getList
();
},
RefreshPage
()
{
this
.
getList
()
})
});
},
changePage
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
loading
=
true
;
this
.
getList
();
},
RefreshPage
()
{
this
.
getList
()
},
//新增修改
EditTask
(
obj
)
{
if
(
obj
)
{
this
.
taskOption
=
obj
;
}
else
{
this
.
taskOption
=
null
}
this
.
isShowTask
=
true
},
iShowEdit
(
obj
){
if
(
obj
)
{
this
.
taskOption
=
obj
;
}
else
{
this
.
taskOption
=
null
}
this
.
isShowRight
=
true
},
closeSaleForm
()
{
this
.
isShowTask
=
false
;
this
.
isShowRight
=
false
;
},
//获取数据
getList
()
{
this
.
loading
=
true
;
GetCustomerBalanceDetailPage
(
this
.
msg
).
then
(
res
=>
{
console
.
log
(
res
,
'数据'
);
this
.
loading
=
false
;
if
(
res
.
Code
==
1
)
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
},
//获取数据
getList
()
{
this
.
loading
=
true
;
GetCustomerBalanceDetailPage
(
this
.
msg
).
then
(
res
=>
{
console
.
log
(
res
,
'数据'
);
this
.
loading
=
false
;
if
(
res
.
Code
==
1
)
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
}
}).
catch
(()
=>
{
this
.
loading
=
false
})
}
}).
catch
(()
=>
{
this
.
loading
=
false
})
}
},
}
},
}
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
<
style
lang=
"scss"
>
</
style
>
</
style
>
\ No newline at end of file
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