From 8dae74070e63cec1b2627a71f1f2d0e8dffc0e6a Mon Sep 17 00:00:00 2001 From: dminyi <1301963064@qq.com> Date: Sun, 08 Sep 2024 11:26:34 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh into master --- gz-wxparty/utils/util.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gz-wxparty/utils/util.js b/gz-wxparty/utils/util.js index ff41e3d..492cb22 100644 --- a/gz-wxparty/utils/util.js +++ b/gz-wxparty/utils/util.js @@ -50,7 +50,7 @@ let baseUrl = isDebug ? api.url.debug : api.url.web; - let visitUrl = `${baseUrl}${api.url[service] || ''}/api/${v1 ? 'v1' : 'weChat'}/${url}`; + let visitUrl = `${baseUrl}${api.url[service] || ''}/api/${v1 ? 'v1' : 'wechat'}/${url}`; return new Promise((resolve, reject) => { wx.request({ @@ -234,7 +234,7 @@ return wx.showModal({ content: content, showCancel: showCancel, - confirmColor: '#d10202', + confirmColor: '#1A6FB8', title: title, cancelText: cancelText, confirmText: confirmText, @@ -434,7 +434,7 @@ return false; } let realStatus = wx.getStorageSync('userInfo')?.realStatus; - if (realStatus !== '1' && (type === 'realName' || type === 'all')) { + if (realStatus !== 1 && (type === 'realName' || type === 'all')) { if (direction !== 'bottom') { showModal({ content: '检测到您未进行实名认证,该操作需先进行实名认证,是否前往认证?', -- Gitblit v1.8.0