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
0fc5be64
Commit
0fc5be64
authored
Oct 31, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 10.31
parent
6c1a5316
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
79 deletions
+79
-79
ruoyi-ui/src/api/smartSchool/teacherFiles/teacherElectronicFile.js
+78
-78
ruoyi-ui/src/views/smartSchool/laboratoryManagement/laboratoryManagements/gradeExperimentapp/index.vue
+1
-1
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
+0
-0
No files found.
ruoyi-ui/src/api/smartSchool/teacherFiles/teacherElectronicFile.js
View file @
0fc5be64
import
request
from
'@/utils/request'
import
request
from
"@/utils/request"
;
// 添加任务
// 添加任务
export
function
addTeacherNotice
(
data
)
{
export
function
addTeacherNotice
(
data
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice'
,
url
:
"/teacherFiles/notice"
,
method
:
'post'
,
method
:
"post"
,
data
:
data
data
:
data
,
})
})
;
}
}
// 任务列表
// 任务列表
export
function
listTeacherNotice
(
query
)
{
export
function
listTeacherNotice
(
query
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice/list'
,
url
:
"/teacherFiles/notice/list"
,
method
:
'get'
,
method
:
"get"
,
params
:
query
params
:
query
,
})
})
;
}
}
// 任务详情
// 任务详情
export
function
infoTeaNotice
(
id
)
{
export
function
infoTeaNotice
(
id
)
{
return
request
({
return
request
({
url
:
`/teacherFiles/notice/
${
id
}
`
,
url
:
`/teacherFiles/notice/
${
id
}
`
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 任务修改
// 任务修改
export
function
updateTask
(
data
)
{
export
function
updateTask
(
data
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice'
,
url
:
"/teacherFiles/notice"
,
method
:
'put'
,
method
:
"put"
,
data
:
data
data
:
data
,
})
})
;
}
}
// 发布任务
// 发布任务
export
function
infoTeacherNotice
(
id
)
{
export
function
infoTeacherNotice
(
id
)
{
return
request
({
return
request
({
url
:
`/teacherFiles/notice/release/
${
id
}
`
,
url
:
`/teacherFiles/notice/release/
${
id
}
`
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 任务撤回
// 任务撤回
export
function
taskRetracted
(
id
)
{
export
function
taskRetracted
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice/withdraw/'
+
id
,
url
:
"/teacherFiles/notice/withdraw/"
+
id
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 任务完成
// 任务完成
export
function
taskCompleted
(
id
)
{
export
function
taskCompleted
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice/complete/'
+
id
,
url
:
"/teacherFiles/notice/complete/"
+
id
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 任务删除
// 任务删除
export
function
delTaskInfo
(
id
)
{
export
function
delTaskInfo
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/notice/'
+
id
,
url
:
"/teacherFiles/notice/"
+
id
,
method
:
'delete'
method
:
"delete"
,
})
})
;
}
}
// 通知下档案查看|数据维护
// 通知下档案查看|数据维护
export
function
getteacherNotice
(
query
)
{
export
function
getteacherNotice
(
query
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/list'
,
url
:
"/teacherFiles/files/list"
,
method
:
'get'
,
method
:
"get"
,
params
:
query
params
:
query
,
})
})
;
}
}
//老师查看详情
//老师查看详情
export
function
getNoticeInfo
(
query
)
{
export
function
getNoticeInfo
(
query
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/list'
,
url
:
"/teacherFiles/files/list"
,
method
:
'get'
,
method
:
"get"
,
params
:
query
params
:
query
,
})
})
;
}
}
//老师查看列表
//老师查看列表
export
function
getTeacherTnfo
(
userId
)
{
export
function
getTeacherTnfo
(
query
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/getTeachList/'
+
userId
,
url
:
"/teacherFiles/files/getTeachList"
,
method
:
'get'
,
method
:
"get"
,
})
params
:
query
,
});
}
}
//级部查看档案详情
//级部查看档案详情
export
function
getDepInfo
(
query
)
{
export
function
getDepInfo
(
query
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/list'
,
url
:
"/teacherFiles/files/list"
,
method
:
'get'
,
method
:
"get"
,
params
:
query
params
:
query
,
})
})
;
}
}
//查看档案详情
//查看档案详情
export
function
getFileTnfo
(
id
)
{
export
function
getFileTnfo
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/'
+
id
,
url
:
"/teacherFiles/files/"
+
id
,
method
:
'get'
,
method
:
"get"
,
})
})
;
}
}
// 同步档案
// 同步档案
export
function
syncNotice
(
id
)
{
export
function
syncNotice
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/synchronous/'
+
id
,
url
:
"/teacherFiles/files/synchronous/"
+
id
,
method
:
'put'
method
:
"put"
,
})
})
;
}
}
// 教师档案修改
// 教师档案修改
export
function
updateInfo
(
data
)
{
export
function
updateInfo
(
data
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files'
,
url
:
"/teacherFiles/files"
,
method
:
'put'
,
method
:
"put"
,
data
:
data
data
:
data
,
})
})
;
}
}
// 教师档案删除
// 教师档案删除
export
function
delInfo
(
id
)
{
export
function
delInfo
(
id
)
{
return
request
({
return
request
({
url
:
'/teacherFiles/files/'
+
id
,
url
:
"/teacherFiles/files/"
+
id
,
method
:
'delete'
method
:
"delete"
,
})
})
;
}
}
// 教师档案提交审核
// 教师档案提交审核
// /teacherFiles/files/submitTo/29
// /teacherFiles/files/submitTo/29
export
function
fileSubReview
(
id
)
{
export
function
fileSubReview
(
id
)
{
return
request
({
return
request
({
url
:
`/teacherFiles/files/submitTo/
${
id
}
`
,
url
:
`/teacherFiles/files/submitTo/
${
id
}
`
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 教师档案提交通过
// 教师档案提交通过
export
function
fileSubApproved
(
id
)
{
export
function
fileSubApproved
(
id
)
{
return
request
({
return
request
({
url
:
`/teacherFiles/files/reject/
${
id
}
`
,
url
:
`/teacherFiles/files/reject/
${
id
}
`
,
method
:
'put'
method
:
"put"
,
})
});
}
}
// 教师档案提交驳回
// 教师档案提交驳回
export
function
fileSubRejected
(
id
)
{
export
function
fileSubRejected
(
id
)
{
return
request
({
return
request
({
url
:
`/teacherFiles/files/passThrough/
${
id
}
`
,
url
:
`/teacherFiles/files/passThrough/
${
id
}
`
,
method
:
'put'
method
:
"put"
,
})
});
}
}
\ No newline at end of file
ruoyi-ui/src/views/smartSchool/laboratoryManagement/laboratoryManagements/gradeExperimentapp/index.vue
View file @
0fc5be64
...
@@ -382,7 +382,7 @@ export default {
...
@@ -382,7 +382,7 @@ export default {
//分配实验室
//分配实验室
handleAllocation
(
row
)
{
handleAllocation
(
row
)
{
this
.
loading
=
true
;
this
.
loading
=
true
;
const
id
=
row
.
id
||
this
.
ids
;
const
id
=
row
.
id
||
this
.
ids
;
getLabClassYearxq
(
id
).
then
(
response
=>
{
getLabClassYearxq
(
id
).
then
(
response
=>
{
this
.
postForm
=
response
.
data
;
this
.
postForm
=
response
.
data
;
...
...
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
View file @
0fc5be64
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