Browse Source

修改借款管理里,查看预算的显示效果

余思翰 4 days ago
parent
commit
8c8bd1647c
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      oa-ui/src/views/flowable/form/finance/borrowForm.vue

+ 4
- 1
oa-ui/src/views/flowable/form/finance/borrowForm.vue View File

@@ -336,7 +336,10 @@
336 336
       </div>
337 337
     </el-dialog>
338 338
     <el-dialog title="查看预算" :visible.sync="openBudget" width="65%" append-to-body>
339
-      <new-budget-info :taskForm="budgetTaskForm" :taskName="''"></new-budget-info>
339
+      <new-budget-info :taskForm="budgetTaskForm" :taskName="''" v-if="budgetTaskForm.formId"></new-budget-info>
340
+      <div v-else>
341
+        <el-empty description="暂无预算信息" />
342
+      </div>
340 343
     </el-dialog>
341 344
     <el-drawer title="查看历史借款" :visible.sync="openBorrow" direction="rtl" size="35%" append-to-body>
342 345
       <history-borrow :historyBorrowList="historyBorrowList"></history-borrow>

Loading…
Cancel
Save