|
@@ -55,7 +55,7 @@ Vue.filter('dateFormat', (dataStr) => {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -66,13 +66,23 @@ Vue.filter('dateFormat', (dataStr) => {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+let overallExample = new Vue({
|
|
|
+ el: '#app',
|
|
|
+ router,
|
|
|
+ store: store,
|
|
|
+ components: { App },
|
|
|
+ template: '<App/>',
|
|
|
+
|
|
|
+})
|
|
|
+
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
if (to.matched.some(record => record.meta.needLogin)) {
|
|
|
|
|
|
- if (!localStorage.getItem('userId')) {
|
|
|
+ if (!localStorage.getItem('userId')) {
|
|
|
next('/login')
|
|
|
} else if (!localStorage.getItem('openid')) {
|
|
|
- this.getOpenid()
|
|
|
+ overallExample.getOpenid()
|
|
|
} else {
|
|
|
next()
|
|
|
}
|
|
@@ -81,10 +91,4 @@ router.beforeEach((to, from, next) => {
|
|
|
}
|
|
|
})
|
|
|
|
|
|
-new Vue({
|
|
|
- el: '#app',
|
|
|
- router,
|
|
|
- store: store,
|
|
|
- components: { App },
|
|
|
- template: '<App/>'
|
|
|
-})
|
|
|
+
|