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
6c1a5316
Commit
6c1a5316
authored
Oct 31, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of 49.232.152.146:qangqi/dd_school
parents
221be078
28069916
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
10 deletions
+53
-10
ruoyi-ui/src/views/smartSchool/gradeWork/electronicRecord/index.vue
+40
-8
ruoyi-ui/src/views/smartSchool/massOrganization/memberManagement/index.vue
+1
-0
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
+6
-1
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
+3
-0
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
+3
-1
No files found.
ruoyi-ui/src/views/smartSchool/gradeWork/electronicRecord/index.vue
View file @
6c1a5316
...
...
@@ -8,7 +8,19 @@
class=
"demo-form-inline"
>
<el-form-item
label=
"姓名"
>
<el-input
v-model=
"form.name"
></el-input>
<el-input
v-model=
"queryForm.name"
></el-input>
</el-form-item>
<el-form-item
label=
"任务名称"
>
<el-select
clearable
v-model=
"queryForm.noticeName"
style=
"width: 100%"
>
<el-option
v-for=
"item in listTeacherInfo"
:key=
"item.id"
:label=
"item.noticeName"
:value=
"item.id"
>
{{
item
.
noticeName
}}
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button
...
...
@@ -58,6 +70,12 @@
min-width=
"200"
/>
<el-table-column
label=
"任务名称"
align=
"center"
prop=
"noticeName"
min-width=
"150"
/>
<el-table-column
label=
"学年学期"
align=
"center"
prop=
"level"
...
...
@@ -405,6 +423,7 @@ export default {
name
:
"gradeElectronicRecord"
,
data
()
{
return
{
listTeacherInfo
:
[],
// 遮罩层
loading
:
true
,
// 总条数
...
...
@@ -412,9 +431,8 @@ export default {
queryForm
:
{
pageSize
:
10
,
pageNum
:
1
,
level
:
""
,
noticeName
:
""
,
name
:
""
,
region
:
""
,
},
tableData
:
[],
dialogVisible
:
false
,
...
...
@@ -442,20 +460,34 @@ export default {
// console.log("id", this.$route.query.id);
// console.log("status", this.status);
this
.
getList
();
this
.
getListInfo
();
},
methods
:
{
// 任务下拉框
getListInfo
()
{
const
params
=
{
pageNum
:
this
.
queryForm
.
pageNum
,
pageSize
:
this
.
queryForm
.
pageSize
,
noticeId
:
2
,
};
listTeacherNotice
(
params
).
then
((
res
)
=>
{
console
.
log
(
res
,
"列表"
);
this
.
listTeacherInfo
=
res
.
rows
;
console
.
log
(
this
.
listTeacherInfo
,
"this.listTeacherInfo"
);
});
},
/** 查询信息列表 */
getList
()
{
this
.
loading
=
true
;
const
params
=
{
pageNum
:
this
.
queryForm
.
pageNum
,
pageSize
:
this
.
queryForm
.
pageSize
,
// gradeId: this.$store.state.user,
// noticeId: this.$store.state.user.noticeId,
gradeTeacherId
:
this
.
$store
.
state
.
user
.
userId
,
noticeId
:
2
,
noticeName
:
this
.
queryForm
.
noticeName
,
name
:
this
.
queryForm
.
name
,
};
const
gradeId
=
this
.
$store
.
state
.
user
;
console
.
log
(
gradeId
,
"gradeId"
);
getNoticeInfo
(
params
).
then
((
res
)
=>
{
console
.
log
(
params
,
"params"
);
console
.
log
(
res
,
"查询res"
);
...
...
@@ -463,7 +495,7 @@ export default {
},
// 搜索按钮
handleQuery
()
{
this
.
query
Params
.
pageNum
=
1
;
this
.
query
Form
.
pageNum
=
1
;
this
.
getList
();
},
// 重置按钮
...
...
ruoyi-ui/src/views/smartSchool/massOrganization/memberManagement/index.vue
View file @
6c1a5316
...
...
@@ -405,6 +405,7 @@ export default {
classes
:
this
.
form
.
classes
,
orgPosition
:
this
.
form
.
orgPosition
,
phone
:
this
.
form
.
phone
,
orgName
:
this
.
form
.
orgName
,
};
editMemberInfo
(
paramsedit
)
.
then
((
response
)
=>
{
...
...
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
View file @
6c1a5316
...
...
@@ -595,12 +595,17 @@ export default {
this
.
loading
=
true
;
// const userName = this.$store.state.user;
const
userId
=
this
.
$store
.
state
.
user
.
userId
;
// queryForm.noticeName
const
params
=
{
userId
:
this
.
$store
.
state
.
user
.
userId
,
noticeName
:
this
.
queryForm
.
noticeName
,
};
// const params = {
// pageNum: this.queryForm.pageNum,
// pageSize: this.queryForm.pageSize,
// teacherId: this.$store.state.user.userId,
// };
getTeacherTnfo
(
userId
).
then
((
res
)
=>
{
getTeacherTnfo
(
params
).
then
((
res
)
=>
{
this
.
tableData
=
res
.
rows
;
// console.log(params, "params");
console
.
log
(
res
,
"res"
);
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/dataMaintenance.vue
View file @
6c1a5316
...
...
@@ -568,6 +568,9 @@ export default {
pageNum
:
this
.
queryForm
.
pageNum
,
pageSize
:
this
.
queryForm
.
pageSize
,
noticeId
:
this
.
$route
.
query
.
noticeId
,
gradeName
:
this
.
queryForm
.
gradeName
,
teacherName
:
this
.
queryForm
.
teacherName
,
courseName
:
this
.
queryForm
.
courseName
,
};
getteacherNotice
(
params
).
then
((
res
)
=>
{
this
.
tableData
=
res
.
rows
;
...
...
ruoyi-ui/src/views/smartSchool/teachAffairAdministration/electronicRecord/index.vue
View file @
6c1a5316
...
...
@@ -219,6 +219,7 @@
/>
<!--弹窗-->
<el-dialog
v-loading=
"loading"
:title=
"title"
:visible
.
sync=
"dialogVisible"
width=
"650px
...
...
@@ -307,7 +308,7 @@ export default {
return
{
selectedIds
:
[],
// 遮罩层
loading
:
tru
e
,
loading
:
fals
e
,
// 总条数
total
:
0
,
queryForm
:
{
...
...
@@ -402,6 +403,7 @@ export default {
},
//弹窗确定按钮
confirmDialog
()
{
this
.
loading
=
true
;
this
.
$refs
[
"form"
].
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
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