|
|
@@ -29,7 +29,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<text class="agreement-text">我已阅读并同意</text>
|
|
|
- <text class="agreement-link" @click="handlePrivacy">《隐私协议》</text>
|
|
|
+ <text class="agreement-link" @click="handlePrivacy">《隐私政策》</text>
|
|
|
<text class="agreement-text">和</text>
|
|
|
<text class="agreement-link" @click="handleUserAgreement">《用户协议》</text>
|
|
|
</view>
|
|
|
@@ -76,7 +76,7 @@ const handleClose = () => {
|
|
|
const handleGetPhoneNumber = async (e) => {
|
|
|
if (!agreed.value) {
|
|
|
uni.showToast({
|
|
|
- title: '请先同意用户协议和隐私协议',
|
|
|
+ title: '请先同意用户协议和隐私政策',
|
|
|
icon: 'none'
|
|
|
});
|
|
|
return;
|
|
|
@@ -145,13 +145,13 @@ const handleGetPhoneNumber = async (e) => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-// 处理隐私协议:跳转 webview 打开
|
|
|
+// 处理隐私政策:跳转 webview 打开
|
|
|
const PRIVACY_URL = 'https://ossfile.ailien.shop/privacy/%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE931648.html';
|
|
|
const handlePrivacy = () => {
|
|
|
go(`/pages/webview/index?url=${encodeURIComponent(PRIVACY_URL)}`);
|
|
|
};
|
|
|
|
|
|
-// 处理用户协议:与隐私协议一致,跳转 webview 打开
|
|
|
+// 处理用户协议:与隐私政策一致,跳转 webview 打开
|
|
|
const USER_AGREEMENT_URL = 'https://ossfile.ailien.shop/privacy/U%E5%BA%97%E5%9C%A8%E8%BF%99-%E5%B9%B3%E5%8F%B0%E8%A7%84%E5%88%99456793.htm';
|
|
|
const handleUserAgreement = () => {
|
|
|
go(`/pages/webview/index?url=${encodeURIComponent(USER_AGREEMENT_URL)}`);
|