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
39c6938e
Commit
39c6938e
authored
Jan 06, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
890297aa
62489a4d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
59 deletions
+36
-59
backclass-form.vue
src/components/sale/backclass-form.vue
+36
-59
No files found.
src/components/sale/backclass-form.vue
View file @
39c6938e
<
style
>
.apply_List
{
width
:
100%
;
height
:
44px
;
background-color
:
#F7F7F7
;
line-height
:
44px
;
margin-bottom
:
10px
;
}
.apply_List
span
{
display
:
inline-block
;
text-align
:
center
;
font-size
:
14px
;
color
:
#000000
;
}
.guest_Status
span
{
cursor
:
pointer
;
color
:
#2961FE
;
}
</
style
>
<!--退课申请-->
<
template
>
<q-dialog
v-model=
"IsShowBackClassDialog"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
...
...
@@ -7,65 +26,23 @@
<div
class=
"text-h6"
>
退课申请
</div>
</q-card-section>
<div
style=
"margin:20px;"
>
<table
:loading=
"loading"
>
<thead>
<tr>
<th
width=
"10%"
>
姓名
</th>
<th
width=
"10%"
>
性别
</th>
<th
width=
"10%"
>
年龄
</th>
<th
width=
"10%"
>
联系电话
</th>
<th
width=
"10%"
>
已上课时
</th>
<th
width=
"10%"
>
状态
</th>
<th
width=
"20%"
>
操作
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"(item,index) in studentList"
v-if=
"item.IsShow"
>
<td>
{{
item
.
GuestName
}}
</td>
<td>
{{
item
.
SexStr
}}
</td>
<td>
{{
item
.
Age
}}
</td>
<td>
{{
item
.
Mobile
}}
</td>
<td>
{{
item
.
ClassHours
}}
</td>
<td>
{{
item
.
GuestStateStr
}}
</td>
<td>
<q-btn
v-if=
"item.GuestState==1"
flat
size=
"xs"
icon=
"iconfont icon-shenhe"
color=
"info"
class=
"q-mr-xs"
label=
"申请"
@
click=
"clickItem(item,1)"
/>
<q-btn
v-if=
"item.AuditStatus==3"
flat
size=
"xs"
icon=
"iconfont icon-ziyuan"
color=
"warning"
class=
"q-mr-xs"
label=
"重新申请"
@
click=
"clickItem(item,2)"
/>
<template
v-if=
"chooseItem&&chooseItem.Id==item.Id"
>
<q-btn
flat
size=
"xs"
icon=
"iconfont icon-shenhe"
color=
"info"
class=
"q-mr-xs"
label=
"取消申请"
@
click=
"cancelApply"
/>
</
template
>
</td>
</tr>
</tbody>
</table>
<div>
<div
class=
"apply_List"
v-for=
"(item,index) in studentList"
v-if=
"item.IsShow"
>
<span
style=
"width:10%"
>
{{
item
.
GuestName
}}
</span>
<span
style=
"width:10%"
>
{{
item
.
SexStr
}}
</span>
<span
style=
"width:10%"
>
{{
item
.
Age
}}
</span>
<span
style=
"width:20%"
>
{{
item
.
Mobile
}}
</span>
<span
style=
"width:20%"
>
<template
v-if=
"item.ClassHours"
>
已学:
{{
item
.
ClassHours
}}
课时
</
template
>
</span>
<span
style=
"width:10%"
>
{{item.GuestStateStr}}
</span>
<span
style=
"width:20%;"
class=
"guest_Status"
>
<span
v-if=
"item.GuestState==1"
@
click=
"clickItem(item,1)"
>
申请
</span>
<span
style=
"margin-left:10px;"
v-if=
"item.AuditStatus==3"
@
click=
"clickItem(item,2)"
>
重新申请
</span>
<span
style=
"margin-left:10px;"
v-if=
"chooseItem&&chooseItem.Id==item.Id"
@
click=
"cancelApply"
>
取消申请
</span>
</span>
</div>
</div>
<q-input
filled
stack-label
:dense=
"false"
v-model=
"applyReason"
style=
"margin-top: 20px"
type=
"textarea"
class=
"col-12"
label=
"申请理由"
/>
<q-separator
/>
...
...
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