From e5e9b84b800f1623f85be45a3565689917898c78 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期五, 10 三月 2023 18:12:12 +0800
Subject: [PATCH] Default Changelist

---
 src/views/intellectInspect/inspectBasic/facility/index.vue |   18 ++++--------------
 1 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/src/views/intellectInspect/inspectBasic/facility/index.vue b/src/views/intellectInspect/inspectBasic/facility/index.vue
index d4502f3..e84b57e 100644
--- a/src/views/intellectInspect/inspectBasic/facility/index.vue
+++ b/src/views/intellectInspect/inspectBasic/facility/index.vue
@@ -22,13 +22,14 @@
                     <el-icon>
                         <ele-FolderAdd />
                     </el-icon>
-                    新增巡检指标
+                    新增设备区域
                 </el-button>
             </div>
             <el-table :data="facilityAreaData.data" style="width: 100%">
                 <el-table-column type="index" label="序号" width="60" />
                 <el-table-column prop="region" label="设备区域名称" show-overflow-tooltip></el-table-column>
                 <el-table-column prop="regionType" label="设备区域类型" show-overflow-tooltip></el-table-column>
+                <el-table-column prop="regionDepartment" label="所属部门" show-overflow-tooltip></el-table-column>
                 <el-table-column prop="createByUserName" label="创建人" show-overflow-tooltip></el-table-column>
                 <el-table-column prop="gmtCreate" label="创建时间" show-overflow-tooltip></el-table-column>
                 <el-table-column prop="lastEditUserName" label="最后修改人" show-overflow-tooltip></el-table-column>
@@ -41,19 +42,7 @@
                 </el-table-column>
             </el-table>
             <br />
-            <el-pagination
-                @size-change="onHandleSizeChange"
-                @current-change="onHandleCurrentChange"
-                :pager-count="5"
-                :page-sizes="[10, 20, 30]"
-                v-model:current-page="facilityAreaData.params.pageIndex"
-                background
-                v-model:page-size="facilityAreaData.params.pageSize"
-                layout="total, sizes, prev, pager, next, jumper"
-                :total="facilityAreaData.total"
-                class="page-position"
-            >
-            </el-pagination>
+            <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" :pager-count="5" :page-sizes="[10, 20, 30]" v-model:current-page="facilityAreaData.params.pageIndex" background v-model:page-size="facilityAreaData.params.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="facilityAreaData.total" class="page-position"> </el-pagination>
             <br />
             <br />
         </el-card>
@@ -119,6 +108,7 @@
         });
         // 初始化表格数据
         const initFacilityAreaTableData = async () => {
+            debugger
             let res = await facilityAreaApi().getFacilityAreaList(state.facilityAreaData.params);
             if (res.data.code === '200') {
                 state.facilityAreaData.data = res.data.data.records;

--
Gitblit v1.9.2