Commit cffc1a98893891fd407666069065d2983437d116

Authored by 梁保满
1 parent 34b574e0

3-8BUG

src/views/examinationPaper/add.vue
... ... @@ -535,7 +535,10 @@
535 535 </el-form-item>
536 536 <el-form-item
537 537 label="设置答案:"
538   - v-show="questionForm.questionType != 5"
  538 + v-show="
  539 + questionForm.questionType != 5 ||
  540 + questionForm.questionType == 6
  541 + "
539 542 >
540 543 <div class="qs-options">
541 544 <p class="ipt">
... ... @@ -1840,8 +1843,8 @@ export default {
1840 1843 this.subjectList =
1841 1844 data.subjectNames?.map((item) => {
1842 1845 return {
1843   - value: this.role == "ROLE_PERSONAL" ?item.subjectName: item ,
1844   - label: this.role == "ROLE_PERSONAL" ?item.subjectName: item ,
  1846 + value: this.role == "ROLE_PERSONAL" ? item.subjectName : item,
  1847 + label: this.role == "ROLE_PERSONAL" ? item.subjectName : item,
1845 1848 };
1846 1849 }) || [];
1847 1850 if (this.subjectList.length) {
... ...
src/views/examinationPaper/index.vue
... ... @@ -76,7 +76,7 @@
76 76 </div>
77 77 </div>
78 78 <p class="tips" v-show="archivedTotal">
79   - <span>另有{{ archivedTotal }}份已经归档的答题卡,</span>
  79 + <span>回收站内已有{{ archivedTotal }}份答题卡,</span>
80 80 <router-link to="/examinationPaperRecycle">点击查看&gt;&gt;</router-link>
81 81 </p>
82 82 <ul class="content" v-if="tableData && tableData.length">
... ... @@ -154,7 +154,7 @@
154 154 >修改分享范围</el-dropdown-item
155 155 >
156 156 <el-dropdown-item :command="2">复制</el-dropdown-item>
157   - <el-dropdown-item :command="3">归档</el-dropdown-item>
  157 + <el-dropdown-item :command="3">放入回收站</el-dropdown-item>
158 158 </el-dropdown-menu>
159 159 </el-dropdown>
160 160 </div>
... ...
src/views/layout/Footer/bottom.vue
1 1 <template>
2 2 <div>
3   - <p>Copyright © 2022 guoke</p>
  3 + <p>Copyright © 2022 SunVote</p>
4 4 </div>
5 5 </template>
6 6  
... ...
src/views/standard/device/index.vue
... ... @@ -264,11 +264,11 @@
264 264 label="配对码"
265 265 align="center"
266 266 ></el-table-column>
267   - <el-table-column
  267 + <!-- <el-table-column
268 268 prop="answerTimes"
269 269 label="答题次数"
270 270 align="center"
271   - ></el-table-column>
  271 + ></el-table-column> -->
272 272 <el-table-column
273 273 prop="latestReportTime"
274 274 label="最后答题时间"
... ...
src/views/standard/test/index.vue
... ... @@ -526,6 +526,7 @@ export default {
526 526 activated() {
527 527 const that = this;
528 528 BusEvent.$on("keepAlive", async function () {
  529 + that.query.subjectNames = that.role == "ROLE_BANZHUREN" ? [] : "";
529 530 await that._QueryClassList();
530 531 await that._QuerySubjectList();
531 532 await that.setDate(1);
... ...