删除部分manager不用的图片,压缩图片大小,修改统计时测出的bug

This commit is contained in:
lemon橪
2021-09-02 11:17:11 +08:00
parent 71e4c49c3e
commit 7f46528086
37 changed files with 56 additions and 100 deletions

View File

@@ -112,8 +112,16 @@ export default {
item.storeId = this.storeId;
this.month = "";
if (item.searchType == "") {
item.searchType = "LAST_SEVEN";
if (item.searchType == "") {
if (
dateList.some((date) => {
return date.title == item.title;
})
) {
item.searchType = date.searchType;
} else {
item.searchType = "LAST_SEVEN";
}
}
this.selectedWay = item;