|
@@ -187,9 +187,6 @@
|
|
|
<div class="hc-table-h">
|
|
|
<HcTable ui="hc-table-row-drop" :column="sortTableColumn" :datas="sortTableData"
|
|
|
:loading="sortTableLoading" isRowDrop @row-drop="sortTableRowDrop">
|
|
|
- <template #key2="{row}">
|
|
|
- <span class="text-link">{{ row?.key2 }}</span>
|
|
|
- </template>
|
|
|
<template #action="{index}">
|
|
|
<span class="text-link text-xl" @click="upSortClick(index)">
|
|
|
<HcIcon name="arrow-up" fill/>
|
|
@@ -606,7 +603,7 @@ const setsortTableColumn = () => {
|
|
|
} else if (sortType.value === 2) {
|
|
|
sortTableColumn.value = [
|
|
|
{key: 'fileNumber', name: '文件编号', width: 160},
|
|
|
- {key: 'name', name: '文件名称'},
|
|
|
+ {key: 'fileName', name: '文件名称'},
|
|
|
{key: 'action', name: '排序', width: 90},
|
|
|
]
|
|
|
}
|