瀏覽代碼

首页修改

zhaoke 3 年之前
父節點
當前提交
4f05a33596
共有 4 個文件被更改,包括 59 次插入22 次删除
  1. 1 1
      public/config.js
  2. 二進制
      src/assets/index/log_default.png
  3. 40 16
      src/utils/request.js
  4. 18 5
      src/views/dashboard/index.vue

+ 1 - 1
public/config.js

@@ -1,4 +1,4 @@
 var PLATFROM_CONFIG = {};
-PLATFROM_CONFIG.baseUrl = "https://authgateway.fsjtkj.cn/" // http请求地址
+PLATFROM_CONFIG.baseUrl = "http://106.14.243.117:9001" // http请求地址
 PLATFROM_CONFIG.appSecret = "40t7vcbi5bc1twyihd2dum82yn1mt1kj" //appSecret
 PLATFROM_CONFIG.appId = "unsk1w37910olf8j" //appid

二進制
src/assets/index/log_default.png


+ 40 - 16
src/utils/request.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2022-01-06 09:45:17
- * @LastEditTime: 2022-02-28 22:50:39
+ * @LastEditTime: 2022-03-02 15:03:14
  * @LastEditors: Please set LastEditors
  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  * @FilePath: \vue-admin-template\src\utils\request.js
@@ -74,16 +74,17 @@ service.interceptors.response.use(
       })
 
       // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
-      if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
+      if (res.code == 500) {
         // to re-login
-        MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
-          confirmButtonText: 'Re-Login',
-          cancelButtonText: 'Cancel',
-          type: 'warning'
-        }).then(() => {
-          store.dispatch('user/resetToken').then(() => {
-            location.reload()
-          })
+        Message({
+          message: '身份令牌过期或失效,即将重新登录',
+          type: 'error',
+          duration: 5 * 1000,
+          onClose: () => {
+            store.dispatch('user/resetToken').then(() => {
+              location.reload()
+            })
+          }
         })
       }
       // loadingInstance.close()
@@ -94,12 +95,35 @@ service.interceptors.response.use(
     }
   },
   error => {
-    console.log('err' + error) // for debug
-    Message({
-      message: error.message,
-      type: 'error',
-      duration: 5 * 1000
-    })
+    // console.log('err', error) // for debug
+    const des = `${error}`.split(" ").includes('500')
+    if (des) {
+      Message({
+        message: '身份令牌过期或失效,即将重新登录',
+        type: 'error',
+        duration: 5 * 1000,
+        onClose: () => {
+          store.dispatch('user/resetToken').then(() => {
+            location.reload()
+          })
+        }
+      })
+      // MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
+      //   confirmButtonText: 'Re-Login',
+      //   cancelButtonText: 'Cancel',
+      //   type: 'warning'
+      // }).then(() => {
+      //   store.dispatch('user/resetToken').then(() => {
+      //     location.reload()
+      //   })
+      // })
+    } else {
+      Message({
+        message: error.message,
+        type: 'error',
+        duration: 5 * 1000
+      })
+    }
     // loadingInstance.close()
     return Promise.reject(error)
   }

+ 18 - 5
src/views/dashboard/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-10-14 17:17:53
- * @LastEditTime: 2022-03-02 11:56:47
+ * @LastEditTime: 2022-03-02 14:35:53
  * @LastEditors: Please set LastEditors
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\views\dashboard\index.vue
@@ -10,12 +10,17 @@
   <div class="dashboard">
     <!--分类信息-->
     <div class="flex-wrap tu-fl">
-      <router-link v-for="(item,index) in flList" :key="index" class="flex fl-list" :to="item.appUrl ? item.appUrl:'/'">
+      <div v-for="(item,index) in flList" :key="index" @click="toApp(item)" class="flex fl-list">
         <div class="fl-list-img">
-          <img :src="item.logo">
+          <template v-if="item.logo">
+            <img :alt="item.appName" :src="item.logo">
+          </template>
+          <template v-else>
+            <img src="../../assets/index/log_default.png" :alt="item.appName">
+          </template>
         </div>
         <div class="fl-list-title flex1">{{item.appName}}</div>
-      </router-link>
+      </div>
     </div>
     <!--切换和搜索-->
     <div class="dashboard-tab flex">
@@ -179,11 +184,17 @@ export default {
       }
     },
     handleChange (val) {
-      if (val !== 10) {
+      if (val !== '/systemManagement') {
         this.inputFlag = true
       } else {
         this.inputFlag = false
       }
+    },
+    //应用跳转
+    toApp (item) {
+      if (item.appUrl) {
+        window.open(item.appUrl)
+      }
     }
   }
 }
@@ -213,6 +224,8 @@ export default {
         overflow: hidden;
         img {
           max-width: 100%;
+          width: 100%;
+          height: 100%;
         }
       }
       .fl-list-title {