| 1234567891011121314151617181920212223242526 |
- /**
- * 网络请求相关的全局配置
- */
- export const requestConfig = {
- // BaseUrl: 'https://app.sxdirectpurchase.com/api/',
- /**接口请求地址 */
- // BaseUrl: 'http://192.168.3.97:9001/api/',
- BaseUrl: 'https://app.sxdirectpurchase.com/api/',
- /**授权回调地址 */
- // 授权后重定向的回调链接地址, 请使用 urlEncode 对链接进行处理
- // redirect_uri: "http%3A%2F%2Fne.sxdirectpurchase.com%2F%23%2Fpages%2Findex%2Fpay",
- /*本地测试地址*/
- redirect_uri: "https://ne.sxdirectpurchase.com/#/pages/index/pay",
- // redirect_uri: "http://192.168.3.183:81/#/pages/index/pay",
- redirectOpen: "https://ne.sxdirectpurchase.com/#/pages/index/paySuccess",
- /**公众号信息 */
- appid: "wxad190b75af42ac7e",
- appsecret: "934a264458f4de42c5ccbe611d212587",
- /**测试公众号*/
- // appid: "wx0fbc26e298b0d9b9",
- // appsecret: "b24e3b109d6de1f019c4141d34a56781",
- }
|