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
)
{
return
request
({
url
:
'/teacherFiles/notice'
,
method
:
'post'
,
data
:
data
})
url
:
"/teacherFiles/notice"
,
method
:
"post"
,
data
:
data
,
})
;
}
// 任务列表
export
function
listTeacherNotice
(
query
)
{
return
request
({
url
:
'/teacherFiles/notice/list'
,
method
:
'get'
,
params
:
query
})
url
:
"/teacherFiles/notice/list"
,
method
:
"get"
,
params
:
query
,
})
;
}
// 任务详情
export
function
infoTeaNotice
(
id
)
{
return
request
({
url
:
`/teacherFiles/notice/
${
id
}
`
,
method
:
'put'
})
return
request
({
url
:
`/teacherFiles/notice/
${
id
}
`
,
method
:
"put"
,
});
}
// 任务修改
export
function
updateTask
(
data
)
{
return
request
({
url
:
'/teacherFiles/notice'
,
method
:
'put'
,
data
:
data
})
url
:
"/teacherFiles/notice"
,
method
:
"put"
,
data
:
data
,
})
;
}
// 发布任务
export
function
infoTeacherNotice
(
id
)
{
return
request
({
url
:
`/teacherFiles/notice/release/
${
id
}
`
,
method
:
'put'
})
return
request
({
url
:
`/teacherFiles/notice/release/
${
id
}
`
,
method
:
"put"
,
});
}
// 任务撤回
export
function
taskRetracted
(
id
)
{
return
request
({
url
:
'/teacherFiles/notice/withdraw/'
+
id
,
method
:
'put'
})
export
function
taskRetracted
(
id
)
{
return
request
({
url
:
"/teacherFiles/notice/withdraw/"
+
id
,
method
:
"put"
,
});
}
// 任务完成
export
function
taskCompleted
(
id
)
{
return
request
({
url
:
'/teacherFiles/notice/complete/'
+
id
,
method
:
'put'
})
export
function
taskCompleted
(
id
)
{
return
request
({
url
:
"/teacherFiles/notice/complete/"
+
id
,
method
:
"put"
,
});
}
// 任务删除
export
function
delTaskInfo
(
id
)
{
return
request
({
url
:
'/teacherFiles/notice/'
+
id
,
method
:
'delete'
})
url
:
"/teacherFiles/notice/"
+
id
,
method
:
"delete"
,
})
;
}
// 通知下档案查看|数据维护
export
function
getteacherNotice
(
query
)
{
return
request
({
url
:
'/teacherFiles/files/list'
,
method
:
'get'
,
params
:
query
})
url
:
"/teacherFiles/files/list"
,
method
:
"get"
,
params
:
query
,
})
;
}
//老师查看详情
export
function
getNoticeInfo
(
query
)
{
return
request
({
url
:
'/teacherFiles/files/list'
,
method
:
'get'
,
params
:
query
})
url
:
"/teacherFiles/files/list"
,
method
:
"get"
,
params
:
query
,
})
;
}
//老师查看列表
export
function
getTeacherTnfo
(
userId
)
{
export
function
getTeacherTnfo
(
query
)
{
return
request
({
url
:
'/teacherFiles/files/getTeachList/'
+
userId
,
method
:
'get'
,
})
url
:
"/teacherFiles/files/getTeachList"
,
method
:
"get"
,
params
:
query
,
});
}
//级部查看档案详情
export
function
getDepInfo
(
query
)
{
return
request
({
url
:
'/teacherFiles/files/list'
,
method
:
'get'
,
params
:
query
})
url
:
"/teacherFiles/files/list"
,
method
:
"get"
,
params
:
query
,
})
;
}
//查看档案详情
export
function
getFileTnfo
(
id
)
{
return
request
({
url
:
'/teacherFiles/files/'
+
id
,
method
:
'get'
,
})
url
:
"/teacherFiles/files/"
+
id
,
method
:
"get"
,
})
;
}
// 同步档案
export
function
syncNotice
(
id
)
{
return
request
({
url
:
'/teacherFiles/files/synchronous/'
+
id
,
method
:
'put'
})
url
:
"/teacherFiles/files/synchronous/"
+
id
,
method
:
"put"
,
})
;
}
// 教师档案修改
export
function
updateInfo
(
data
)
{
return
request
({
url
:
'/teacherFiles/files'
,
method
:
'put'
,
data
:
data
})
url
:
"/teacherFiles/files"
,
method
:
"put"
,
data
:
data
,
})
;
}
// 教师档案删除
export
function
delInfo
(
id
)
{
return
request
({
url
:
'/teacherFiles/files/'
+
id
,
method
:
'delete'
})
url
:
"/teacherFiles/files/"
+
id
,
method
:
"delete"
,
})
;
}
// 教师档案提交审核
// /teacherFiles/files/submitTo/29
export
function
fileSubReview
(
id
)
{
return
request
({
url
:
`/teacherFiles/files/submitTo/
${
id
}
`
,
method
:
'put'
})
return
request
({
url
:
`/teacherFiles/files/submitTo/
${
id
}
`
,
method
:
"put"
,
});
}
// 教师档案提交通过
export
function
fileSubApproved
(
id
)
{
return
request
({
url
:
`/teacherFiles/files/reject/
${
id
}
`
,
method
:
'put'
})
return
request
({
url
:
`/teacherFiles/files/reject/
${
id
}
`
,
method
:
"put"
,
});
}
// 教师档案提交驳回
export
function
fileSubRejected
(
id
)
{
return
request
({
url
:
`/teacherFiles/files/passThrough/
${
id
}
`
,
method
:
'put'
})
}
\ No newline at end of file
return
request
({
url
:
`/teacherFiles/files/passThrough/
${
id
}
`
,
method
:
"put"
,
});
}
ruoyi-ui/src/views/smartSchool/laboratoryManagement/laboratoryManagements/gradeExperimentapp/index.vue
View file @
0fc5be64
...
...
@@ -382,7 +382,7 @@ export default {
//分配实验室
handleAllocation
(
row
)
{
this
.
loading
=
true
;
this
.
loading
=
true
;
const
id
=
row
.
id
||
this
.
ids
;
getLabClassYearxq
(
id
).
then
(
response
=>
{
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