jiangping
2023-10-17 4e7e747d2a594b9f68d2d45b90bebc401d77724e
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,