|
@@ -51,7 +51,7 @@
|
|
|
<template v-if="isFormSet">
|
|
|
<div class="body-top">
|
|
|
<hc-card title="节点信息">
|
|
|
- <hc-table is-new :is-index="false" :column="nodeTableColumn" :datas="nodeTableData">
|
|
|
+ <hc-table :is-index="false" :column="nodeTableColumn" :datas="nodeTableData">
|
|
|
<template #nodeType="{ row }">{{ getDictionaryName(nodeTypelist, row.nodeType, true) }}</template>
|
|
|
</hc-table>
|
|
|
</hc-card>
|
|
@@ -62,7 +62,7 @@
|
|
|
<el-button hc-btn type="primary" :disabled="infoTableData.length <= 0">编辑</el-button>
|
|
|
<el-button hc-btn type="success" :disabled="infoTableData.length <= 0">排序</el-button>
|
|
|
</template>
|
|
|
- <hc-table v-loading="infoTableLoading" is-new :is-index="false" :column="infoTableColumn" :datas="infoTableData">
|
|
|
+ <hc-table v-loading="infoTableLoading" :is-index="false" :column="infoTableColumn" :datas="infoTableData">
|
|
|
<template #tableType="{ row }">{{ getDictionaryName(tableTypelist, row.tableType, true) }}</template>
|
|
|
<template #tableOwner="{ row }">{{ getDictionaryName(ownerTypeList, row.tableOwner, true) }}</template>
|
|
|
<template #action="{ row }">
|
|
@@ -77,7 +77,7 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<hc-card>
|
|
|
- <hc-table v-loading="infoTableLoading" is-new :is-index="false" :column="infoTableColumn1" :datas="infoTableData">
|
|
|
+ <hc-table v-loading="infoTableLoading" :is-index="false" :column="infoTableColumn1" :datas="infoTableData">
|
|
|
<template #tableType="{ row }">{{ getDictionaryName(tableTypelist, row.tableType, true) }}</template>
|
|
|
<template #isLinkTable="{ row }">{{ row.isLinkTable === 2 ? '是' : '否' }}</template>
|
|
|
<template #tableOwner="{ row }">{{ getDictionaryName(ownerTypeList, row.tableOwner, true) }}</template>
|