Browse Source

修改项目预算显示条数的限制

余思翰 10 months ago
parent
commit
61bb31d849
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      oa-ui/src/views/flowable/form/budget/budgetInfo.vue

+ 5
- 5
oa-ui/src/views/flowable/form/budget/budgetInfo.vue View File

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-04-03 16:28:09
3
  * @Date: 2024-04-03 16:28:09
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2024-07-16 16:18:22
5
+ * @LastEditTime: 2024-08-01 10:11:59
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="main">
8
   <div class="main">
384
         this.budgetForm = res.rows[0];
384
         this.budgetForm = res.rows[0];
385
         this.setSignName();
385
         this.setSignName();
386
         if (this.budgetForm) {
386
         if (this.budgetForm) {
387
-          listBudgetDevice({ budgetId: this.budgetForm.budgetId }).then(res => {
387
+          listBudgetDevice({ pageSize:100, budgetId: this.budgetForm.budgetId }).then(res => {
388
             this.chooseDevice = res.rows;
388
             this.chooseDevice = res.rows;
389
             this.deviceLen = res.rows.length + 1;
389
             this.deviceLen = res.rows.length + 1;
390
           })
390
           })
391
-          listBudgetStaff({ budgetId: this.budgetForm.budgetId }).then(res => {
391
+          listBudgetStaff({ pageSize:100, budgetId: this.budgetForm.budgetId }).then(res => {
392
             this.chooseUser = res.rows;
392
             this.chooseUser = res.rows;
393
             this.userLen = res.rows.length + 1;
393
             this.userLen = res.rows.length + 1;
394
             let days = 0;
394
             let days = 0;
397
             }
397
             }
398
             this.budgetForm.inOutPriceSum = Number(days) * Number(this.chooseUser[0].inOutPrice)
398
             this.budgetForm.inOutPriceSum = Number(days) * Number(this.chooseUser[0].inOutPrice)
399
           })
399
           })
400
-          listBudgetCar({ budgetId: this.budgetForm.budgetId }).then(res => {
400
+          listBudgetCar({  pageSize:100,budgetId: this.budgetForm.budgetId }).then(res => {
401
             this.chooseCar = res.rows;
401
             this.chooseCar = res.rows;
402
             this.carLen = res.rows.length + 1;
402
             this.carLen = res.rows.length + 1;
403
           })
403
           })
404
-          listBudgetSettle({ budgetId: this.budgetForm.budgetId }).then(res => {
404
+          listBudgetSettle({  pageSize:100,budgetId: this.budgetForm.budgetId }).then(res => {
405
             this.workList = res.rows;
405
             this.workList = res.rows;
406
             this.workLen = res.rows.length;
406
             this.workLen = res.rows.length;
407
 
407
 

Loading…
Cancel
Save