MrShi
2023-10-17 3452e25c5312f986cdfe2431c67ca5358c4ffc61
bicycle/utils/http.interceptor.js
@@ -13,6 +13,13 @@
   
   // 响应拦截器
   uni.$u.http.interceptors.response.use((response) => {
      console.log(response.data.code)
      if (response.data.code === 5113) {
         uni.navigateTo({
            url: '/pages/login/login'
         });
         return
      }
      if (response.data.code !== 200) {
         uni.showToast({
            title: response.data.message,