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
9aac4bfd
Commit
9aac4bfd
authored
Dec 09, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
80e505b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
17 deletions
+22
-17
student.vue
src/pages/school/student.vue
+22
-17
No files found.
src/pages/school/student.vue
View file @
9aac4bfd
...
@@ -13,17 +13,17 @@
...
@@ -13,17 +13,17 @@
v-model=
"schoolTemp"
ref=
"School_Id"
:options=
"schoolList"
label=
"所属校区"
:dense=
"false"
/>
v-model=
"schoolTemp"
ref=
"School_Id"
:options=
"schoolList"
label=
"所属校区"
:dense=
"false"
/>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
filled
v-model=
"msg.Status"
:options=
"AuditOpts"
<q-select
@
input=
"resetSearch"
filled
v-model=
"msg.Status"
:options=
"AuditOpts"
emit-value
map-options
emit-value
map-options
label=
"状态"
/>
label=
"状态"
/>
</div>
</div>
</div>
</div>
<div
class=
"page-option"
>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
class=
"q-mr-md"
icon=
"add"
label=
"新增
学员
"
@
click=
"EditStudent(null)"
/>
<q-btn
color=
"accent"
class=
"q-mr-md"
icon=
"add"
label=
"新增
客户
"
@
click=
"EditStudent(null)"
/>
</div>
</div>
</div>
</div>
<div
class=
"page-content"
>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-right-column-table sticky-tow-column-table"
separator=
"none"
title=
"
学员信息
"
:data=
"data"
class=
"sticky-right-column-table sticky-tow-column-table"
separator=
"none"
title=
"
客户管理(学员)
"
:data=
"data"
:columns=
"columns"
row-key=
"name"
>
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:body-cell-StuIcon=
"props"
>
<template
v-slot:body-cell-StuIcon=
"props"
>
<q-td
auto-width
:props=
"props"
>
<q-td
auto-width
:props=
"props"
>
...
@@ -57,7 +57,8 @@
...
@@ -57,7 +57,8 @@
</q-table>
</q-table>
<student-form
v-if=
"isShowStuForm"
:save-obj=
"stuOption"
@
close=
"closeStuForm"
@
success=
"refreshPage"
>
<student-form
v-if=
"isShowStuForm"
:save-obj=
"stuOption"
@
close=
"closeStuForm"
@
success=
"refreshPage"
>
</student-form>
</student-form>
<studentRight-form
v-if=
"isShowStuRight"
:save-obj=
"stuOption"
@
close=
"closeStuForm"
@
success=
"refreshPage"
></studentRight-form>
<studentRight-form
v-if=
"isShowStuRight"
:save-obj=
"stuOption"
@
close=
"closeStuForm"
@
success=
"refreshPage"
>
</studentRight-form>
</div>
</div>
</div>
</div>
</template>
</template>
...
@@ -76,7 +77,7 @@
...
@@ -76,7 +77,7 @@
export
default
{
export
default
{
meta
:
{
meta
:
{
title
:
"
学员管理
"
title
:
"
客户管理(学员)
"
},
},
components
:
{
components
:
{
studentForm
,
studentForm
,
...
@@ -117,20 +118,26 @@
...
@@ -117,20 +118,26 @@
align
:
'left'
align
:
'left'
},
},
{
{
name
:
'
SName
'
,
name
:
'
CreateTypeStr
'
,
label
:
'
所属校区
'
,
label
:
'
客户来源
'
,
field
:
'
SName
'
,
field
:
'
CreateTypeStr
'
,
align
:
'left'
,
align
:
'left'
,
},
},
{
{
name
:
'Status'
,
name
:
'StuStageName'
,
label
:
'状态'
,
label
:
'客户阶段'
,
field
:
'Status'
,
field
:
'StuStageName'
,
align
:
'left'
,
},
{
name
:
'CreateTimeStr'
,
label
:
'创建时间'
,
field
:
'CreateTimeStr'
,
align
:
'left'
,
align
:
'left'
,
},
},
{
{
name
:
'CreateByName'
,
name
:
'CreateByName'
,
label
:
'
创建
人'
,
label
:
'
负责
人'
,
align
:
'left'
,
align
:
'left'
,
field
:
'CreateByName'
field
:
'CreateByName'
}
}
...
@@ -319,7 +326,7 @@
...
@@ -319,7 +326,7 @@
this
.
isShowStuRight
=
false
;
this
.
isShowStuRight
=
false
;
},
},
//点击学生姓名弹出
//点击学生姓名弹出
getStuRight
(
obj
){
getStuRight
(
obj
)
{
if
(
obj
)
{
if
(
obj
)
{
this
.
stuOption
=
obj
;
this
.
stuOption
=
obj
;
}
else
{
}
else
{
...
@@ -329,9 +336,7 @@
...
@@ -329,9 +336,7 @@
}
}
},
},
}
}
</
script
>
</
script
>
<
style
lang=
"sass"
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
@import
url('~assets/css/table.sass')
</
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