Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-08-08 13:46:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
616f654dacf6d2caee0cc15574de4520f0e4a78b
616f654d
1 parent
9e6db1ed
fix(PaymentAgreementModal): 修改支付协议弹窗提示为短信接收提醒
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
24 deletions
src/components/PaymentAgreementModal.vue
src/components/PaymentAgreementModal.vue
View file @
616f654
...
...
@@ -310,39 +310,23 @@ const handleBindJeePay = async () => {
auth_sign_url: auth_sign_url || ''
}
// 1. 如果返回 auth_complement_url 非空时,
需要跳转到补全信息网页
// 1. 如果返回 auth_complement_url 非空时,
提示用户接收短信
if (auth_complement_url) {
Taro.showModal({
title: '提示',
content: '需要跳转到网页完善签约信息',
confirmText: '去完善',
cancelText: '取消',
success: (res) => {
if (res.confirm) {
// 跳转到补全信息网页
Taro.navigateTo({
url: `/pages/webview/index?url=${encodeURIComponent(auth_complement_url)}&title=${encodeURIComponent('完善签约信息')}`
})
}
}
content: '请注意接收【嘉联支付】的短信,并打开短信里的链接,完成收款协议与实名认证',
showCancel: false,
confirmText: '关闭'
})
}
// 2. 如果返回 auth_sign_url 非空时,
需要跳转到签约网页
// 2. 如果返回 auth_sign_url 非空时,
提示用户接收短信
if (auth_sign_url) {
Taro.showModal({
title: '提示',
content: '需要跳转到网页进行签约',
confirmText: '去签约',
cancelText: '取消',
success: (res) => {
if (res.confirm) {
// 跳转到签约网页
Taro.navigateTo({
url: `/pages/webview/index?url=${encodeURIComponent(auth_sign_url)}&title=${encodeURIComponent('签约确认')}`
})
}
}
content: '请注意接收【嘉联支付】的短信,并打开短信里的链接,完成收款协议与实名认证',
showCancel: false,
confirmText: '关闭'
})
}
...
...
Please
register
or
login
to post a comment