居民群

This commit is contained in:
shijingjing
2022-07-15 13:52:11 +08:00
parent f2dd80a018
commit b9f1bee17b
2 changed files with 77 additions and 34 deletions

View File

@@ -247,6 +247,8 @@ export default {
departId: "",
startTime: "",
endTime: "",
start: "",
end: "",
showStart: false,
showEnd: false,
resX: [],
@@ -281,7 +283,8 @@ export default {
checkTime(index) {
if (index == 3) {
this.timeSelect = index;
this.customShow = true;
this.customShow = true;
this.showStart = false;
this.showEnd = false;
} else {
@@ -300,18 +303,18 @@ export default {
this.departId = "";
},
// selectConfirm() {
// if (this.timeSelect == 3) {
// this.timeType = this.timeSelect;
// this.startTime = this.start;
// this.endTime = this.end;
// this.getBrokenDate();
// } else {
// this.timeType = this.timeSelect;
// this.getBrokenDate();
// }
// this.filterShow = false;
// },
selectConfirm() {
if (this.timeSelect == 3) {
this.timeType = this.timeSelect;
this.start = this.startTime;
this.end = this.endTime;
this.getBrokenDate();
} else {
this.timeType = this.timeSelect;
this.getBrokenDate();
}
this.filterShow = false;
},
confirmStart(val) {
this.startTime = val.year + '-' + val.month + '-' + val.day
@@ -321,8 +324,8 @@ export default {
},
handleTime() {
this.startTime = this.start;
this.endTime = this.end;
this.start = this.startTime
this.end = this.endTime
this.customShow = false;
},
@@ -352,8 +355,8 @@ export default {
.post(`/app/appmasssendingtask/statisticsEffect`, null, {
params: {
type: this.timeSelect,
startTime: this.startTime,
endTime: this.endTime,
startTime: this.start,
endTime: this.end,
// departId: this.departId
},
})