|
@@ -47,10 +47,7 @@
|
47
|
47
|
<script>
|
48
|
48
|
import { dateFormat } from "@/utils";
|
49
|
49
|
import { exportToExcel } from "@/utils/exportToExcel";
|
50
|
|
-import {
|
51
|
|
- logAppDown_list_install,
|
52
|
|
- logAppDown_list_install_all
|
53
|
|
-} from "@/api/log";
|
|
50
|
+import { logAppInstall_list, logAppInstall_list_all } from "@/api/log";
|
54
|
51
|
export default {
|
55
|
52
|
data() {
|
56
|
53
|
return {
|
|
@@ -156,13 +153,9 @@ export default {
|
156
|
153
|
_begindate = _begindate ? dateFormat(_begindate, "yyyy-MM-dd") : null;
|
157
|
154
|
let _enddate = this.searchForm.dataRange[1];
|
158
|
155
|
_enddate = _enddate ? dateFormat(_enddate, "yyyy-MM-dd") : null;
|
159
|
|
- let _regionids = this.$store.state.userPower.regionids;
|
160
|
|
- _regionids = [..._regionids];
|
161
|
|
- logAppDown_list_install({
|
|
156
|
+ logAppInstall_list({
|
162
|
157
|
rtype: this.powerParams.rtype,
|
163
|
158
|
objectid: this.powerParams.objectid,
|
164
|
|
- regionid: _regionids.pop(),
|
165
|
|
- schoolid: this.powerParams.objectid,
|
166
|
159
|
page: this.searchForm.page,
|
167
|
160
|
size: this.searchForm.size,
|
168
|
161
|
begindate: _begindate,
|
|
@@ -182,13 +175,9 @@ export default {
|
182
|
175
|
_begindate = _begindate ? dateFormat(_begindate, "yyyy-MM-dd") : null;
|
183
|
176
|
let _enddate = this.searchForm.dataRange[1];
|
184
|
177
|
_enddate = _enddate ? dateFormat(_enddate, "yyyy-MM-dd") : null;
|
185
|
|
- let _regionids = this.$store.state.userPower.regionids;
|
186
|
|
- _regionids = [..._regionids];
|
187
|
|
- logAppDown_list_install_all({
|
|
178
|
+ logAppInstall_list_all({
|
188
|
179
|
rtype: this.powerParams.rtype,
|
189
|
180
|
objectid: this.powerParams.objectid,
|
190
|
|
- regionid: _regionids.pop(),
|
191
|
|
- schoolid: this.powerParams.objectid,
|
192
|
181
|
begindate: _begindate,
|
193
|
182
|
enddate: _enddate,
|
194
|
183
|
name: this.searchForm.name
|