Selaa lähdekoodia

在项目详情里查看借款明细中新增借款人说明,项目登记时选择合同直接获取甲方单位

余思翰 10 kuukautta sitten
vanhempi
commit
370a5aa99a

+ 7
- 3
oa-ui/src/views/flowable/form/inProgress/borrowData.vue Näytä tiedosto

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: 2024-07-04 11:00:25
5
+ * @LastEditTime: 2024-07-15 16:35:32
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="mt20">
8
   <div class="mt20">
28
       <el-table-column prop="borrowUsage" label="申请类型" width="100">
28
       <el-table-column prop="borrowUsage" label="申请类型" width="100">
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="申请金额" />
34
       <el-table-column prop="applyAmount" label="申请金额" />
72
         <!-- <el-table-column prop="xmAmount" label="项目部校核金额" /> -->
72
         <!-- <el-table-column prop="xmAmount" label="项目部校核金额" /> -->
73
         <el-table-column prop="managerAmount" label="分管校核金额" />
73
         <el-table-column prop="managerAmount" label="分管校核金额" />
74
       </el-table>
74
       </el-table>
75
+      <div class="mt20" style="display:flex;">
76
+        <div style="width:120px"><b>借款人说明:</b></div>
77
+        <div>{{ clickRow.remark }}</div>
78
+      </div>
75
       <el-form inline class="mt20">
79
       <el-form inline class="mt20">
76
         <el-form-item label="申请金额:">
80
         <el-form-item label="申请金额:">
77
           {{ clickRow.applyAmount }}
81
           {{ clickRow.applyAmount }}
126
       })
130
       })
127
     },
131
     },
128
     getBorrowDetailData(borrowId) {
132
     getBorrowDetailData(borrowId) {
129
-      listBorrowDetail({borrowId:borrowId}).then(res => {
133
+      listBorrowDetail({ borrowId: borrowId }).then(res => {
130
         if (res.rows.length != 0) {
134
         if (res.rows.length != 0) {
131
           this.detailList = res.rows
135
           this.detailList = res.rows
132
         }
136
         }

+ 4
- 1
oa-ui/src/views/flowable/form/projectProcess/addproject.vue Näytä tiedosto

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-03-18 11:00:04
3
  * @Date: 2024-03-18 11:00:04
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2024-07-09 14:41:48
5
+ * @LastEditTime: 2024-07-15 15:42:43
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="project-wrapper">
8
   <div class="project-wrapper">
242
     },
242
     },
243
     setContract(val) {
243
     setContract(val) {
244
       this.chooseContractInfo = val;
244
       this.chooseContractInfo = val;
245
+      if(val.partyAId){
246
+        this.addForm.partyAId = val.partyAId
247
+      }
245
       this.openContract = false;
248
       this.openContract = false;
246
     },
249
     },
247
     // 暂存
250
     // 暂存

Loading…
Peruuta
Tallenna