😎修复页面警告
This commit is contained in:
parent
7a332e4c21
commit
93bd06cfa5
@ -42,6 +42,9 @@
|
||||
<template #row_type="{ row, $index }">
|
||||
<el-tag v-for="item in state.typeData" v-show="item.value === row.type">{{ item.text }}</el-tag>
|
||||
</template>
|
||||
<template #row_seq="{ row }">
|
||||
{{ row.seq }}
|
||||
</template>
|
||||
<template #row_resetInterval="{ row, $index }">
|
||||
<g-sys-dict v-model="row.resetInterval" :code="'ResetIntervalEnum'" />
|
||||
</template>
|
||||
@ -106,7 +109,7 @@ const options = useVxeTable<PageSerialOutput>(
|
||||
{ field: 'type', title: '分类', minWidth: 150, showOverflow: 'tooltip', slots: { default: 'row_type' } },
|
||||
{ field: 'resetInterval', title: '重置间隔', minWidth: 120, showOverflow: 'tooltip', slots: { default: 'row_resetInterval' } },
|
||||
{ field: 'formater', title: '表达式', minWidth: 220, showOverflow: 'tooltip' },
|
||||
{ field: 'seq', title: '当前序列号', minWidth: 80, showOverflow: 'tooltip' },
|
||||
{ field: 'currentSeq', title: '当前序列号', minWidth: 80, showOverflow: 'tooltip', slots: { default: 'row_seq' } },
|
||||
{ field: 'min', title: '最小值', minWidth: 80, showOverflow: 'tooltip' },
|
||||
{ field: 'max', title: '最大值', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'expy', title: '有效期', minWidth: 150, showOverflow: 'tooltip', slots: { default: 'row_expy' } },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user