Ver código fonte

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

余思翰 10 meses atrás
pai
commit
370a5aa99a

+ 7
- 3
oa-ui/src/views/flowable/form/inProgress/borrowData.vue Ver arquivo

@@ -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: 2024-07-04 11:00:25
5
+ * @LastEditTime: 2024-07-15 16:35:32
6 6
 -->
7 7
 <template>
8 8
   <div class="mt20">
@@ -28,7 +28,7 @@
28 28
       <el-table-column prop="borrowUsage" label="申请类型" width="100">
29 29
         <template slot-scope="scope">
30 30
           <el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
31
-            '项目借款' : '非项目借款' }}</el-tag>
31
+      '项目借款' : '非项目借款' }}</el-tag>
32 32
         </template>
33 33
       </el-table-column>
34 34
       <el-table-column prop="applyAmount" label="申请金额" />
@@ -72,6 +72,10 @@
72 72
         <!-- <el-table-column prop="xmAmount" label="项目部校核金额" /> -->
73 73
         <el-table-column prop="managerAmount" label="分管校核金额" />
74 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 79
       <el-form inline class="mt20">
76 80
         <el-form-item label="申请金额:">
77 81
           {{ clickRow.applyAmount }}
@@ -126,7 +130,7 @@ export default {
126 130
       })
127 131
     },
128 132
     getBorrowDetailData(borrowId) {
129
-      listBorrowDetail({borrowId:borrowId}).then(res => {
133
+      listBorrowDetail({ borrowId: borrowId }).then(res => {
130 134
         if (res.rows.length != 0) {
131 135
           this.detailList = res.rows
132 136
         }

+ 4
- 1
oa-ui/src/views/flowable/form/projectProcess/addproject.vue Ver arquivo

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

Carregando…
Cancelar
Salvar