Browse Source

服务指南和常见问题配置

seimin 2 years ago
parent
commit
f4dfa9a489
2 changed files with 79 additions and 52 deletions
  1. 40 38
      src/views/Login.vue
  2. 39 14
      src/views/indes.vue

+ 40 - 38
src/views/Login.vue

@@ -35,17 +35,17 @@ export default {
35 35
       zhanghao: "",
36 36
       mima: "",
37 37
       requesterLgoinType: "",
38
-      isSSo: true, // 是否单点登录
38
+      isSSo: true // 是否单点登录
39 39
     };
40 40
   },
41 41
   components: {
42
-    LoadIng,
42
+    LoadIng
43 43
   },
44 44
   methods: {
45 45
     // 登陆
46 46
     login() {
47 47
       var that = this;
48
-      that.$http.post("service/auth/wechatAuth", {}).then((res) => {
48
+      that.$http.post("service/auth/wechatAuth", {}).then(res => {
49 49
         if (res.data.url) {
50 50
           window.location.href = res.data.url;
51 51
         } else {
@@ -67,10 +67,10 @@ export default {
67 67
         that.login();
68 68
       } else {
69 69
         var code = {
70
-          code: url[1],
70
+          code: url[1]
71 71
           // name: "微信报修"
72 72
         };
73
-        that.$http.post("service/auth/wechatLoginEncrypt", code).then((res) => {
73
+        that.$http.post("service/auth/wechatLoginEncrypt", code).then(res => {
74 74
           if (res.data.state == 200) {
75 75
             if (res.data.user) {
76 76
               localStorage.setItem(
@@ -84,7 +84,7 @@ export default {
84 84
               .$createDialog({
85 85
                 type: "alert",
86 86
                 title: "您的账号被删除,请联系管理员",
87
-                icon: "cubeic-alert",
87
+                icon: "cubeic-alert"
88 88
               })
89 89
               .show();
90 90
           } else {
@@ -92,7 +92,7 @@ export default {
92 92
               .$createDialog({
93 93
                 type: "alert",
94 94
                 title: res.data.remarks,
95
-                icon: "cubeic-alert",
95
+                icon: "cubeic-alert"
96 96
               })
97 97
               .show();
98 98
           }
@@ -105,34 +105,33 @@ export default {
105 105
       this.$http
106 106
         .post("service/sysinfo/data/fetchDataList/systemConfiguration", {
107 107
           idx: 0,
108
-          sum: 1000,
108
+          sum: 1000
109 109
         })
110
-        .then((result) => {
110
+        .then(result => {
111 111
           if (result.data.status == 200) {
112 112
             let list = result.data.list;
113
-            let repairMain = list.find((v) => v.keyconfig == "repairMain"); //报修主体
114
-            let incidentWithConsumable = list.find(
115
-              (v) => v.keyconfig == "incidentWithConsumable"
116
-            ); //是否绑定耗材
117
-            let wxIncidentWithCmdb = list.find(
118
-              (v) => v.keyconfig == "wxIncidentWithCmdb"
119
-            ); //是否绑定资产
120
-            let reqHasCategory = list.find(
121
-              (v) => v.keyconfig == "reqHasCategory"
122
-            ); //获取是否自动建单
123
-            localStorage.setItem(
124
-              "repairMain",
125
-              JSON.stringify(repairMain)
126
-            );
127
-            localStorage.setItem(
128
-              "incidentWithConsumable",
129
-              incidentWithConsumable.valueconfig
130
-            );
131
-            localStorage.setItem(
132
-              "wxIncidentWithCmdb",
133
-              wxIncidentWithCmdb.valueconfig
134
-            );
135
-            localStorage.setItem("reqHasCategory", JSON.stringify(reqHasCategory));
113
+            list.forEach(v => {
114
+              switch (v.keyconfig) {
115
+                case "repairMain": //报修主体
116
+                  localStorage.setItem("repairMain", JSON.stringify(v));
117
+                  break;
118
+                case "incidentWithConsumable": //是否绑定耗材
119
+                  localStorage.setItem("incidentWithConsumable", v.valueconfig);
120
+                  break;
121
+                case "wxIncidentWithCmdb": //是否绑定资产
122
+                  localStorage.setItem("wxIncidentWithCmdb", v.valueconfig);
123
+                  break;
124
+                case "reqHasCategory": //获取是否自动建单
125
+                  localStorage.setItem("reqHasCategory", v);
126
+                  break;
127
+                case "wxBxQuestions": //微信报修常见问题链接
128
+                  localStorage.setItem("wxBxQuestions", v.valueconfig);
129
+                  break;
130
+                case "wxGuide": //微信报修服务指南链接
131
+                  localStorage.setItem("wxGuide", v.valueconfig);
132
+                  break;
133
+              }
134
+            });
136 135
             this.$router.push({ path: "/main" });
137 136
           }
138 137
         });
@@ -140,7 +139,7 @@ export default {
140 139
     },
141 140
     // 获取报修人登录方式
142 141
     getLoginType() {
143
-      this.$http.post("service/wechat/getLoginType", {}).then((result) => {
142
+      this.$http.post("service/wechat/getLoginType", {}).then(result => {
144 143
         if (result.data.status == 200) {
145 144
           this.requesterLgoinType = result.data.data;
146 145
           window.localStorage.setItem(
@@ -162,14 +161,17 @@ export default {
162 161
       var ssoStr = "";
163 162
       var ssoJson;
164 163
       if (this.isSSo) {
165
-        ssoStr = location.search.replace("?", "").split("&")[0].split("=")[1];
164
+        ssoStr = location.search
165
+          .replace("?", "")
166
+          .split("&")[0]
167
+          .split("=")[1];
166 168
         ssoStr = decode(decodeURIComponent(ssoStr));
167 169
         ssoJson = JSON.parse(ssoStr);
168 170
       }
169 171
       var postData = this.isSSo
170 172
         ? { username: ssoJson.a, password: ssoJson.r, t: false }
171 173
         : { username: this.zhanghao, password: this.mima };
172
-      this.$http.post("service/auth/reqlogin", postData).then((res) => {
174
+      this.$http.post("service/auth/reqlogin", postData).then(res => {
173 175
         that.loading = false;
174 176
         if (res.data && res.data.state == 200) {
175 177
           localStorage.setItem(
@@ -194,7 +196,7 @@ export default {
194 196
               title: "系统错误",
195 197
               content: "请稍后再试",
196 198
               icon: "cubeic-wrong",
197
-              color: "red",
199
+              color: "red"
198 200
             })
199 201
             .show();
200 202
         }
@@ -208,7 +210,7 @@ export default {
208 210
         return unescape(r[2]);
209 211
       }
210 212
       return null;
211
-    },
213
+    }
212 214
   },
213 215
   created() {
214 216
     localStorage.clear();
@@ -221,7 +223,7 @@ export default {
221 223
       this.zlogin();
222 224
     }
223 225
     this.getLoginType();
224
-  },
226
+  }
225 227
 };
226 228
 </script>
227 229
 

+ 39 - 14
src/views/indes.vue

@@ -6,7 +6,15 @@
6 6
         <i class="iconfont icon-xinjian"></i>
7 7
         <span>快速报修</span>
8 8
       </div>
9
-      <div @click="toCheckNumber()" v-if="loginUser.account === 'ITIL_test2'||loginUser.account === 'Z0003865'||loginUser.account === 'wangyaxiang'||loginUser.account === 'Z0004571'">
9
+      <div
10
+        @click="toCheckNumber()"
11
+        v-if="
12
+          loginUser.account === 'ITIL_test2' ||
13
+            loginUser.account === 'Z0003865' ||
14
+            loginUser.account === 'wangyaxiang' ||
15
+            loginUser.account === 'Z0004571'
16
+        "
17
+      >
10 18
         <i class="dash dash-chahao"></i>
11 19
         <span>电话查号</span>
12 20
       </div>
@@ -14,18 +22,30 @@
14 22
         <i class="dash dash-xiugaimima"></i>
15 23
         <span>修改密码</span>
16 24
       </div>
17
-      <div @click="toKnowList()">
25
+      <div @click="toKnowList()" v-if="wxBxQuestions == 0">
18 26
         <i class="iconfont icon-message"></i>
19 27
         <span>常见问题</span>
20 28
       </div>
29
+      <div v-if="wxBxQuestions != 0 && wxBxQuestions != -1">
30
+        <a :href="wxBxQuestions">
31
+          <i class="iconfont icon-message"></i>
32
+          <span>常见问题</span>
33
+        </a>
34
+      </div>
21 35
       <div @click.prevent="scan()" v-if="wxIncidentWithCmdb == 1">
22 36
         <i class="dash dash-saoyisao"></i>
23 37
         <span>扫一扫</span>
24 38
       </div>
25
-      <!-- <div @click="toGuide()">
26
-                <i class="iconfont icon-fuwuzhinan"></i>
27
-                <span>服务指南</span>
28
-            </div> -->
39
+      <div @click="toGuide()" v-if="wxGuide == 0">
40
+        <i class="iconfont icon-fuwuzhinan"></i>
41
+        <span>服务指南</span>
42
+      </div>
43
+      <div v-if="wxGuide != 0 && wxGuide != -1">
44
+        <a :href="wxGuide">
45
+          <i class="iconfont icon-fuwuzhinan"></i>
46
+          <span>服务指南</span>
47
+        </a>
48
+      </div>
29 49
     </div>
30 50
     <div class="bigBody">
31 51
       <!-- 最新报修 -->
@@ -194,9 +214,11 @@ import { SM } from "./../http/http";
194 214
 export default {
195 215
   data() {
196 216
     return {
217
+      wxBxQuestions: localStorage.getItem("wxBxQuestions"), //微信报修常见问题链接
218
+      wxGuide: localStorage.getItem("wxGuide"), //微信报修服务指南链接
197 219
       loginUser: JSON.parse(localStorage.getItem("loginUser")),
198
-      incidentWithConsumable: localStorage.getItem("incidentWithConsumable"),//是否绑定耗材
199
-      wxIncidentWithCmdb: localStorage.getItem("wxIncidentWithCmdb"),//是否绑定资产
220
+      incidentWithConsumable: localStorage.getItem("incidentWithConsumable"), //是否绑定耗材
221
+      wxIncidentWithCmdb: localStorage.getItem("wxIncidentWithCmdb"), //是否绑定资产
200 222
       noticeData: "", //公告列表
201 223
       newRapirData: "", //最新报修
202 224
       state: "", //流程状态
@@ -207,10 +229,10 @@ export default {
207 229
     };
208 230
   },
209 231
   methods: {
210
-    scan(){
211
-      SM(this).then((ress1) => {
212
-        this.$router.push({name:'Repair',params:{data:ress1}});
213
-      })
232
+    scan() {
233
+      SM(this).then(ress1 => {
234
+        this.$router.push({ name: "Repair", params: { data: ress1 } });
235
+      });
214 236
     },
215 237
     // 获取公告列表数据
216 238
     getNoticData() {
@@ -251,7 +273,10 @@ export default {
251 273
               new Date(that.newRapirData[0].createTime),
252 274
               "MM-dd hh:mm"
253 275
             );
254
-            if (that.newRapirData[0].state.name == "未受理" || that.newRapirData[0].state.name == "未受理") {
276
+            if (
277
+              that.newRapirData[0].state.name == "未受理" ||
278
+              that.newRapirData[0].state.name == "未受理"
279
+            ) {
255 280
               that.state = 1;
256 281
             } else if (that.newRapirData[0].state.name == "已受理") {
257 282
               that.state = 2;
@@ -281,7 +306,7 @@ export default {
281 306
         });
282 307
     },
283 308
     toRapir() {
284
-      this.$router.push({name:'Repair',params:{data:''}});
309
+      this.$router.push({ name: "Repair", params: { data: "" } });
285 310
     },
286 311
     toNoticeDetails(data) {
287 312
       this.$router.push({