ll
liukangdong
2024-08-29 1382a7990e9b13f60c6416ada5477673a934dd16
h5/utils/service.js
@@ -2,7 +2,7 @@
export const http = function (options) {
   {
      return new Promise((resolve, reject) => {
         let token = uni.getStorageSync('token')
         let token = uni.getStorageSync('token') || ''
         // 在登录的时候需要储存 token uni.setStorageSync("authorization","这里是登录获取的token值")
         // uni.showLoading({
@@ -18,7 +18,7 @@
            method: options.method || 'GET',
            header: options.header || {
               // 根据实际接口设计 key 取 token 或者 authorization
               token: token,
               dm_user_token: token,
               "content-type": 'application/json'
            },
            success: (res) => {
@@ -26,16 +26,20 @@
               // 控制台显示数据信息
               uni.hideLoading()
               // 登录过期
               if (data.code === 401) {
                  uni.navigateTo({
                     url: '/packageA/loginAgain/loginAgain'
                  })
               }
               if (data.code !== 200) {
                  uni.showToast({
                     title: data.message,
                     icon: "none",
                     duration: 2000
                  setTimeout(() => {
                     uni.showToast({
                        title: data.message,
                        icon: "none",
                        duration: 2000
                     })
                  })
                  return
               }
               if (data.code === 5112) {
                  uni.clearStorageSync()
                  return uni.navigateTo({
                     url: '/pages/login/login'
                  })
               }
               resolve(data)
@@ -46,6 +50,7 @@
               uni.showToast({
                  title: '请求接口失败'
               })
               // 返回错误消息
               reject(err)
               uni.hideLoading()