From 738f76adfcbf102dfbf890b044ba9a25a034cb8c Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期三, 27 三月 2024 16:17:38 +0800
Subject: [PATCH] 1、用户管理页面修改身份字段名称为首页权限并调整其选项值 2、按照新需求完成客户操作工进入后页面所有布局100% 3、调整全局页脚内容

---
 src/views/eam/DailyInspectionStandardList.vue |   41 +++++++++++++++++++++++++++++++++++++++--
 1 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/src/views/eam/DailyInspectionStandardList.vue b/src/views/eam/DailyInspectionStandardList.vue
index afc6879..70a8850 100644
--- a/src/views/eam/DailyInspectionStandardList.vue
+++ b/src/views/eam/DailyInspectionStandardList.vue
@@ -137,6 +137,24 @@
         :customRow='clickThenSelect'
         @change='handleTableChange'
       >
+        <span
+          slot="disUda1"
+          slot-scope="text"
+        >
+          <j-ellipsis
+            :value="text"
+            :length="10"
+          />
+        </span>
+        <span
+          slot="teamName"
+          slot-scope="text"
+        >
+          <j-ellipsis
+            :value="text"
+            :length="10"
+          />
+        </span>
 
         <!-- <span
           slot='action'
@@ -249,11 +267,13 @@
 import DailylnspectionStandardModal from './modules/dailyInspectionStandard/DailylnspectionStandardModal'
 import AuditApprovalModal from './modules/dailyInspectionStandard/AuditApprovalModal'
 import '@/assets/less/TableExpand.less'
+import JEllipsis from "@/components/jeecg/JEllipsis";
 
 export default {
   name: 'DailyInspectionStandardList',
   mixins: [JeecgListMixin],
   components: {
+    JEllipsis,
     DailyInspectionStandardDetail,
     DailylnspectionStandardModal,
     AuditApprovalModal
@@ -276,6 +296,12 @@
           title: '鏍囧噯缂栫爜',
           align: 'center',
           dataIndex: 'num',
+        },
+        {
+          title: '绠$悊鍒跺害',
+          align: 'center',
+          dataIndex: 'disUda1',
+          scopedSlots: { customRender: 'disUda1' },
         },
         {
           title: '绛惧鐘舵��',
@@ -307,6 +333,7 @@
           title: '璐d换鐝粍',
           align: 'center',
           dataIndex: 'teamName',
+          scopedSlots: { customRender: 'teamName' },
         },
         // {
         //   title: '娲惧伐鏂瑰紡',
@@ -314,9 +341,19 @@
         //   dataIndex: 'assignModeName',
         // },
         {
+          title: '瀹℃牳缁撴灉',
+          align: 'center',
+          dataIndex: 'disUda2',
+        },
+        {
           title: '瀹℃牳鎰忚',
           align: 'center',
           dataIndex: 'auditFeedback',
+        },
+        {
+          title: '瀹℃壒缁撴灉',
+          align: 'center',
+          dataIndex: 'disUda3',
         },
         {
           title: '瀹℃壒鎰忚',
@@ -409,8 +446,8 @@
       /* 鍒嗛〉鍙傛暟 */
       ipagination: {
         current: 1,
-        pageSize: 5,
-        pageSizeOptions: ['5', '10', '50'],
+        pageSize: 20,
+        pageSizeOptions: ['5', '10', '20', '50'],
         showTotal: (total, range) => {
           return range[0] + '-' + range[1] + ' 鍏�' + total + '鏉�'
         },

--
Gitblit v1.9.3