Showing
1 changed file
with
8 additions
and
24 deletions
| ... | @@ -310,39 +310,23 @@ const handleBindJeePay = async () => { | ... | @@ -310,39 +310,23 @@ const handleBindJeePay = async () => { |
| 310 | auth_sign_url: auth_sign_url || '' | 310 | auth_sign_url: auth_sign_url || '' |
| 311 | } | 311 | } |
| 312 | 312 | ||
| 313 | - // 1. 如果返回 auth_complement_url 非空时,需要跳转到补全信息网页 | 313 | + // 1. 如果返回 auth_complement_url 非空时,提示用户接收短信 |
| 314 | if (auth_complement_url) { | 314 | if (auth_complement_url) { |
| 315 | Taro.showModal({ | 315 | Taro.showModal({ |
| 316 | title: '提示', | 316 | title: '提示', |
| 317 | - content: '需要跳转到网页完善签约信息', | 317 | + content: '请注意接收【嘉联支付】的短信,并打开短信里的链接,完成收款协议与实名认证', |
| 318 | - confirmText: '去完善', | 318 | + showCancel: false, |
| 319 | - cancelText: '取消', | 319 | + confirmText: '关闭' |
| 320 | - success: (res) => { | ||
| 321 | - if (res.confirm) { | ||
| 322 | - // 跳转到补全信息网页 | ||
| 323 | - Taro.navigateTo({ | ||
| 324 | - url: `/pages/webview/index?url=${encodeURIComponent(auth_complement_url)}&title=${encodeURIComponent('完善签约信息')}` | ||
| 325 | - }) | ||
| 326 | - } | ||
| 327 | - } | ||
| 328 | }) | 320 | }) |
| 329 | } | 321 | } |
| 330 | 322 | ||
| 331 | - // 2. 如果返回 auth_sign_url 非空时,需要跳转到签约网页 | 323 | + // 2. 如果返回 auth_sign_url 非空时,提示用户接收短信 |
| 332 | if (auth_sign_url) { | 324 | if (auth_sign_url) { |
| 333 | Taro.showModal({ | 325 | Taro.showModal({ |
| 334 | title: '提示', | 326 | title: '提示', |
| 335 | - content: '需要跳转到网页进行签约', | 327 | + content: '请注意接收【嘉联支付】的短信,并打开短信里的链接,完成收款协议与实名认证', |
| 336 | - confirmText: '去签约', | 328 | + showCancel: false, |
| 337 | - cancelText: '取消', | 329 | + confirmText: '关闭' |
| 338 | - success: (res) => { | ||
| 339 | - if (res.confirm) { | ||
| 340 | - // 跳转到签约网页 | ||
| 341 | - Taro.navigateTo({ | ||
| 342 | - url: `/pages/webview/index?url=${encodeURIComponent(auth_sign_url)}&title=${encodeURIComponent('签约确认')}` | ||
| 343 | - }) | ||
| 344 | - } | ||
| 345 | - } | ||
| 346 | }) | 330 | }) |
| 347 | } | 331 | } |
| 348 | 332 | ... | ... |
-
Please register or login to post a comment