Commit bbe13f6f by 周志凯

fix: no day

1 parent 15ccffde
......@@ -209,7 +209,7 @@
</template>
<script>
const analyasisTime = ["day", "month", "year", "custom"].map(item => ({
const analyasisTime = ["month", "year", "custom"].map(item => ({
label: item,
value: item
}));
......@@ -235,7 +235,7 @@ export default {
tabItem: [],
asisLevel: "mall",
analyasisTime,
ReportVal: "day",
ReportVal: "month",
dayTime: "",
monthTime: "",
yearTime: "",
......@@ -297,7 +297,7 @@ export default {
: false;
this.getFloorOpt(id);
this.asisLevel = "mall";
this.ReportVal = "day";
this.ReportVal = "month";
let data = {
asis_level: this.asisLevel,
asis_date: this.ReportVal,
......@@ -393,7 +393,7 @@ export default {
},
resetRefresh() {
this.asisLevel = "mall";
this.ReportVal = "day";
this.ReportVal = "month";
this.mutiMallVal = [this.mallData[0].id];
this.dayTime = dateUnit.dateFormat(new Date(), 'yyyy-MM-dd');
this.monthTime = new Date(); // 月时间
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!