mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-18 23:36:44 +08:00
教师端1期问题修复
This commit is contained in:
@@ -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 == "") {
|
||||
|
||||
Reference in New Issue
Block a user