教师端1期问题修复

This commit is contained in:
赵依梦
2025-12-12 10:09:36 +08:00
parent 794177b358
commit 9ae159d047
3 changed files with 16 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<el-dialog class="simple-message-box" :title="title" :visible.sync="visible" :show-close="false" append-to-body> <el-dialog width="40%" class="simple-message-box" :title="title" :visible.sync="visible" append-to-body>
<div class="message-box-content"><svg-icon style="margin-right: 5px;font-size:16px" <div class="message-box-content"><svg-icon style="margin-right: 5px;font-size:16px"
icon-class="jingti"></svg-icon>{{message}}</div> icon-class="jingti"></svg-icon>{{message}}</div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">

View File

@@ -16,7 +16,7 @@
<el-tab-pane label="报名记录" name="second"> <el-tab-pane label="报名记录" name="second">
<el-row style="margin: 20px 0;" :gutter="20"> <el-row style="margin: 20px 0;" :gutter="20">
<el-col :span="4"> <el-col :span="4">
<div class="grid-content bg-purple"><el-input v-model="signup.name" clearable placeholder="姓名" /></div> <div class="grid-content bg-purple"><el-input v-model="signup.name" clearable placeholder="姓名" maxlength="50" /></div>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<div class="grid-content bg-purple"> <div class="grid-content bg-purple">
@@ -56,7 +56,10 @@
</el-tooltip> </el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="signInfo" label="报名方式"> <el-table-column prop="signType" label="报名方式">
<template slot-scope="scope">
<p>{{scope.row.signType == '1' ? '自主报名' : '手动加入' }}</p>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="signTime" label="报名时间"></el-table-column> <el-table-column prop="signTime" label="报名时间"></el-table-column>
</el-table> </el-table>
@@ -72,7 +75,7 @@
<el-tab-pane label="学习记录" name="third"> <el-tab-pane label="学习记录" name="third">
<el-row style="margin-bottom: 20px;" :gutter="5"> <el-row style="margin-bottom: 20px;" :gutter="5">
<el-col :span="4"> <el-col :span="4">
<div class="grid-content bg-purple"><el-input clearable v-model="learningRecords.name" <div class="grid-content bg-purple"><el-input clearable v-model="learningRecords.name" maxlength="50"
placeholder="姓名"></el-input></div> placeholder="姓名"></el-input></div>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
@@ -250,7 +253,7 @@
width="50%" :append-to-body="true"> width="50%" :append-to-body="true">
<el-row style="margin: 20px 0 20px -10px;" :gutter="20" v-if="rousourceRow.contentType == '60'"> <el-row style="margin: 20px 0 20px -10px;" :gutter="20" v-if="rousourceRow.contentType == '60'">
<el-col :span="6"> <el-col :span="6">
<div class="grid-content bg-purple"><el-input v-model="commonResourceStudyPeopleQuery.name" clearable <div class="grid-content bg-purple"><el-input v-model="commonResourceStudyPeopleQuery.name" clearable maxlength="50"
placeholder="姓名" /></div> placeholder="姓名" /></div>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
@@ -316,7 +319,7 @@
:append-to-body="true"> :append-to-body="true">
<el-row style="margin: 20px 0 20px -10px;" :gutter="20"> <el-row style="margin: 20px 0 20px -10px;" :gutter="20">
<el-col :span="6"> <el-col :span="6">
<div class="grid-content bg-purple"><el-input v-model="examResourceStudyPeopleQuery.name" clearable <div class="grid-content bg-purple"><el-input v-model="examResourceStudyPeopleQuery.name" clearable maxlength="50"
placeholder="姓名" /></div> placeholder="姓名" /></div>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
@@ -577,6 +580,7 @@ export default {
name: "", name: "",
status: "", status: "",
}; };
this.queryResourceStudyPeopleList()
}, },
resetExamCommonResourceQuery() { resetExamCommonResourceQuery() {
@@ -587,6 +591,7 @@ export default {
name: "", name: "",
status: "", status: "",
}; };
this.queryExamStudyPeopleList()
}, },
handleShowResourdeDetailList(row) { handleShowResourdeDetailList(row) {
@@ -758,6 +763,7 @@ export default {
}, },
resetResourseList() { resetResourseList() {
this.recourseListQuery.contentName = ""; this.recourseListQuery.contentName = "";
this.getResourseList()
}, },
resetStudyRecords() { resetStudyRecords() {
this.learningRecords.name = ""; this.learningRecords.name = "";
@@ -765,6 +771,7 @@ export default {
this.studyDateTime = []; this.studyDateTime = [];
this.learningRecords.queryStartTime = ""; this.learningRecords.queryStartTime = "";
this.learningRecords.queryFinishTime = ""; this.learningRecords.queryFinishTime = "";
this.getStudyRecords()
}, },
resetSignupList() { resetSignupList() {
@@ -772,6 +779,7 @@ export default {
name: "", name: "",
signType: "", signType: "",
}; };
this.getSignupList()
}, },
resOwnerName(code) { resOwnerName(code) {
if (code == "") { if (code == "") {

View File

@@ -33,6 +33,7 @@
<el-col :span="3"> <el-col :span="3">
<div class="grid-content bg-purple"> <div class="grid-content bg-purple">
<el-select v-model="params.status" placeholder="审核状态" clearable> <el-select v-model="params.status" placeholder="审核状态" clearable>
<el-option label="-" :value="1"></el-option>
<el-option label="审核中" :value="2"></el-option> <el-option label="审核中" :value="2"></el-option>
<el-option label="审核驳回" :value="3"></el-option> <el-option label="审核驳回" :value="3"></el-option>
<el-option label="审核通过" :value="5"></el-option> <el-option label="审核通过" :value="5"></el-option>
@@ -467,7 +468,7 @@ export default {
this.params.status = ""; this.params.status = "";
this.params.enabled = ""; this.params.enabled = "";
this.params.pageIndex = 1; this.params.pageIndex = 1;
// this.getList(); this.getNewList();
this.isSearh = false; this.isSearh = false;
}, },
toExamine(row) { toExamine(row) {