|
@@ -22,7 +22,7 @@
|
|
|
</template>
|
|
|
<hc-table
|
|
|
ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading"
|
|
|
- is-check :check-style="{ width: 29 }" :index-style="{ width: 60 }" class="mt-10px"
|
|
|
+ is-check is-children :check-style="{ width: 29 }" :index-style="{ width: 60 }" class="mt-10px"
|
|
|
@selection-change="tableCheckChange"
|
|
|
>
|
|
|
<template #isSealed="{ row }">
|
|
@@ -130,8 +130,8 @@ const tableRef = ref(null)
|
|
|
const tableColumn = ref([
|
|
|
{ key: 'code', name: '字典编号' },
|
|
|
{ key: 'dictValue', name: '字典名称' },
|
|
|
- { key: 'dictKey', name: '字典键值' },
|
|
|
- { key: 'isSealed', name: '封存', width: 70, align: 'center' },
|
|
|
+ { key: 'dictKey', name: '字典键值', width: 80 },
|
|
|
+ { key: 'isSealed', name: '封存', width: 80, align: 'center' },
|
|
|
{ key: 'remark', name: '字典备注' },
|
|
|
{ key: 'action', name: '操作', width: 100, align: 'center' },
|
|
|
])
|