zydx-plus 1.32.179 → 1.32.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<th>难</th>
|
|
10
10
|
<th>合计题量</th>
|
|
11
11
|
<th>合计分值</th>
|
|
12
|
-
<th v-if="!readOnly">操作</th>
|
|
12
|
+
<th v-if="!readOnly&&butShow">操作</th>
|
|
13
13
|
</tr>
|
|
14
14
|
<tbody v-for="(item,index) in question" :key="index">
|
|
15
15
|
<tr>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
</td>
|
|
36
36
|
<td rowspan="2">{{ item.count }}</td>
|
|
37
37
|
<td rowspan="2">{{ item.allScore }}</td>
|
|
38
|
-
<td rowspan="2" v-if="!readOnly">
|
|
38
|
+
<td rowspan="2" v-if="!readOnly&&butShow">
|
|
39
39
|
<button class="but" @click="cancel(index)">撤销选择</button>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<td>{{ hardNum === 0? '-': hardNum }}</td>
|
|
67
67
|
<td>{{ midNum === 0? '-': midNum }}</td>
|
|
68
68
|
<td>试卷总分</td>
|
|
69
|
-
<td :colspan="readOnly? 1: 2">{{ totalNum === 0? '-': totalNum }}</td>
|
|
69
|
+
<td :colspan="readOnly&&butShow? 1: 2">{{ totalNum === 0? '-': totalNum }}</td>
|
|
70
70
|
</tr>
|
|
71
71
|
</table>
|
|
72
72
|
</div>
|
|
@@ -94,6 +94,10 @@ export default {
|
|
|
94
94
|
type: Boolean,
|
|
95
95
|
default: false
|
|
96
96
|
},
|
|
97
|
+
butShow: {
|
|
98
|
+
type: Boolean,
|
|
99
|
+
default: false
|
|
100
|
+
}
|
|
97
101
|
},
|
|
98
102
|
watch: {
|
|
99
103
|
data: {
|