Переглянути джерело

网页端:修改项目台账表格显示宽度,让借款和成果汇交对齐

余思翰 1 тиждень тому
джерело
коміт
71b0a5e6ba

+ 9
- 9
oa-ui/src/views/flowable/form/inProgress/achiData.vue Переглянути файл

@@ -11,31 +11,31 @@
11 11
 
12 12
     <el-table :data="achiList" style="width: 100%" class="custom-table">
13 13
       <el-table-column type="index" label="序号" width="50" />
14
-      <el-table-column label="成果提交时间" prop="submitTime" width="100" />
15
-      <el-table-column label="生产部门检查员" prop="produceInspector" width="120">
14
+      <el-table-column label="成果提交时间" prop="submitTime" width="110" />
15
+      <el-table-column label="生产部门检查员" prop="produceInspector" width="110">
16 16
         <template slot-scope="scope">
17 17
           {{ findUserName(scope.row.produceInspector) }}
18 18
         </template>
19 19
       </el-table-column>
20
-      <el-table-column label="质量检查员" prop="qualityInspector" show-overflow-tooltip width="120">
20
+      <el-table-column label="质量检查员" prop="qualityInspector" show-overflow-tooltip width="110">
21 21
         <template slot-scope="scope">
22 22
           {{ findUserName(scope.row.qualityInspector) }}
23 23
         </template>
24 24
       </el-table-column>
25
-      <el-table-column label="技术质量与安全部负责人" prop="deptLeader" show-overflow-tooltip width="120">
25
+      <el-table-column label="技术质量与安全部负责人" prop="deptLeader" show-overflow-tooltip width="110">
26 26
         <template slot-scope="scope">
27 27
           {{ findUserName(scope.row.deptLeader) }}
28 28
         </template>
29 29
       </el-table-column>
30
-      <el-table-column label="归档人" prop="archiver" show-overflow-tooltip width="120">
30
+      <el-table-column label="归档人" prop="archiver" show-overflow-tooltip width="110">
31 31
         <template slot-scope="scope">
32 32
           {{ findUserName(scope.row.archiver) }}
33 33
         </template>
34 34
       </el-table-column>
35
-      <el-table-column label="资料接受时间" prop="receiveTime" show-overflow-tooltip width="120" />
36
-      <el-table-column label="质量检查时间" prop="qualityTime" show-overflow-tooltip width="120" />
37
-      <el-table-column label="生产部门检查时间" prop="produceTime" show-overflow-tooltip width="130" />
38
-      <el-table-column label="归档时间" prop="archiveTime" show-overflow-tooltip width="120" />
35
+      <el-table-column label="资料接受时间" prop="receiveTime" show-overflow-tooltip width="110" />
36
+      <el-table-column label="质量检查时间" prop="qualityTime" show-overflow-tooltip width="110" />
37
+      <el-table-column label="生产部门检查时间" prop="produceTime" show-overflow-tooltip width="110" />
38
+      <el-table-column label="归档时间" prop="archiveTime" show-overflow-tooltip width="110" />
39 39
       <!-- <el-table-column label="生产部门意见" prop="produceComment" show-overflow-tooltip width="120" />
40 40
       <el-table-column label="质量检查意见" prop="qualityComment" show-overflow-tooltip width="120" />
41 41
       <el-table-column label="技术质量与安全部审核意见" prop="deptComment" show-overflow-tooltip width="120" />

+ 11
- 11
oa-ui/src/views/flowable/form/inProgress/borrowData.vue Переглянути файл

@@ -2,7 +2,7 @@
2 2
  * @Author: ysh
3 3
  * @Date: 2024-05-10 14:45:08
4 4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2025-02-25 16:51:16
5
+ * @LastEditTime: 2026-03-26 16:34:59
6 6
 -->
7 7
 <template>
8 8
   <div class="mt20">
@@ -18,44 +18,44 @@
18 18
 
19 19
     <el-table :data="borrowList" style="width: 100%">
20 20
       <el-table-column type="index" label="序号" width="50" />
21
-      <el-table-column label="申请状态" width="100">
21
+      <el-table-column label="申请状态" width="110">
22 22
         <template slot-scope="scope">
23 23
           <el-tag :type="scope.row.lendTime == null ? 'warning' : 'success'">
24 24
             {{ scope.row.lendTime == null ? '审批中' : '已完成' }}
25 25
           </el-tag>
26 26
         </template>
27 27
       </el-table-column>
28
-      <el-table-column prop="borrowUsage" label="申请类型" width="100">
28
+      <el-table-column prop="borrowUsage" label="申请类型" width="110">
29 29
         <template slot-scope="scope">
30 30
           <el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
31 31
             '项目借款' : '非项目借款' }}</el-tag>
32 32
         </template>
33 33
       </el-table-column>
34
-      <el-table-column prop="applyAmount" label="申请金额" />
35
-      <el-table-column prop="managerAmount" label="核准金额" />
36
-      <el-table-column prop="applierUser.nickName" label="申请人" />
34
+      <el-table-column prop="applyAmount" label="申请金额" width="110" />
35
+      <el-table-column prop="managerAmount" label="核准金额"  width="110"/>
36
+      <el-table-column prop="applierUser.nickName" label="申请人"  width="110"/>
37 37
       <el-table-column prop="dept.deptName" label="申请部门" width="110" />
38 38
       <el-table-column prop="applyDate" label="申请时间" width="110" />
39
-      <el-table-column prop="deptComment" label="部门审核意见" show-overflow-tooltip width="100">
39
+      <el-table-column prop="deptComment" label="部门审核" show-overflow-tooltip width="110">
40 40
         <template slot-scope="scope">
41 41
           {{ scope.row.deptComment == null ? '待审' : scope.row.deptComment }}
42 42
         </template>
43 43
       </el-table-column>
44
-      <el-table-column prop="managerComment" label="分管审核意见" show-overflow-tooltip width="100">
44
+      <el-table-column prop="managerComment" label="分管审核" show-overflow-tooltip width="110">
45 45
         <template slot-scope="scope">
46 46
           {{ scope.row.managerComment == null ? '待审' : scope.row.managerComment }}
47 47
         </template>
48 48
       </el-table-column>
49
-      <el-table-column prop="zjlComment" label="总经理审核意见" show-overflow-tooltip width="120">
49
+      <el-table-column prop="zjlComment" label="总经理审核" show-overflow-tooltip width="110">
50 50
         <template slot-scope="scope">
51 51
           {{ scope.row.zjlComment == null ? '待审' : scope.row.zjlComment }}
52 52
         </template>
53 53
       </el-table-column>
54
-      <el-table-column prop="cwUser.nickName" label="财务经办人" show-overflow-tooltip width="100">
54
+      <el-table-column prop="cwUser.nickName" label="财务经办人" show-overflow-tooltip width="110">
55 55
       </el-table-column>
56 56
       <el-table-column prop="lendTime" label="支付时间">
57 57
       </el-table-column>
58
-      <el-table-column label="操作" fixed="right" header-align="center">
58
+      <el-table-column label="操作" fixed="right" header-align="center" width="110">
59 59
         <template slot-scope="scope">
60 60
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>
61 61
         </template>

+ 10
- 10
oa-ui/src/views/flowable/form/inProgress/settleData.vue Переглянути файл

@@ -2,7 +2,7 @@
2 2
  * @Author: ysh
3 3
  * @Date: 2024-05-10 14:45:03
4 4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2025-02-25 16:54:25
5
+ * @LastEditTime: 2026-03-26 16:39:47
6 6
 -->
7 7
 <template>
8 8
   <div class="mt20">
@@ -18,15 +18,15 @@
18 18
 
19 19
     <el-table :data="dataList" style="width: 100%" class="custom-table">
20 20
       <el-table-column type="index" label="序号" width="50" />
21
-      <el-table-column label="上报人" prop="reporterName" />
22
-      <el-table-column label="申请时间" prop="reportTime" width="100" />
23
-      <el-table-column label="综合事务部意见" prop="zhComment" show-overflow-tooltip width="120" />
24
-      <el-table-column label="技术质量与安全部意见" prop="jsComment" show-overflow-tooltip width="120" />
25
-      <el-table-column label="项目管理部意见" prop="xmComment" show-overflow-tooltip width="120" />
26
-      <el-table-column label="承担部门意见" prop="deptComment" show-overflow-tooltip width="120" />
27
-      <el-table-column label="经营管理部意见" prop="jyComment" show-overflow-tooltip width="120" />
28
-      <el-table-column label="分管审核意见" prop="managerComment" show-overflow-tooltip width="120" />
29
-      <el-table-column label="总经理意见" prop="gmComment" show-overflow-tooltip width="120" />
21
+      <el-table-column label="上报人" prop="reporterName"  width="110"/>
22
+      <el-table-column label="申请时间" prop="reportTime" width="110" />
23
+      <el-table-column label="综合事务部意见" prop="zhComment" show-overflow-tooltip width="110" />
24
+      <el-table-column label="技术质量与安全部意见" prop="jsComment" show-overflow-tooltip width="110" />
25
+      <el-table-column label="项目管理部意见" prop="xmComment" show-overflow-tooltip width="110" />
26
+      <el-table-column label="承担部门意见" prop="deptComment" show-overflow-tooltip width="110" />
27
+      <el-table-column label="经营管理部意见" prop="jyComment" show-overflow-tooltip width="110" />
28
+      <el-table-column label="分管审核意见" prop="managerComment" show-overflow-tooltip width="110" />
29
+      <el-table-column label="总经理意见" prop="gmComment" show-overflow-tooltip width="110" />
30 30
       <el-table-column label="操作" fixed="right" header-align="center">
31 31
         <template slot-scope="scope">
32 32
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>

Завантаження…
Відмінити
Зберегти