-
-
+
+
@@ -216,11 +217,18 @@ const functions = [
link: '/goods/create'
},
{
- name: '店铺装修',
- icon: Icons.functions.decorate,
- color: '#f15858',
- link: '/page/index'
+ name: '数据统计',
+ icon: Icons.functions.statistics,
+ color: '#139dff',
+ link: '/statistics',
+ moduleKey: 'statistics-statistics'
},
+ // {
+ // name: '店铺装修',
+ // icon: Icons.functions.decorate,
+ // color: '#f15858',
+ // link: '/page/index'
+ // },
{
name: '会员管理',
icon: Icons.functions.user,
@@ -252,13 +260,6 @@ const functions = [
color: '#f15858',
link: '/market/coupon/index',
moduleKey: 'app-coupon'
- },
- {
- name: '数据统计',
- icon: Icons.functions.statistics,
- color: '#139dff',
- link: '/statistics',
- moduleKey: 'statistics-statistics'
}
]
@@ -309,12 +310,29 @@ export default {
// 正在提交
isLoading: false,
// 首页数据
- data
+ data,
+ timer: null,
+ storeVersion: window.localStorage.getItem('storeInfo') ? JSON.parse(window.localStorage.getItem('storeInfo')).store_version : 0
}
},
created () {
// 获取首页数据
this.getData()
+ if (!window.localStorage.getItem('storeInfo')) {
+ this.timer = setInterval(() => {
+ if (window.localStorage.getItem('storeInfo')) {
+ this.storeVersion = JSON.parse(window.localStorage.getItem('storeInfo')).store_version
+ window.clearInterval(this.timer)
+ this.timer = null
+ }
+ }, 100)
+ }
+ },
+ beforeDestroy() {
+ if (this.timer) {
+ window.clearInterval(this.timer)
+ this.timer = null
+ }
},
methods: {