This commit is contained in:
李远 2026-03-19 18:59:29 +08:00
parent 5410afabd2
commit 43906865b7
1 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<el-button type="danger" @click="handleEnable">启用</el-button> <el-button type="danger" @click="handleEnable">启用</el-button>
<el-button type="danger" @click="handleDisable">禁用</el-button> <el-button type="danger" @click="handleDisable">禁用</el-button>
</div> </div>
<DepositChannelTable :table-data="tableTree" :columns="tableColumnsOptions" row-key="id" ref="tableRef"></DepositChannelTable> <DepositChannelTable :table-data="tableTree" :columns="tableColumnsOptions" row-key="id"/>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@ -15,7 +15,6 @@ import { tableColumns } from './options'
// //
const tableRef = ref()
const tableColumnsOptions = ref(tableColumns) const tableColumnsOptions = ref(tableColumns)
const tableTree = ref([]) const tableTree = ref([])
</script> </script>