From 23f1bf22c42a904c05cee63e10c9fd8b60dfe8f5 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: 星期二, 20 九月 2022 14:54:56 +0800
Subject: [PATCH] Default Changelist

---
 src/views/intellectInspect/inspectRecordManage/inspectRecord/components/inspectRecordDialog.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/views/intellectInspect/inspectRecordManage/inspectRecord/components/inspectRecordDialog.vue b/src/views/intellectInspect/inspectRecordManage/inspectRecord/components/inspectRecordDialog.vue
index 5838e2a..4aec32f 100644
--- a/src/views/intellectInspect/inspectRecordManage/inspectRecord/components/inspectRecordDialog.vue
+++ b/src/views/intellectInspect/inspectRecordManage/inspectRecord/components/inspectRecordDialog.vue
@@ -38,7 +38,7 @@
                     <el-tabs class="active" v-model="activeName">
                         <el-tab-pane label="巡检链" name="inspectChain">
                             <el-table :data="inspectTaskForm.points" fit style="width: 100%">
-                                <el-table-column type="index" label="序号"/>
+                                <el-table-column type="index" label="序号" />
                                 <el-table-column prop="point" label="巡检点" show-overflow-tooltip align="center"></el-table-column>
                                 <el-table-column prop="region" label="所属设备" show-overflow-tooltip align="center"></el-table-column>
                                 <el-table-column prop="rfid" label="RFID" show-overflow-tooltip align="center"></el-table-column>
@@ -80,7 +80,7 @@
 </template>
 
 <script lang="ts">
-import { reactive, toRefs, ref } from 'vue';
+import { reactive, toRefs, ref, defineAsyncComponent } from 'vue';
 import { RFIDApi } from '/@/api/intellectInspectSystem/RFID';
 import { ElMessage } from 'element-plus/es';
 import { inspectTaskApi } from '/@/api/intellectInspectSystem/inspectTask';
@@ -155,6 +155,9 @@
 }
 export default {
     name: 'inspectTaskDialog',
+    components: {
+        SumData: defineAsyncComponent(() => import('/@/views/intellectInspect/inspectIndex/components/sum.vue'))
+    },
     setup(props: any, context: any) {
         const inspectTaskFormRef = ref();
         const data = reactive<dataState>({

--
Gitblit v1.9.2