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
6dba3035
Commit
6dba3035
authored
Dec 04, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
b59e6edf
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
16 deletions
+21
-16
assistant-form.vue
src/components/school/assistant/assistant-form.vue
+10
-5
assistant.vue
src/pages/school/assistant.vue
+2
-2
classmanage.vue
src/pages/school/classmanage.vue
+4
-4
manager.vue
src/pages/school/manager.vue
+1
-1
student.vue
src/pages/school/student.vue
+2
-2
sysuser.vue
src/pages/school/sysuser.vue
+1
-1
teacher.vue
src/pages/school/teacher.vue
+1
-1
No files found.
src/components/school/assistant/assistant-form.vue
View file @
6dba3035
...
...
@@ -11,7 +11,7 @@
class=
"col-6 q-pr-lg q-pb-lg"
label=
"助教名称"
:rules=
"[val => !!val || '请填写助教姓名']"
/>
<q-select
filled
stack-label
option-value=
"SId"
option-label=
"SName"
v-model=
"objOption.School_Id"
ref=
"School_Id"
:options=
"schoolList"
label=
"所属校区"
:dense=
"false"
class=
"col-6 q-pb-lg"
emit-value
map-options
:rules=
"[val => !!val || '请选择所属校区']"
/>
map-options
:rules=
"[val => !!val || '请选择所属校区']"
@
input=
"queryDeptTree(objOption.School_Id)"
/>
<q-input
type=
"tel"
filled
stack-label
maxlength=
"100"
:dense=
"false"
v-model=
"objOption.AssistTel"
ref=
"AssistTel"
class=
"col-6 q-pr-lg q-pb-lg"
label=
"联系电话"
:rules=
"[val => !!val || '请填写助教联系电话']"
/>
<selectTree
v-if=
"DeptList&&DeptList.length>0"
:treeData=
'DeptList'
:defaultArray=
"returnString"
...
...
@@ -92,7 +92,7 @@
}
},
created
()
{
this
.
queryDeptTree
();
this
.
queryDeptTree
(
0
);
this
.
queryPostList
();
this
.
getSchool
();
},
...
...
@@ -108,8 +108,14 @@
this
.
objOption
.
Dept_Id
=
tempStr
;
},
//获取部门结构树
queryDeptTree
()
{
getDeptTree
({}).
then
(
res
=>
{
queryDeptTree
(
schoolId
)
{
var
qMsg
=
{
School_Id
:
0
};
if
(
schoolId
)
{
qMsg
.
School_Id
=
schoolId
;
}
getDeptTree
(
qMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
DeptList
=
res
.
Data
;
}
...
...
@@ -130,7 +136,6 @@
}
})
},
//获取编辑器值
getEditValue
(
obj
)
{
this
.
objOption
.
AssistIntro
=
obj
;
...
...
src/pages/school/assistant.vue
View file @
6dba3035
...
...
@@ -4,11 +4,11 @@
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.AssistName"
label=
"助教名称"
/>
label=
"助教名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.AssistTel"
label=
"助教电话"
/>
label=
"助教电话"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
clearable
filled
stack-label
option-value=
"SId"
option-label=
"SName"
...
...
src/pages/school/classmanage.vue
View file @
6dba3035
...
...
@@ -4,19 +4,19 @@
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.ClassName"
label=
"班级名称"
/>
label=
"班级名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.CourseName"
label=
"课程名称"
/>
label=
"课程名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.TeacherName"
label=
"讲师名称"
/>
label=
"讲师名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.AssistName"
label=
"助教名称"
/>
label=
"助教名称"
maxlength=
"20"
/>
</div>
</div>
<div
class=
"page-option"
>
...
...
src/pages/school/manager.vue
View file @
6dba3035
...
...
@@ -4,7 +4,7 @@
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
change=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.SName"
label=
"校区名称"
@
clear=
"resetSearch"
/>
@
clear=
"resetSearch"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
v-model=
"StatusTemp"
:options=
"StatusOpts"
...
...
src/pages/school/student.vue
View file @
6dba3035
...
...
@@ -3,10 +3,10 @@
<div
class=
"page-search row items-center"
>
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.StuName"
label=
"学员名称"
/>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.StuName"
label=
"学员名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.StuTel"
label=
"学员电话"
/>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.StuTel"
label=
"学员电话"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
clearable
filled
stack-label
option-value=
"SId"
option-label=
"SName"
...
...
src/pages/school/sysuser.vue
View file @
6dba3035
...
...
@@ -19,7 +19,7 @@
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
class=
"col-6 q-pr-lg q-pr-lg"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.EmployeeName"
label=
"员工姓名/账号"
/>
v-model=
"msg.EmployeeName"
label=
"员工姓名/账号"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
filled
stack-label
@
input=
"getDepartList(msg.School_Id),resetSearch()"
option-value=
"SId"
...
...
src/pages/school/teacher.vue
View file @
6dba3035
...
...
@@ -4,7 +4,7 @@
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.TeacherName"
label=
"教师名称"
/>
label=
"教师名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
clearable
filled
stack-label
option-value=
"SId"
option-label=
"SName"
...
...
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