Browse Source

去掉console

余思翰 5 months ago
parent
commit
ea1614f109

+ 0
- 2
oa-ui/src/views/contractStatistic/components/projectStatistic.vue View File

87
       this.drawerOpen = true;
87
       this.drawerOpen = true;
88
     },
88
     },
89
     closeDrawerFn(){
89
     closeDrawerFn(){
90
-      console.log(1);
91
-      
92
       this.$router.replace({ path: '/statistics/contractStatistic' }); 
90
       this.$router.replace({ path: '/statistics/contractStatistic' }); 
93
     }
91
     }
94
   },
92
   },

+ 1
- 1
oa-ui/src/views/contractStatistic/components/subStatistic.vue View File

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-12-16 10:42:55
3
  * @Date: 2024-12-16 10:42:55
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2024-12-18 15:38:24
5
+ * @LastEditTime: 2024-12-19 16:49:37
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div>
8
   <div>

+ 0
- 1
oa-ui/src/views/contractStatistic/index.vue View File

241
     },
241
     },
242
     getStatistic(contractId) {
242
     getStatistic(contractId) {
243
       getContractStatistic(contractId).then(res => {
243
       getContractStatistic(contractId).then(res => {
244
-        console.log(res);
245
         this.subContractAmount = res.data.subAmount
244
         this.subContractAmount = res.data.subAmount
246
         this.budgetSumAmount = res.data.budgetAmount
245
         this.budgetSumAmount = res.data.budgetAmount
247
         this.borrowSumAmount = res.data.borrowAmount
246
         this.borrowSumAmount = res.data.borrowAmount

+ 1
- 4
oa-ui/src/views/flowable/form/business/contractForm.vue View File

2
  * @Author: ysh
2
  * @Author: ysh
3
  * @Date: 2024-05-10 15:31:57
3
  * @Date: 2024-05-10 15:31:57
4
  * @LastEditors: Please set LastEditors
4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2024-12-10 17:08:05
5
+ * @LastEditTime: 2024-12-19 16:50:23
6
 -->
6
 -->
7
 <template>
7
 <template>
8
   <div class="app-container">
8
   <div class="app-container">
584
       this.form.gmUserId = this.$store.getters.userId;
584
       this.form.gmUserId = this.$store.getters.userId;
585
       this.gmTime = parseTime(new Date(), '{y}-{m}-{d}')
585
       this.gmTime = parseTime(new Date(), '{y}-{m}-{d}')
586
     }
586
     }
587
-    console.log(this.form);
588
-
589
     this.getProjectList();
587
     this.getProjectList();
590
     this.getPartyAList();
588
     this.getPartyAList();
591
     this.getDeptList();
589
     this.getDeptList();
1046
     updateContractData() {
1044
     updateContractData() {
1047
       this.workList = this.$refs.workTableRef.workList;
1045
       this.workList = this.$refs.workTableRef.workList;
1048
       this.paymentList = this.$refs.paymentRef.paymentList;
1046
       this.paymentList = this.$refs.paymentRef.paymentList;
1049
-      console.log(this.form);
1050
       updateContract(this.form).then(response => {
1047
       updateContract(this.form).then(response => {
1051
         this.$modal.msgSuccess("保存成功");
1048
         this.$modal.msgSuccess("保存成功");
1052
         this.open = false;
1049
         this.open = false;

Loading…
Cancel
Save