Quellcode durchsuchen

修改整体统计中合同统计按日期范围选择

余思翰 vor 3 Monaten
Ursprung
Commit
3082995f8b

+ 2
- 1
oa-ui/src/views/flowable/form/work/declareForm.vue Datei anzeigen

@@ -2,7 +2,7 @@
2 2
  * @Author: ysh
3 3
  * @Date: 2024-08-16 09:16:36
4 4
  * @LastEditors: Please set LastEditors
5
- * @LastEditTime: 2024-10-21 16:10:50
5
+ * @LastEditTime: 2025-02-17 14:11:13
6 6
 -->
7 7
 <template>
8 8
   <div>
@@ -253,6 +253,7 @@ export default {
253 253
               this.form.formId = this.taskForm.formId;
254 254
               addDeclare(this.form);
255 255
             }
256
+            console.log(this.taskForm);
256 257
             const params = { taskId: this.taskForm.taskId };
257 258
             getNextFlowNode(params).then(() => {
258 259
               this.handleComplete(this.taskForm);

+ 448
- 328
oa-ui/src/views/statistics/components/contractStatistics.vue
Datei-Diff unterdrückt, da er zu groß ist
Datei anzeigen


+ 4
- 4
oa-ui/src/views/statistics/components/topHead.vue Datei anzeigen

@@ -226,10 +226,10 @@ export default {
226 226
         this.getProjectYearSub(this.year);
227 227
       }
228 228
       if (Object.keys(this.cDatas).length !== 0) {
229
-        this.contractAmount = this.cDatas.amount[0];
230
-        this.contractCwAmount = this.cDatas.cwAmount[0];
231
-        this.contractSource = this.cDatas.source[0];
232
-        this.contractYear = this.cDatas.year[0];
229
+        this.contractAmount = this.cDatas.yearAmount[0];
230
+        this.contractCwAmount = this.cDatas.sourceAmount[0];
231
+        this.contractSource = this.cDatas.sourceCount[0];
232
+        this.contractYear = this.cDatas.yearCount[0];
233 233
         this.getContractYearSub(this.contractYear);
234 234
       }
235 235
       if (Object.keys(this.dDatas).length !== 0) {

Laden…
Abbrechen
Speichern