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
a1795a76
Commit
a1795a76
authored
Nov 10, 2023
by
xuwenhao
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
504893a6
036a244f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
6 deletions
+50
-6
ruoyi-ui/src/api/smartSchool/classTeacherWork/laboratoryManagement/personalLaboratoryapp.js
+7
-0
ruoyi-ui/src/views/smartSchool/classTeacherWork/laboratoryManagement/personalLaboratoryapp/index.vue
+17
-4
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
No files found.
ruoyi-ui/src/api/smartSchool/classTeacherWork/laboratoryManagement/personalLaboratoryapp.js
View file @
a1795a76
...
...
@@ -70,3 +70,10 @@ export function getResult(data) {
data
,
});
}
//获取科目
export
function
getSub
()
{
return
request
({
url
:
"schoolTeacherExperimentApply/getSubject"
,
method
:
"get"
,
});
}
ruoyi-ui/src/views/smartSchool/classTeacherWork/laboratoryManagement/personalLaboratoryapp/index.vue
View file @
a1795a76
...
...
@@ -89,9 +89,9 @@
<el-row
:gutter=
"30"
>
<el-col
:span=
"10"
>
<el-form-item
label=
"学科"
prop=
"sub"
>
<el-select
v-model=
"form.sub"
placeholder=
"请选择"
clearable
style=
"width: 100%;
"
>
<el-option
v-for=
"
dict in dict.type.lab_sub"
:key=
"dict.value"
:label=
"dict.label
"
:value=
"
dict.value"
/
>
<el-select
v-model=
"form.sub"
placeholder=
"请选择"
clearable
:style=
"{ width: '100%' }
"
>
<el-option
v-for=
"
(item, index) in subList"
:key=
"index"
:label=
"item.subName
"
:value=
"
item.sub"
></el-option
>
</el-select>
</el-form-item>
</el-col>
...
...
@@ -173,6 +173,7 @@
</div>
</el-dialog>
<!--查看弹窗 -->
<el-dialog
title=
"申请信息"
:visible
.
sync=
"open"
width=
"60%"
>
<el-form
:model=
"form"
ref=
"form"
size=
"small"
label-width=
"110px"
:disabled=
"isEdit"
>
...
...
@@ -294,6 +295,7 @@ import {
getApplylist
,
// 查询个人实验申请列表
getListxq
,
//查看详情
getResult
,
//附件
getSub
,
//获取科目
}
from
'@/api/smartSchool/classTeacherWork/laboratoryManagement/personalLaboratoryapp'
;
import
FileUploadlab
from
'@/components/FileUploadlab'
;
import
{
getToken
}
from
'@/utils/auth'
;
...
...
@@ -355,6 +357,8 @@ export default {
//级部
gradeList
:
[],
gradeLists
:
[],
//科目
subList
:
[],
total
:
0
,
postForm
:
{
id
:
''
,
...
...
@@ -400,11 +404,11 @@ export default {
this
.
getList
();
this
.
getGradelist
();
this
.
getGrade
();
this
.
getSubiect
();
},
methods
:
{
getList
()
{
getApplylist
(
this
.
queryForm
).
then
(
response
=>
{
this
.
tableData
=
response
.
rows
;
...
...
@@ -518,6 +522,15 @@ export default {
},
//获取科目
getSubiect
()
{
getSub
().
then
(
response
=>
{
this
.
subList
=
response
.
data
;
console
.
log
(
this
.
subList
,
'this.subList'
);
})
},
//上传按钮
getFileList
(
data
)
{
...
...
ruoyi-ui/src/views/smartSchool/gradeWork/electronicRecord/index.vue
View file @
a1795a76
...
...
@@ -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 @
a1795a76
...
...
@@ -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 @
a1795a76
...
...
@@ -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 @
a1795a76
...
...
@@ -562,6 +562,9 @@ export default {
elink
.
setAttribute
(
"href"
,
objectUrl
);
elink
.
setAttribute
(
"download"
,
"教师电子档案"
+
".xls"
);
elink
.
click
();
})
.
then
(()
=>
{
this
.
$modal
.
closeLoading
();
});
},
...
...
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