diff --git a/weapp/src/config.js b/weapp/src/config.js index e9e247b1..329a027e 100644 --- a/weapp/src/config.js +++ b/weapp/src/config.js @@ -1,5 +1,5 @@ let DEV = false; -DEV = true; //使用测试环境 +// DEV = true; //使用测试环境 const baseConfig = { errorHandle: false, //是否启用全局异常处理‌‍‍‌‍​‌‌‍​‌‌‌‌‌​‌‌‍‌​‍‌‌‌‌​‍‍‍‍‌​‌‍‍‌‍​‌‌‍​‍‍‍‌‌​‍‌‌‌‌​‍‌‍‌​‍‌‌‌O @@ -8,20 +8,22 @@ const baseConfig = { }; const development = { - // baseUrl: 'http://221.230.55.29:31919', - baseUrl: 'https://d763-117-90-37-10.ap.ngrok.io', + baseUrl: 'http://221.230.55.29:31919', + // baseUrl: 'https://d763-117-90-37-10.ap.ngrok.io', // webUrl: 'https://smartwater.anxinyun.cn', // pcode: 'fce4afe2-5b6a-408a-ab18-a2afa7fa027c', - imgUrl: 'http://rfkimpwbb.hn-bkt.clouddn.com/', + // imgUrl: 'http://rfkimpwbb.hn-bkt.clouddn.com/', + imgUrl: 'http://resources-test.anxinyun.cn/', // requestCache: true, //开启异步请求缓存 ...baseConfig }; const production = { - baseUrl: 'https://wxapp.free-sun.vip/v1/api', - webUrl: 'http://218.3.150.105:8998', - pcode: 'b3718361-f7db-4058-98a6-071393d0420c', - imgUrl: 'http://test.resources.anxinyun.cn/', + baseUrl: 'https://sihao.anxinyun.cn/_api', + // baseUrl: 'https://d763-117-90-37-10.ap.ngrok.io', + // webUrl: 'https://smartwater.anxinyun.cn', + // pcode: 'fce4afe2-5b6a-408a-ab18-a2afa7fa027c', + imgUrl: 'http://resources.anxinyun.cn/', ...baseConfig }; diff --git a/weapp/src/pages/user/index.jsx b/weapp/src/pages/user/index.jsx index 7108d37e..bc96468d 100644 --- a/weapp/src/pages/user/index.jsx +++ b/weapp/src/pages/user/index.jsx @@ -4,6 +4,7 @@ import { View, Button, Image } from '@tarojs/components'; import { logout } from '@/actions/auth'; import { getLogoutUrl } from '@/services/api'; import cfg from '../../config'; +import { getState } from '../../store/globalState'; import './index.scss'; import headImg from '../../static/img/my/head.png'; import moreImg from '../../static/img/my/more.svg'; @@ -39,8 +40,9 @@ const Index = ({ ...props }) => { title: '提示', content: '确定退出登录吗', success: function (res) { + let token = getState('token') || Taro.getStorageSync('token') if (res.confirm) { - logout(getLogoutUrl()).then(() => { + logout(getLogoutUrl(), { token }).then(() => { Taro.reLaunch({ url: '/pages/auth/login/login' });