From 66dd4ae374bf09c689bdb078c1e7b3522059bfdf Mon Sep 17 00:00:00 2001 From: yangan <yangan0921@163.com> Date: 星期三, 16 十月 2024 17:23:18 +0800 Subject: [PATCH] feat:h5配置 --- api/publicInterface.js | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/api/publicInterface.js b/api/publicInterface.js index 4bc6856..f2eda2d 100644 --- a/api/publicInterface.js +++ b/api/publicInterface.js @@ -5,7 +5,7 @@ import { BaseUrl as wrBaseUrl } from '@/api/request.js' // const BaseUrl = 'http://192.168.0.110:9999' const BaseUrl = 'http://192.168.0.22:9999' -// const BaseUrl = 'https://mx.jzeg.cn:9096' +// const BaseUrl = 'https://mr1.res.jzeg.cn:9096' // const BaseUrl = 'http://192.168.31.17:9999' // const BaseUrl = 'http://192.168.0.100:9999' // const BaseUrl = 'http://192.168.0.108:9999' @@ -72,7 +72,12 @@ uni.showLoading({ title: '鍔犺浇涓�...' }) return new Promise((resolve, reject) => { uni.request({ - url: wrBaseUrl + '/wrzs/wx/bindWx', + // #ifdef H5 + url: '/wrzs/wx/bindWx', + // #endif + // #ifndef H5 + url: wrBaseUrl + '/wrzs/wx/bindWx', + // #endif method: 'POST', data: { phone, @@ -125,7 +130,12 @@ }) { return new Promise((resolve, reject) => { uni.request({ + // #ifdef H5 + url: '/admin/oauth2/token', + // #endif + // #ifndef H5 url: BaseUrl + '/admin/oauth2/token', + // #endif method: 'POST', data: { username, @@ -203,4 +213,4 @@ apiRegister, apiLoginPassword, BaseUrl -} \ No newline at end of file +} -- Gitblit v1.9.1