|
@@ -30,6 +30,10 @@
|
|
mapGetters,
|
|
mapGetters,
|
|
mapMutations
|
|
mapMutations
|
|
} from 'vuex'
|
|
} from 'vuex'
|
|
|
|
+ import {
|
|
|
|
+ currentTimeStamp,
|
|
|
|
+ parseUnixTime
|
|
|
|
+ } from '$project/utils'
|
|
import Amap from '$project/components/Amap.vue'
|
|
import Amap from '$project/components/Amap.vue'
|
|
export default {
|
|
export default {
|
|
name: 'MasterHealthChartMap',
|
|
name: 'MasterHealthChartMap',
|
|
@@ -48,7 +52,7 @@
|
|
|
|
|
|
listForm: {
|
|
listForm: {
|
|
//names: this.$route.query.type,
|
|
//names: this.$route.query.type,
|
|
- day: '2020-10-17'
|
|
|
|
|
|
+ day: ''
|
|
},
|
|
},
|
|
|
|
|
|
typeList: '',
|
|
typeList: '',
|
|
@@ -62,6 +66,7 @@
|
|
} else {
|
|
} else {
|
|
this.pageTitle = '活动轨迹';
|
|
this.pageTitle = '活动轨迹';
|
|
}
|
|
}
|
|
|
|
+ this.listForm.day = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}');
|
|
this.typeList = ['lbs'];
|
|
this.typeList = ['lbs'];
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|