Commit ce7950a01c3258480c064f7e4b267d869fd2b12f

Authored by loveumiko
1 parent 3a45419b

fix :修复批量删除处于禁用状态还能点击,报表查看样式错乱

... ... @@ -213,6 +213,7 @@
213 213 ok-text="确定"
214 214 cancel-text="取消"
215 215 @confirm="handleDelete(getCheckedRecord)"
  216 + :disabled="!getCheckedRecord.length"
216 217 >
217 218 <Button type="primary" danger :disabled="!getCheckedRecord.length">
218 219 批量删除
... ...
... ... @@ -21,6 +21,7 @@
21 21 chartInstance.length % 2 !== 0 ? '' : 'inner',
22 22 chartInstance.length % 2 !== 0 ? '' : 'item',
23 23 ]"
  24 + class="mb-20"
24 25 v-for="item in chartInstance"
25 26 :key="item.device"
26 27 >
... ... @@ -90,7 +91,7 @@
90 91 },
91 92 });
92 93 defineEmits(['register']);
93   - const heightNum = ref(800);
  94 + const heightNum = ref(550);
94 95
95 96 let currentRecord: ExecuteReportRecord = {} as unknown as ExecuteReportRecord;
96 97
... ...