From 59744b9fdbe915442f1a4f828bbc884b9baf63cc Mon Sep 17 00:00:00 2001 From: zhujiyan <17812234322@163.com> Date: Tue, 10 Sep 2024 16:26:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=BE=E5=A4=87=E7=99=BB?= =?UTF-8?q?=E8=AE=B0=E5=88=97=E8=A1=A8=E5=8A=A0=E8=BD=BD=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/govern/manage/factory.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/govern/manage/factory.vue b/src/views/govern/manage/factory.vue index 80ea0a5..56f9a87 100644 --- a/src/views/govern/manage/factory.vue +++ b/src/views/govern/manage/factory.vue @@ -191,7 +191,6 @@ queryByCode('Device_Type').then(res => { } }) }) - tableStore.index() }) const devModelOptionsFilter = computed(() => { return devModelOptions.value.filter((item: any) => { @@ -215,7 +214,7 @@ const tableStore = new TableStore({ url: '/cs-device-boot/EquipmentDelivery/list', method: 'POST', column: [ - { title: '序号', type: 'seq',width:60 }, + { title: '序号', type: 'seq', width: 60 }, { title: '设备名称', field: 'name' }, { title: '设备类型', @@ -570,7 +569,7 @@ provide('tableStore', tableStore) onMounted(() => { setTimeout(() => { - // tableStore.index() + tableStore.index() }, 100) })