Просмотр исходного кода

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

余思翰 1 неделю назад
Родитель
Сommit
71b0a5e6ba

+ 9
- 9
oa-ui/src/views/flowable/form/inProgress/achiData.vue Просмотреть файл

11
 
11
 
12
     <el-table :data="achiList" style="width: 100%" class="custom-table">
12
     <el-table :data="achiList" style="width: 100%" class="custom-table">
13
       <el-table-column type="index" label="序号" width="50" />
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
         <template slot-scope="scope">
16
         <template slot-scope="scope">
17
           {{ findUserName(scope.row.produceInspector) }}
17
           {{ findUserName(scope.row.produceInspector) }}
18
         </template>
18
         </template>
19
       </el-table-column>
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
         <template slot-scope="scope">
21
         <template slot-scope="scope">
22
           {{ findUserName(scope.row.qualityInspector) }}
22
           {{ findUserName(scope.row.qualityInspector) }}
23
         </template>
23
         </template>
24
       </el-table-column>
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
         <template slot-scope="scope">
26
         <template slot-scope="scope">
27
           {{ findUserName(scope.row.deptLeader) }}
27
           {{ findUserName(scope.row.deptLeader) }}
28
         </template>
28
         </template>
29
       </el-table-column>
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
         <template slot-scope="scope">
31
         <template slot-scope="scope">
32
           {{ findUserName(scope.row.archiver) }}
32
           {{ findUserName(scope.row.archiver) }}
33
         </template>
33
         </template>
34
       </el-table-column>
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
       <!-- <el-table-column label="生产部门意见" prop="produceComment" show-overflow-tooltip width="120" />
39
       <!-- <el-table-column label="生产部门意见" prop="produceComment" show-overflow-tooltip width="120" />
40
       <el-table-column label="质量检查意见" prop="qualityComment" show-overflow-tooltip width="120" />
40
       <el-table-column label="质量检查意见" prop="qualityComment" show-overflow-tooltip width="120" />
41
       <el-table-column label="技术质量与安全部审核意见" prop="deptComment" show-overflow-tooltip width="120" />
41
       <el-table-column label="技术质量与安全部审核意见" prop="deptComment" show-overflow-tooltip width="120" />

+ 11
- 11
oa-ui/src/views/flowable/form/inProgress/borrowData.vue Просмотреть файл

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-05-10 14:45:08
3
  * @Date: 2024-05-10 14:45:08
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2025-02-25 16:51:16
5
+ * @LastEditTime: 2026-03-26 16:34:59
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="mt20">
8
   <div class="mt20">
18
 
18
 
19
     <el-table :data="borrowList" style="width: 100%">
19
     <el-table :data="borrowList" style="width: 100%">
20
       <el-table-column type="index" label="序号" width="50" />
20
       <el-table-column type="index" label="序号" width="50" />
21
-      <el-table-column label="申请状态" width="100">
21
+      <el-table-column label="申请状态" width="110">
22
         <template slot-scope="scope">
22
         <template slot-scope="scope">
23
           <el-tag :type="scope.row.lendTime == null ? 'warning' : 'success'">
23
           <el-tag :type="scope.row.lendTime == null ? 'warning' : 'success'">
24
             {{ scope.row.lendTime == null ? '审批中' : '已完成' }}
24
             {{ scope.row.lendTime == null ? '审批中' : '已完成' }}
25
           </el-tag>
25
           </el-tag>
26
         </template>
26
         </template>
27
       </el-table-column>
27
       </el-table-column>
28
-      <el-table-column prop="borrowUsage" label="申请类型" width="100">
28
+      <el-table-column prop="borrowUsage" label="申请类型" width="110">
29
         <template slot-scope="scope">
29
         <template slot-scope="scope">
30
           <el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
30
           <el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
31
             '项目借款' : '非项目借款' }}</el-tag>
31
             '项目借款' : '非项目借款' }}</el-tag>
32
         </template>
32
         </template>
33
       </el-table-column>
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
       <el-table-column prop="dept.deptName" label="申请部门" width="110" />
37
       <el-table-column prop="dept.deptName" label="申请部门" width="110" />
38
       <el-table-column prop="applyDate" label="申请时间" width="110" />
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
         <template slot-scope="scope">
40
         <template slot-scope="scope">
41
           {{ scope.row.deptComment == null ? '待审' : scope.row.deptComment }}
41
           {{ scope.row.deptComment == null ? '待审' : scope.row.deptComment }}
42
         </template>
42
         </template>
43
       </el-table-column>
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
         <template slot-scope="scope">
45
         <template slot-scope="scope">
46
           {{ scope.row.managerComment == null ? '待审' : scope.row.managerComment }}
46
           {{ scope.row.managerComment == null ? '待审' : scope.row.managerComment }}
47
         </template>
47
         </template>
48
       </el-table-column>
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
         <template slot-scope="scope">
50
         <template slot-scope="scope">
51
           {{ scope.row.zjlComment == null ? '待审' : scope.row.zjlComment }}
51
           {{ scope.row.zjlComment == null ? '待审' : scope.row.zjlComment }}
52
         </template>
52
         </template>
53
       </el-table-column>
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
       </el-table-column>
55
       </el-table-column>
56
       <el-table-column prop="lendTime" label="支付时间">
56
       <el-table-column prop="lendTime" label="支付时间">
57
       </el-table-column>
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
         <template slot-scope="scope">
59
         <template slot-scope="scope">
60
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>
60
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>
61
         </template>
61
         </template>

+ 10
- 10
oa-ui/src/views/flowable/form/inProgress/settleData.vue Просмотреть файл

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-05-10 14:45:03
3
  * @Date: 2024-05-10 14:45:03
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2025-02-25 16:54:25
5
+ * @LastEditTime: 2026-03-26 16:39:47
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="mt20">
8
   <div class="mt20">
18
 
18
 
19
     <el-table :data="dataList" style="width: 100%" class="custom-table">
19
     <el-table :data="dataList" style="width: 100%" class="custom-table">
20
       <el-table-column type="index" label="序号" width="50" />
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
       <el-table-column label="操作" fixed="right" header-align="center">
30
       <el-table-column label="操作" fixed="right" header-align="center">
31
         <template slot-scope="scope">
31
         <template slot-scope="scope">
32
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>
32
           <el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>

Загрузка…
Отмена
Сохранить