|
@@ -15,7 +15,15 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
|
|
- <hc-table ref="tableRef" :column="tableColumn" :datas="tableData" :check-style="{ width: 29 }" is-check is-new @selection-change="tableSelection">
|
|
|
|
|
|
+ <hc-table
|
|
|
|
+ ref="tableRef"
|
|
|
|
+ :column="tableColumn"
|
|
|
|
+ :datas="tableData"
|
|
|
|
+ :check-style="{ width: 29 }"
|
|
|
|
+ is-check is-new
|
|
|
|
+ :loading="tableLoading"
|
|
|
|
+ @selection-change="tableSelection"
|
|
|
|
+ >
|
|
<template #archiveNameAi="{ row }">
|
|
<template #archiveNameAi="{ row }">
|
|
<hc-table-input v-model="row.archiveNameAi" class="blue-text" />
|
|
<hc-table-input v-model="row.archiveNameAi" class="blue-text" />
|
|
</template>
|
|
</template>
|
|
@@ -51,15 +59,13 @@ const tableColumn = [
|
|
]
|
|
]
|
|
const tableRef = ref(null)
|
|
const tableRef = ref(null)
|
|
const tableData = ref([
|
|
const tableData = ref([
|
|
- { id: 1, name: '名称1', text: '文本1', color: 'red' },
|
|
|
|
- { id: 2, name: '名称2', text: '文本2', color: 'blue' },
|
|
|
|
- { id: 3, name: '名称3', text: '文本3', color: '无' },
|
|
|
|
|
|
+
|
|
])
|
|
])
|
|
|
|
|
|
//渲染完成
|
|
//渲染完成
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
// getClassIfyList()
|
|
// getClassIfyList()
|
|
- getTableData
|
|
|
|
|
|
+ getTableData()
|
|
|
|
|
|
})
|
|
})
|
|
//搜索表单
|
|
//搜索表单
|