Commit 75a5cc2057ecb125a405da2ba262dab66d52c5f4
1 parent
8f573b82
测试用逻辑删除
Showing
3 changed files
with
6 additions
and
4 deletions
src/views/examinationPaper/add.vue
src/views/examinationPaper/edit.vue
src/views/examinationPaper/index.vue
... | ... | @@ -87,7 +87,7 @@ |
87 | 87 | </div> |
88 | 88 | <div class="info"> |
89 | 89 | <p class="title"> |
90 | - {{ item.title }} <span class="label" v-if="item.tag">{{ item.tag }}</span> | |
90 | + {{ item.title }} <span class="label" v-if="!!item.tag">{{ item.tag }}</span> | |
91 | 91 | </p> |
92 | 92 | <p class="num"> |
93 | 93 | 总题数:{{ item.questionNum }} |
... | ... | @@ -104,7 +104,7 @@ |
104 | 104 | indexs != item.classList.length-1? "、" : "" |
105 | 105 | }` |
106 | 106 | }} |
107 | - <i v-if="clazzChild.keepStatus !== 1" class="el-icon-success"></i | |
107 | + <i v-if="clazzChild.keepStatus == 1" class="el-icon-success"></i | |
108 | 108 | ></span> |
109 | 109 | </p> |
110 | 110 | <p class="person"> |
... | ... | @@ -412,7 +412,7 @@ export default { |
412 | 412 | } |
413 | 413 | } |
414 | 414 | .info { |
415 | - height: 80px; | |
415 | + min-height: 80px; | |
416 | 416 | flex: 1; |
417 | 417 | overflow: hidden; |
418 | 418 | display: flex; |
... | ... | @@ -442,7 +442,7 @@ export default { |
442 | 442 | } |
443 | 443 | } |
444 | 444 | .clazz { |
445 | - font-size: 16px; | |
445 | + font-size: 14px; | |
446 | 446 | color: #667ffd; |
447 | 447 | font-weight: 500; |
448 | 448 | position: relative; | ... | ... |