Przeglądaj źródła

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

余思翰 10 miesięcy temu
rodzic
commit
61bb31d849

+ 5
- 5
oa-ui/src/views/flowable/form/budget/budgetInfo.vue Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz