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
f5ea23e8
Commit
f5ea23e8
authored
Oct 24, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of 49.232.152.146:qangqi/dd_school
parents
ba2eacf6
1ccd7110
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
38 deletions
+31
-38
ruoyi-ui/src/api/smartSchool/teacherFiles/teacherElectronicFile.js
+8
-0
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
+20
-20
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
+0
-1
smart-campus/src/main/java/yangtz/cs/liu/campus/domain/organization/SchoolOrganizationSignin.java
+3
-1
smart-campus/src/main/java/yangtz/cs/liu/dingding/controller/DdSchoolDeptController.java
+0
-16
No files found.
ruoyi-ui/src/api/smartSchool/teacherFiles/teacherElectronicFile.js
View file @
f5ea23e8
...
@@ -54,6 +54,14 @@ export function getDepInfo(query) {
...
@@ -54,6 +54,14 @@ export function getDepInfo(query) {
params
:
query
params
:
query
})
})
}
}
//查看档案详情
export
function
getFileTnfo
(
id
)
{
return
request
({
url
:
'/teacherFiles/files/'
+
id
,
method
:
'get'
,
})
}
// 同步档案
// 同步档案
export
function
syncNotice
(
id
)
{
export
function
syncNotice
(
id
)
{
return
request
({
return
request
({
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
View file @
f5ea23e8
...
@@ -231,6 +231,7 @@
...
@@ -231,6 +231,7 @@
type=
"success"
type=
"success"
size=
"mini"
size=
"mini"
style=
"float: right; margin-right: 50px; margin-top: 10px"
style=
"float: right; margin-right: 50px; margin-top: 10px"
@
click=
"handleExtract"
>
提 取
>
提 取
</el-button>
</el-button>
</div>
</div>
...
@@ -333,7 +334,8 @@
...
@@ -333,7 +334,8 @@
<
script
>
<
script
>
import
{
import
{
getteacherNotice
,
// 通知下档案查看|数据维护
getteacherNotice
,
// 通知下档案查看|数据维护
getNoticeInfo
,
//查看档案详情//查看档案详情
getNoticeInfo
,
//查看档案详情
getFileTnfo
,
//查看档案详情
getDepInfo
,
//级部查询列表
getDepInfo
,
//级部查询列表
syncNotice
,
// 同步档案
syncNotice
,
// 同步档案
}
from
"@/api/smartSchool/teacherFiles/teacherElectronicFile"
;
}
from
"@/api/smartSchool/teacherFiles/teacherElectronicFile"
;
...
@@ -350,6 +352,7 @@ export default {
...
@@ -350,6 +352,7 @@ export default {
pageNum
:
1
,
pageNum
:
1
,
pageSize
:
10
,
pageSize
:
10
,
courseName
:
""
,
courseName
:
""
,
filesSemester
:
""
,
gradeName
:
""
,
gradeName
:
""
,
teacherName
:
""
,
teacherName
:
""
,
},
},
...
@@ -388,24 +391,21 @@ export default {
...
@@ -388,24 +391,21 @@ export default {
};
};
},
},
mounted
()
{
mounted
()
{
console
.
log
(
"id"
,
this
.
$route
.
query
.
noticeId
);
//
console.log("id", this.$route.query.noticeId);
console
.
log
(
"status"
,
this
.
$route
.
query
.
noticeState
);
//
console.log("status", this.$route.query.noticeState);
this
.
getList
();
this
.
getList
();
},
},
methods
:
{
methods
:
{
/** 查询信息列表 */
/** 查询信息列表 */
getList
()
{
getList
()
{
// this.loading = true;
const
params
=
{
const
params
=
{
pageNum
:
this
.
queryForm
.
pageNum
,
pageSize
:
this
.
queryForm
.
pageSize
,
noticeId
:
this
.
$route
.
query
.
noticeId
,
noticeId
:
this
.
$route
.
query
.
noticeId
,
pageNum
:
this
.
$route
.
query
.
pageNum
,
pageSize
:
this
.
$route
.
query
.
pageSize
,
};
};
getteacherNotice
(
params
).
then
((
res
)
=>
{
getteacherNotice
(
params
).
then
((
res
)
=>
{
this
.
tableData
=
res
.
rows
;
this
.
tableData
=
res
.
rows
;
this
.
total
=
res
.
total
;
this
.
total
=
res
.
total
;
console
.
log
(
this
.
total
,
"total"
);
console
.
log
(
res
,
"getList"
);
});
});
},
},
// 搜索按钮
// 搜索按钮
...
@@ -426,23 +426,23 @@ export default {
...
@@ -426,23 +426,23 @@ export default {
},
},
//查看按钮
//查看按钮
handleCheck
(
row
)
{
handleCheck
(
row
)
{
const
params
=
{
const
id
=
row
.
id
;
pageNum
:
this
.
queryForm
.
pageNum
,
getFileTnfo
(
id
).
then
((
res
)
=>
{
pageSize
:
this
.
queryForm
.
pageSize
,
this
.
dialogForm
=
res
.
rows
;
teacherId
:
row
.
teacherId
,
// this.tableFirstData = res.rows;
// noticeId: row.noticeId,
// this.tableSecondData = res.rows;
};
// this.tableThirdData = res.rows;
getNoticeInfo
(
params
).
then
((
res
)
=>
{
// this.tableForthData = res.rows;
// this.dialogForm = res.rows;
this
.
dialogForm
=
res
.
rows
[
0
];
console
.
log
(
this
.
dialogForm
,
"弹窗数据"
);
// console.log(res, "res");
this
.
check
=
true
;
this
.
check
=
true
;
this
.
title
=
"基本信息查看"
;
this
.
title
=
"基本信息查看"
;
this
.
dialogVisible
=
true
;
this
.
dialogVisible
=
true
;
});
});
},
},
// 提取
handleExtract
()
{
// syncNotice().then(() => {});
},
//修改按钮
//修改按钮
handleEdit
(
row
)
{
handleEdit
(
row
)
{
this
.
check
=
false
;
this
.
check
=
false
;
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
View file @
f5ea23e8
...
@@ -426,7 +426,6 @@ export default {
...
@@ -426,7 +426,6 @@ export default {
},
},
// 数据维护按钮
// 数据维护按钮
dataMaintenance
(
row
)
{
dataMaintenance
(
row
)
{
console
.
log
(
"数据维护按钮row"
,
row
);
const
noticeId
=
row
.
id
;
const
noticeId
=
row
.
id
;
const
pageNum
=
this
.
queryForm
.
pageNum
;
const
pageNum
=
this
.
queryForm
.
pageNum
;
const
pageSize
=
this
.
queryForm
.
pageSize
;
const
pageSize
=
this
.
queryForm
.
pageSize
;
...
...
smart-campus/src/main/java/yangtz/cs/liu/campus/domain/organization/SchoolOrganizationSignin.java
View file @
f5ea23e8
...
@@ -16,7 +16,9 @@ import com.ruoyi.common.annotation.Excel;
...
@@ -16,7 +16,9 @@ import com.ruoyi.common.annotation.Excel;
public
class
SchoolOrganizationSignin
extends
OurBaseEntity
public
class
SchoolOrganizationSignin
extends
OurBaseEntity
{
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/** id */
@Excel
(
name
=
"id"
)
private
Long
id
;
/** 姓名 */
/** 姓名 */
@Excel
(
name
=
"姓名"
)
@Excel
(
name
=
"姓名"
)
private
String
name
;
private
String
name
;
...
...
smart-campus/src/main/java/yangtz/cs/liu/dingding/controller/DdSchoolDeptController.java
deleted
100644 → 0
View file @
ba2eacf6
package
yangtz
.
cs
.
liu
.
dingding
.
controller
;
import
com.ruoyi.common.core.page.TableDataInfo
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@RestController
@RequestMapping
(
"/dd/school/dept"
)
public
class
DdSchoolDeptController
{
@GetMapping
(
"/getDeptList"
)
public
TableDataInfo
getDeptList
(){
return
null
;
}
}
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