mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-16 22:36:43 +08:00
教师端1期问题修复
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<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"
|
||||
icon-class="jingti"></svg-icon>{{message}}</div>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<el-tab-pane label="报名记录" name="second">
|
||||
<el-row style="margin: 20px 0;" :gutter="20">
|
||||
<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 :span="4">
|
||||
<div class="grid-content bg-purple">
|
||||
@@ -56,7 +56,10 @@
|
||||
</el-tooltip>
|
||||
</template>
|
||||
</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 prop="signTime" label="报名时间"></el-table-column>
|
||||
</el-table>
|
||||
@@ -72,7 +75,7 @@
|
||||
<el-tab-pane label="学习记录" name="third">
|
||||
<el-row style="margin-bottom: 20px;" :gutter="5">
|
||||
<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>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
@@ -250,7 +253,7 @@
|
||||
width="50%" :append-to-body="true">
|
||||
<el-row style="margin: 20px 0 20px -10px;" :gutter="20" v-if="rousourceRow.contentType == '60'">
|
||||
<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>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
@@ -316,7 +319,7 @@
|
||||
:append-to-body="true">
|
||||
<el-row style="margin: 20px 0 20px -10px;" :gutter="20">
|
||||
<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>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
@@ -577,6 +580,7 @@ export default {
|
||||
name: "",
|
||||
status: "",
|
||||
};
|
||||
this.queryResourceStudyPeopleList()
|
||||
},
|
||||
|
||||
resetExamCommonResourceQuery() {
|
||||
@@ -587,6 +591,7 @@ export default {
|
||||
name: "",
|
||||
status: "",
|
||||
};
|
||||
this.queryExamStudyPeopleList()
|
||||
},
|
||||
|
||||
handleShowResourdeDetailList(row) {
|
||||
@@ -758,6 +763,7 @@ export default {
|
||||
},
|
||||
resetResourseList() {
|
||||
this.recourseListQuery.contentName = "";
|
||||
this.getResourseList()
|
||||
},
|
||||
resetStudyRecords() {
|
||||
this.learningRecords.name = "";
|
||||
@@ -765,6 +771,7 @@ export default {
|
||||
this.studyDateTime = [];
|
||||
this.learningRecords.queryStartTime = "";
|
||||
this.learningRecords.queryFinishTime = "";
|
||||
this.getStudyRecords()
|
||||
},
|
||||
|
||||
resetSignupList() {
|
||||
@@ -772,6 +779,7 @@ export default {
|
||||
name: "",
|
||||
signType: "",
|
||||
};
|
||||
this.getSignupList()
|
||||
},
|
||||
resOwnerName(code) {
|
||||
if (code == "") {
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
<el-col :span="3">
|
||||
<div class="grid-content bg-purple">
|
||||
<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="3"></el-option>
|
||||
<el-option label="审核通过" :value="5"></el-option>
|
||||
@@ -467,7 +468,7 @@ export default {
|
||||
this.params.status = "";
|
||||
this.params.enabled = "";
|
||||
this.params.pageIndex = 1;
|
||||
// this.getList();
|
||||
this.getNewList();
|
||||
this.isSearh = false;
|
||||
},
|
||||
toExamine(row) {
|
||||
|
||||
Reference in New Issue
Block a user