chenrui  пре 3 година
родитељ
комит
c42d5e5837

+ 8 - 9
src/main.js

@@ -26,7 +26,6 @@ import { getCodeToken } from "./utilts/auth";
 
 
 
-
 // router.beforeEach((to, from, next) => {
 //    console.log(to)
 //   let username = JSON.parse(sessionStorage.getItem('userData'))
@@ -63,14 +62,6 @@ Vue.use(store)
 Vue.use(toptitle_)
 Vue.use(mixin)
 /* eslint-disable no-new */
-new Vue({
-  el: '#app',
-  router,
-  store,
-  components: { App },
-  template: '<App/>'
-})
-
 // router.beforeEach((to, from, next) => {
 //   if (to.meta.requireAuth) {
 //     if (getCodeToken()) {
@@ -82,3 +73,11 @@ new Vue({
 //     next()
 //   }
 // })
+new Vue({
+  el: '#app',
+  router,
+  store,
+  components: { App },
+  template: '<App/>'
+})
+

+ 4 - 2
src/pages/Common/home.vue

@@ -821,7 +821,7 @@ export default {
         },
       ],
       filter_by_state: null,
-      mapurl: "",
+      mapurl: "https://v.qq.com/",
     };
   },
   computed: {
@@ -840,6 +840,9 @@ export default {
   components: {
     OrdersInfo,
   },
+  created() {
+    this.getmapurl();
+  },
   mounted() {
     clearInterval(this.sj);
     this.TemplateOrderList();
@@ -852,7 +855,6 @@ export default {
       that.Getorder();
       that.getbuttonstats();
       that.alarmList();
-      that.getmapurl();
     }, 3000);
   },
   beforeRouteLeave(to, from, next) {

+ 7 - 6
src/pages/ReportStatistics/index.vue

@@ -351,8 +351,8 @@ export default {
       let arr = new Date(new Date(new Date().toLocaleDateString()).getTime()); //今日0时日期
       this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", arr);
       this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", date);
-      this.dateMan[0] = this.reqData.begin;
-      this.dateMan[1] = this.reqData.end;
+      // this.dateMan[0] = this.reqData.begin;
+      // this.dateMan[1] = this.reqData.end;
       this.getData();
     },
     getWeeks() {
@@ -370,8 +370,8 @@ export default {
         " 00:00:00";
       this.reqData.begin = begin;
       this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", new Date());
-      this.dateMan[0] = this.reqData.begin;
-      this.dateMan[1] = this.reqData.end;
+      // this.dateMan[0] = this.reqData.begin;
+      // this.dateMan[1] = this.reqData.end;
       this.getData();
     },
     getMonths() {
@@ -384,14 +384,15 @@ export default {
       var monthStartDate = new Date(nowYear, nowMonth, 1);
       this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", monthStartDate);
       this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", now);
-      this.dateMan[0] = this.reqData.begin;
-      this.dateMan[1] = this.reqData.end;
+      // this.dateMan[0] = this.reqData.begin;
+      // this.dateMan[1] = this.reqData.end;
       this.getData();
     },
     serachDate() {
       //日期范围查询
       this.reqData.begin = Format("yyyy-MM-dd hh:mm:ss", this.dateMan[0]);
       this.reqData.end = Format("yyyy-MM-dd hh:mm:ss", this.dateMan[1]);
+      debugger;
       this.getData();
     },
     goTo() {

+ 1 - 0
src/pages/login.vue

@@ -163,6 +163,7 @@ export default {
 
       Home(loginData).then((res) => {
         if (res.resultCode == 0) {
+          this.$store.dispatch("userIdData", 123);
           setCodeToken(res.token);
           this.$router.push({ path: "/admin" });
         } else {

+ 3 - 2
src/store/getters.js

@@ -1,4 +1,5 @@
-let getters={
-  login:state => state.login.userData//调取登录的用户信息
+let getters = {
+  login: state => state.login.userData,//调取登录的用户信息,
+  userId: state => state.login.userId//调取登录的用户信息
 }
 export default getters

+ 10 - 3
src/store/login/index.js

@@ -1,16 +1,23 @@
 
 let login = {
     state: {
-        userData:{}//用户登录状态
+        userId: null,
+        userData: {}//用户登录状态
     },
     mutations: {
-        MsetUserData (state, list) {
+        MsetUserData(state, list) {
             state.userData = list
+        },
+        userIdList(state, userId) {
+            state.userId = userId
         }
     },
     actions: {
-        AsetUserData ({ commit }, list) {
+        AsetUserData({ commit }, list) {
             commit('MsetUserData', list)
+        },
+        userIdData({ commit }, data) {
+            commit('userIdList', data)
         }
     }
 }