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
6f0a6329
Commit
6f0a6329
authored
May 12, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
96bed70e
dbf06a39
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
373 additions
and
387 deletions
+373
-387
student-from.vue
src/components/activity/student-from.vue
+106
-28
student-Assit.vue
src/components/school/student/student-Assit.vue
+267
-359
No files found.
src/components/activity/student-from.vue
View file @
6f0a6329
...
@@ -8,18 +8,62 @@
...
@@ -8,18 +8,62 @@
right
:
-5px
;
right
:
-5px
;
top
:
-5px
;
top
:
-5px
;
}
}
.activityStuForm
.selectClass
{
width
:
1026px
;
border
:
1px
dashed
#E1E1E5
;
padding-top
:
12px
;
border-radius
:
4px
;
padding
:
12px
4px
0
4px
;
margin-top
:
5px
;
}
.activityStuForm
.selectClass
span
{
display
:
inline-block
;
background
:
#F2F5FA
;
padding
:
0
10px
;
height
:
26px
;
line-height
:
26px
;
border-radius
:
14px
;
color
:
#181E33
;
margin-left
:
10px
;
margin-bottom
:
12px
;
position
:
relative
;
font-size
:
12px
;
cursor
:
pointer
;
}
.activityStuForm
.selectClass
span
i
{
position
:
absolute
;
right
:
-8px
;
top
:
-10px
;
display
:
none
;
color
:
gray
;
cursor
:
pointer
;
}
.activityStuForm
.selectClass
span
:hover
i
{
display
:
block
;
}
</
style
>
</
style
>
<
template
>
<
template
>
<q-dialog
v-model=
"persistent"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
transition-hide=
"scale"
>
<q-dialog
v-model=
"persistent"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
transition-hide=
"scale"
>
<q-card
style=
"width: 500px;max-width:500px;"
>
<q-card
style=
"width: 500px;max-width:500px;"
class=
"activityStuForm"
>
<q-card-section>
<q-card-section>
<div
class=
"text-h6"
>
{{
addMsg
.
I
D
==
0
?
'选择学员'
:
'修改学员'
}}
</div>
<div
class=
"text-h6"
>
{{
addMsg
.
I
d
==
0
?
'选择学员'
:
'修改学员'
}}
</div>
</q-card-section>
</q-card-section>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height: 70vh"
>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height: 70vh"
>
<div
class=
"row wrap"
>
<div
class=
"row wrap"
>
<q-select
filled
stack-label
clearable
use-input
option-value=
"Id"
option-label=
"AccountName"
<q-btn
color=
"accent"
size=
"sm"
@
click=
"showClassStu"
class=
"q-mr-md"
label=
"选择学员"
v-if=
"addMsg.Id==0"
/>
v-model=
"addMsg.GuestId"
:options=
"filterstudentList"
@
filter=
"filterStudentFn"
label=
"学员编号"
ref=
"GuestId"
<br
/>
:rules=
"[val => !!val || '请选择学员']"
class=
"col-12 q-pb-lg"
emit-value
map-options
/>
<div
class=
"selectClass"
v-if=
"addMsg.GuestIdList&&addMsg.GuestIdList.length>0"
>
<span
v-for=
"(item,index) in addMsg.GuestIdList"
:key=
"index"
style=
"padding-left:5px;"
>
{{
item
.
GuestName
}}
<i
class=
"iconfont icon-shanchu1"
@
click=
"delStudentName(index)"
v-if=
"addMsg.Id==0"
></i>
</span>
</div>
</div>
<div
class=
"row wrap"
style=
"margin-top:10px;"
>
<div
class=
"col-12 q-pb-lg"
>
<div
class=
"col-12 q-pb-lg"
>
<q-input
filled
v-model=
"addMsg.StartTime"
mask=
"####-##-## ##:##:##"
ref=
"StartTime"
label=
"开始时间"
<q-input
filled
v-model=
"addMsg.StartTime"
mask=
"####-##-## ##:##:##"
ref=
"StartTime"
label=
"开始时间"
:rules=
"[val => !!val || '请选择开始时间']"
>
:rules=
"[val => !!val || '请选择开始时间']"
>
...
@@ -61,6 +105,9 @@
...
@@ -61,6 +105,9 @@
@
click=
"saveActive"
/>
@
click=
"saveActive"
/>
</q-card-actions>
</q-card-actions>
</q-card>
</q-card>
<classstutreeForm
v-if=
"isShowClassStu"
:sendStudent=
"sendStudent"
@
close=
"closeClassStuForm"
@
success=
"getClassStuList"
>
</classstutreeForm>
</q-dialog>
</q-dialog>
</template>
</template>
<
script
>
<
script
>
...
@@ -69,6 +116,7 @@
...
@@ -69,6 +116,7 @@
getActivitySurveyGuestModule
,
getActivitySurveyGuestModule
,
getAccountStudentList
getAccountStudentList
}
from
'../../api/studentmsg/index'
}
from
'../../api/studentmsg/index'
import
classstutreeForm
from
'../exam/classstutree-form'
export
default
{
export
default
{
props
:
{
props
:
{
saveObj
:
{
saveObj
:
{
...
@@ -80,17 +128,23 @@
...
@@ -80,17 +128,23 @@
default
:
null
default
:
null
}
}
},
},
components
:
{
classstutreeForm
,
},
data
()
{
data
()
{
return
{
return
{
persistent
:
true
,
persistent
:
true
,
addMsg
:
{
addMsg
:
{
Id
:
0
,
//新增传0
Id
:
0
,
//新增传0
GuestType
:
2
,
//客户类型(1-小程序用户,2-学员用户)
GuestType
:
2
,
//客户类型(1-小程序用户,2-学员用户)
GuestIdList
:
[],
//学员编号
GuestId
:
''
,
//学员编号
GuestId
:
''
,
//学员编号
StartTime
:
""
,
//开始时间
StartTime
:
""
,
//开始时间
EndTime
:
""
,
//结束时间
EndTime
:
""
,
//结束时间
SurveyId
:
0
//意见调查表编号
SurveyId
:
0
//意见调查表编号
},
},
isShowClassStu
:
false
,
//是否显示学员弹窗
sendStudent
:
[],
//已选择的学员信息
saveLoading
:
false
,
saveLoading
:
false
,
studentAccountList
:
[],
studentAccountList
:
[],
filterstudentList
:
[],
filterstudentList
:
[],
...
@@ -101,6 +155,31 @@
...
@@ -101,6 +155,31 @@
this
.
initObj
();
this
.
initObj
();
},
},
methods
:
{
methods
:
{
//选择学员
showClassStu
()
{
this
.
isShowClassStu
=
true
;
},
//刷新页面
getClassStuList
(
array
)
{
this
.
addMsg
.
GuestIdList
=
[];
if
(
array
&&
array
.
length
>
0
)
{
array
.
forEach
(
item
=>
{
this
.
addMsg
.
GuestIdList
.
push
({
GuestId
:
item
.
Account_Id
,
GuestName
:
item
.
Name
,
});
})
}
this
.
isShowClassStu
=
false
;
},
//删除学员
delStudentName
(
index
)
{
this
.
addMsg
.
GuestIdList
.
splice
(
index
,
1
);
},
//关闭选择学员弹窗
closeClassStuForm
()
{
this
.
isShowClassStu
=
false
;
},
//初始化表单
//初始化表单
initObj
()
{
initObj
()
{
this
.
addMsg
.
SurveyId
=
this
.
ID
this
.
addMsg
.
SurveyId
=
this
.
ID
...
@@ -113,12 +192,14 @@
...
@@ -113,12 +192,14 @@
this
.
addMsg
.
GuestId
=
tempData
.
GuestId
;
this
.
addMsg
.
GuestId
=
tempData
.
GuestId
;
this
.
addMsg
.
StartTime
=
tempData
.
StartTime
;
this
.
addMsg
.
StartTime
=
tempData
.
StartTime
;
this
.
addMsg
.
EndTime
=
tempData
.
EndTime
;
this
.
addMsg
.
EndTime
=
tempData
.
EndTime
;
this
.
addMsg
.
GuestIdList
=
tempData
.
GuestIdList
;
})
})
}
else
{
}
else
{
this
.
addMsg
.
Id
=
0
;
this
.
addMsg
.
Id
=
0
;
this
.
addMsg
.
GuestId
=
''
;
this
.
addMsg
.
GuestId
=
''
;
this
.
addMsg
.
StartTime
=
''
;
this
.
addMsg
.
StartTime
=
''
;
this
.
addMsg
.
EndTime
=
''
;
this
.
addMsg
.
EndTime
=
''
;
this
.
addMsg
.
GuestIdList
=
[];
}
}
},
},
//意见调查开始时间
//意见调查开始时间
...
@@ -142,31 +223,28 @@
...
@@ -142,31 +223,28 @@
},
},
//保存数据
//保存数据
saveActive
()
{
saveActive
()
{
this
.
$refs
.
GuestId
.
validate
();
this
.
$refs
.
StartTime
.
validate
();
this
.
$refs
.
StartTime
.
validate
();
this
.
$refs
.
EndTime
.
validate
();
this
.
$refs
.
EndTime
.
validate
();
//&& !this.$refs.StartTime.hasError && !this.$refs.EndTime.hasError
setActivitySurveyGuest
(
this
.
addMsg
).
then
(
res
=>
{
if
(
!
this
.
$refs
.
GuestId
.
hasError
)
{
if
(
res
.
Code
==
1
)
{
setActivitySurveyGuest
(
this
.
addMsg
).
then
(
res
=>
{
this
.
$q
.
notify
({
if
(
res
.
Code
==
1
)
{
icon
:
'iconfont icon-chenggong'
,
this
.
$q
.
notify
({
color
:
'accent'
,
icon
:
'iconfont icon-chenggong'
,
timeout
:
2000
,
color
:
'accent'
,
message
:
'数据保存成功!'
,
timeout
:
2000
,
position
:
'top'
message
:
'数据保存成功!'
,
})
position
:
'top'
this
.
$emit
(
'close'
);
})
this
.
$emit
(
'success'
);
this
.
$emit
(
'close'
);
}
else
{
this
.
$emit
(
'success'
);
this
.
$q
.
notify
({
}
else
{
type
:
'negative'
,
this
.
$q
.
notify
({
position
:
"top"
,
type
:
'negative'
,
message
:
res
.
Data
.
message
position
:
"top"
,
})
message
:
res
.
Data
.
message
}
})
})
}
})
}
},
},
// 学生编号
// 学生编号
studentAccount
()
{
studentAccount
()
{
...
...
src/components/school/student/student-Assit.vue
View file @
6f0a6329
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