|
@@ -117,7 +117,7 @@ export default {
|
117
|
117
|
</div>`;
|
118
|
118
|
},
|
119
|
119
|
businessAnalysisStat(){
|
120
|
|
- let params = this.formInline
|
|
120
|
+ let params = {...this.formInline}
|
121
|
121
|
if (
|
122
|
122
|
this.formInline.time && this.formInline.time.length === 2 &&
|
123
|
123
|
this.formInline.time[1] !== ""
|
|
@@ -133,7 +133,7 @@ export default {
|
133
|
133
|
})
|
134
|
134
|
},
|
135
|
135
|
businessAnalysisStat2(){
|
136
|
|
- let params = this.formInline
|
|
136
|
+ let params = {...this.formInline}
|
137
|
137
|
if (
|
138
|
138
|
this.formInline.time && this.formInline.time.length === 2 &&
|
139
|
139
|
this.formInline.time[1] !== ""
|
|
@@ -149,7 +149,7 @@ export default {
|
149
|
149
|
})
|
150
|
150
|
},
|
151
|
151
|
businessAnalysisStat3(){
|
152
|
|
- let params = this.formInline
|
|
152
|
+ let params = {...this.formInline}
|
153
|
153
|
if (
|
154
|
154
|
this.formInline.time && this.formInline.time.length === 2 &&
|
155
|
155
|
this.formInline.time[1] !== ""
|