Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
036a244f
Commit
036a244f
authored
Nov 10, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of 49.232.152.146:qangqi/dd_school
parents
c07da308
8dcae6f5
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
6 deletions
+31
-6
ruoyi-ui/src/views/smartSchool/gradeWork/electronicRecord/index.vue
+20
-2
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
+2
-0
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
+1
-0
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
+3
-0
smart-campus/src/main/java/yangtz/cs/liu/campus/service/impl/schoolLab/SchoolExperimentPlanServiceImpl.java
+2
-1
smart-campus/src/main/java/yangtz/cs/liu/wechat/controller/experiment/TeacherExperimentController.java
+2
-2
smart-campus/src/main/resources/mapper/schoolLab/SchoolLabClassYearMapper.xml
+1
-1
No files found.
ruoyi-ui/src/views/smartSchool/gradeWork/electronicRecord/index.vue
View file @
036a244f
...
...
@@ -73,7 +73,7 @@
<
template
slot-scope=
"{ row }"
>
{{
row
.
state
==
1
?
"
编辑
"
?
"
未填写
"
:
row
.
state
==
4
?
"已提交"
:
row
.
state
==
5
...
...
@@ -120,7 +120,25 @@
align=
"center"
min-width=
"150"
prop=
"education"
/>
>
<
template
slot-scope=
"{ row }"
>
{{
row
.
education
==
0
?
"高中"
:
row
.
education
==
1
?
"专科"
:
row
.
education
==
2
?
"本科"
:
row
.
education
==
3
?
"研究生"
:
row
.
education
==
4
?
"硕士"
:
row
.
education
==
5
?
"博士"
:
""
}}
</
template
>
</el-table-column>
<el-table-column
label=
"政治面貌"
align=
"center"
...
...
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
View file @
036a244f
...
...
@@ -319,6 +319,8 @@
style=
"padding-right: 10px"
>
<el-input
type=
"number"
placeholder=
"请输入数字"
v-model=
"form.classHour"
:disabled=
"form.state == '4' ? true : false"
></el-input>
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
View file @
036a244f
...
...
@@ -308,6 +308,7 @@
style=
"padding-right: 10px"
>
<el-input
type=
"number"
v-model=
"form.classHour"
:disabled=
"status == '7' ? true : false"
></el-input>
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
View file @
036a244f
...
...
@@ -562,6 +562,9 @@ export default {
elink
.
setAttribute
(
"href"
,
objectUrl
);
elink
.
setAttribute
(
"download"
,
"教师电子档案"
+
".xls"
);
elink
.
click
();
})
.
then
(()
=>
{
this
.
$modal
.
closeLoading
();
});
},
...
...
smart-campus/src/main/java/yangtz/cs/liu/campus/service/impl/schoolLab/SchoolExperimentPlanServiceImpl.java
View file @
036a244f
...
...
@@ -277,8 +277,9 @@ public class SchoolExperimentPlanServiceImpl extends ServiceImpl<SchoolExperimen
wrapper
.
eq
(
SchoolGradeMentor:
:
getGradeId
,
gradeId
)
.
eq
(
SchoolGradeMentor:
:
getTeacherId
,
user
.
getUserId
());
SchoolGradeMentor
schoolGradeMentor
=
schoolGradeMentorMapper
.
selectOne
(
wrapper
);
//无学科组返回提示
if
(
StringUtils
.
isBlank
(
schoolGradeMentor
.
getSubGroup
())){
return
schoolLabMapper
.
getSubAll
(
);
throw
new
ServiceException
(
"您还未加入学科组!"
);
}
if
(
schoolGradeMentor
.
getSubGroup
().
equals
(
"1"
)){
list
.
add
(
schoolLabMapper
.
getSub
(
"1"
));
...
...
smart-campus/src/main/java/yangtz/cs/liu/wechat/controller/experiment/TeacherExperimentController.java
View file @
036a244f
...
...
@@ -78,7 +78,7 @@ public class TeacherExperimentController extends BaseController {
schoolLabClassYearVo
.
setGradeId
(
gradeId
);
//获取学科
Map
<
String
,
String
>
map
=
schoolClassMentorService
.
selectTeacherGroupMentot
(
userId
);
if
(
null
!=
map
.
get
(
"courseId"
)){
if
(
map
!=
null
&&
null
!=
map
.
get
(
"courseId"
)){
String
s
=
map
.
get
(
"courseId"
);
List
<
String
>
list
=
Arrays
.
asList
(
s
.
split
(
","
));
List
<
String
>
myList
=
list
.
stream
().
distinct
().
collect
(
Collectors
.
toList
());
...
...
@@ -193,7 +193,7 @@ public class TeacherExperimentController extends BaseController {
//设置级部
//获取学科
Map
<
String
,
String
>
map
=
schoolClassMentorService
.
selectTeacherGroupMentot
(
userId
);
if
(
null
!=
map
.
get
(
"courseId"
)
)
{
if
(
map
!=
null
&&
null
!=
map
.
get
(
"courseId"
)
)
{
String
s
=
map
.
get
(
"courseId"
);
List
<
String
>
list
=
Arrays
.
asList
(
s
.
split
(
","
));
List
<
String
>
myList
=
list
.
stream
().
distinct
().
collect
(
Collectors
.
toList
());
...
...
smart-campus/src/main/resources/mapper/schoolLab/SchoolLabClassYearMapper.xml
View file @
036a244f
...
...
@@ -45,7 +45,7 @@
</sql>
<select
id=
"selectSchoolLabClassYearList"
parameterType=
"SchoolLabClassYearVo"
resultMap=
"SchoolLabClassYearVoResult"
>
select lcy.id, lcy.experiment_plan_id, lcy.experiment_name, lcy.grade_id, lcy.grade,
select
DISTINCT
lcy.id, lcy.experiment_plan_id, lcy.experiment_name, lcy.grade_id, lcy.grade,
lcy.school_year, lcy.semester, lcy.sub, lcy.experiment_classify, lcy.planned_start_time,
lcy.planned_end_time, lcy.chapter_content, lcy.experiment_use_goods, lcy.declare_state, lcy.apply_id,
lcy.apply_name, lcy.apply_time, lcy.create_by, lcy.create_time, lcy.update_by, lcy.update_time, lcy.del_flag
...
...
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