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
76b6a4ad
Commit
76b6a4ad
authored
Dec 16, 2020
by
Mac
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
efcb76a7
e9635060
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1088 additions
and
164 deletions
+1088
-164
index.js
src/api/reward/index.js
+24
-1
sale.js
src/api/sale/sale.js
+12
-0
classFee.vue
src/components/course/classFee.vue
+526
-0
backclass-form.vue
src/components/sale/backclass-form.vue
+165
-0
orderlist.vue
src/components/sale/orderlist.vue
+154
-115
socialclass.vue
src/pages/course/socialclass.vue
+207
-48
No files found.
src/api/reward/index.js
View file @
76b6a4ad
...
...
@@ -24,3 +24,26 @@ export function SetTeachingRewardsInfo(data) {
})
}
/**
* 获取下拉数据
* @param {JSON参数} data
*/
export
function
GetTeachingRewardsBaseInfo
(
data
)
{
return
request
({
url
:
'/TeachingRewards/GetTeachingRewardsBaseInfo'
,
method
:
'post'
,
data
})
}
/**
* 保存上面选择学校
* @param {JSON参数} data
*/
export
function
SetTeachingRewardsBase
(
data
)
{
return
request
({
url
:
'/TeachingRewards/SetTeachingRewardsBase'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/api/sale/sale.js
View file @
76b6a4ad
...
...
@@ -215,3 +215,15 @@ export function quertClassOrderList(data) {
data
})
}
/**
* 学员退课申请
*
*/
export
function
SetBackClassApply
(
data
)
{
return
request
({
url
:
'/order/BackClassApply'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/components/course/classFee.vue
0 → 100644
View file @
76b6a4ad
This diff is collapsed.
Click to expand it.
src/components/sale/backclass-form.vue
0 → 100644
View file @
76b6a4ad
<!--退课申请-->
<
template
>
<q-dialog
v-model=
"IsShowBackClassDialog"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
transition-hide=
"scale"
>
<q-card
style=
"width: 800px;max-width:900px;"
>
<q-card-section>
<div
class=
"text-h6"
>
退课申请
</div>
</q-card-section>
<q-table
:loading=
"loading"
no-data-label=
"暂无相关学员数据"
flat
class=
"sticky-column-table"
separator=
"none"
:data=
"studentList"
:columns=
"columns"
hide-bottom
row-key=
"Id"
>
<template
v-slot:body-cell-optioned=
"props"
>
<q-td
:props=
"props"
>
<div
style=
"min-width:190px;width:100%"
>
<q-btn
v-if=
"props.row.GuestState==1"
flat
size=
"xs"
icon=
"iconfont icon-shenhe"
color=
"info"
style=
"font-weight:400"
class=
"q-mr-xs"
label=
"申请"
@
click=
"clickItem(props.row,1)"
/>
<q-btn
v-if=
"props.row.AuditStatus==3"
flat
size=
"xs"
icon=
"iconfont icon-ziyuan"
color=
"warning"
style=
"font-weight:400"
class=
"q-mr-xs"
label=
"重新申请"
@
click=
"clickItem(props.row,2)"
/>
</div>
</q-td>
</
template
>
</q-table>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"applyReason"
style=
"margin-top: 20px"
type=
"textarea"
class=
"col-12"
label=
"申请理由"
/>
<q-separator
/>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-btn
label=
"取消"
flat
color=
"grey-10"
style=
"font-weight:400 !important"
@
click=
"closeBackClassForm"
/>
<q-btn
label=
"确认申请"
color=
"accent"
class=
"q-px-md"
style=
"font-weight:400 !important"
@
click=
"saveOrderBackClass"
/>
</q-card-actions>
</q-card>
</q-dialog>
</template>
<
script
>
import
{
getOrderGuestPageList
,
SetBackClassApply
}
from
'../../api/sale/sale'
export
default
{
name
:
"backclass-form"
,
props
:
{
saveObj
:
{
type
:
Object
,
default
:
null
,
},
},
data
()
{
return
{
IsShowBackClassDialog
:
true
,
backClassMsg
:
{
OrderId
:
0
,
ClassId
:
0
,
pageIndex
:
1
,
pageSize
:
1000
,
},
applyReason
:
""
,
//申请理由
loading
:
false
,
columns
:
[{
name
:
'GuestName'
,
label
:
'姓名'
,
field
:
'GuestName'
,
align
:
'left'
,
},
{
name
:
'SexStr'
,
label
:
'性别'
,
field
:
'SexStr'
,
align
:
'left'
,
},
{
name
:
'Age'
,
label
:
'年龄'
,
field
:
'Age'
,
align
:
'left'
,
},
{
name
:
'Mobile'
,
label
:
'联系电话'
,
align
:
'left'
,
field
:
'Mobile'
},
{
name
:
'ClassHours'
,
label
:
'已上课时'
,
field
:
'ClassHours'
,
align
:
'left'
,
},
{
name
:
'GuestStateStr'
,
label
:
'状态'
,
field
:
'GuestStateStr'
,
align
:
'left'
},
{
name
:
'optioned'
,
label
:
'操作'
,
field
:
'Id'
}
],
studentList
:
[],
//学员列表
chooseItem
:
{},
//当前选择项
}
},
created
()
{
this
.
backClassMsg
.
OrderId
=
this
.
saveObj
.
OrderId
;
this
.
backClassMsg
.
ClassId
=
this
.
saveObj
.
ClassId
;
this
.
getStudentList
();
},
methods
:
{
//当前点击项
clickItem
(
item
,
type
)
{
this
.
chooseItem
=
item
;
},
//关闭弹窗
closeBackClassForm
()
{
this
.
IsShowBackClassDialog
=
false
;
this
.
applyReason
=
""
;
this
.
backClassMsg
.
OrderId
=
0
;
this
.
backClassMsg
.
ClassId
=
0
;
this
.
chooseItem
=
{};
this
.
$emit
(
'close'
);
},
//获取订单学员列表
getStudentList
()
{
this
.
studentList
=
[];
getOrderGuestPageList
(
this
.
backClassMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
studentList
=
res
.
Data
.
PageData
;
}
})
},
//获取学员退课申请
saveOrderBackClass
()
{
var
applyMsg
=
{
GuestId
:
this
.
chooseItem
.
Id
,
OrderId
:
this
.
chooseItem
.
OrderId
,
applyReason
:
this
.
applyReason
};
if
(
!
applyMsg
.
GuestId
)
{
this
.
$q
.
notify
({
type
:
'negative'
,
position
:
"top"
,
message
:
`请选择要申请的学员`
})
return
;
}
console
.
log
(
"item"
,
applyMsg
);
SetBackClassApply
(
applyMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'修改成功!'
,
position
:
'top'
})
//调用父页面成功方法
this
.
$emit
(
'success'
);
this
.
IsShowBackClassDialog
=
false
}
})
}
}
}
</
script
>
src/components/sale/orderlist.vue
View file @
76b6a4ad
This diff is collapsed.
Click to expand it.
src/pages/course/socialclass.vue
View file @
76b6a4ad
This diff is collapsed.
Click to expand it.
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