添加协议链接
This commit is contained in:
@@ -5,9 +5,9 @@
|
|||||||
"versionName" : "1.0.1",
|
"versionName" : "1.0.1",
|
||||||
"versionCode" : 105,
|
"versionCode" : 105,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
"uniCloud": {
|
"uniCloud" : {
|
||||||
"provider": "aliyun",
|
"provider" : "aliyun",
|
||||||
"spaceId": "mp-2d1912d1-5d25-47a9-a4c5-2669573cd0c2"
|
"spaceId" : "mp-2d1912d1-5d25-47a9-a4c5-2669573cd0c2"
|
||||||
},
|
},
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
@@ -184,6 +184,17 @@
|
|||||||
"icons" : {
|
"icons" : {
|
||||||
"foreground" : "unpackage/res/icons/logo-app.png",
|
"foreground" : "unpackage/res/icons/logo-app.png",
|
||||||
"background" : "unpackage/res/icons/background.png"
|
"background" : "unpackage/res/icons/background.png"
|
||||||
|
},
|
||||||
|
"signingConfigs" : {
|
||||||
|
"release" : {
|
||||||
|
"certpath" : "D:/物业app-ios-harmony-证书/new_harmony/新花开物业正式.cer",
|
||||||
|
"keyAlias" : "wuye_release",
|
||||||
|
"keyPassword" : "0000001A9E0C0113E4B700C047F1BE0C671C25CDEE277F48C5706A9799B0FCC3804E17FD7C52B089C710",
|
||||||
|
"profile" : "D:/物业app-ios-harmony-证书/new_harmony/yonghu_profileRelease.p7b",
|
||||||
|
"signAlg" : "SHA256withECDSA",
|
||||||
|
"storeFile" : "D:/物业app-ios-harmony-证书/new_harmony/huakaiwuye.p12",
|
||||||
|
"storePassword" : "0000001AD76C6FA365F39AF1BEB3ED5A58612AF310FFE4240FC31CB6020C301DEFA1D1F0F8EFF141511E"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,7 +59,8 @@ import { onLoad } from '@dcloudio/uni-app';
|
|||||||
import { addActivityLive, signinActivityLive, uploadFile } from '../api/api.js';
|
import { addActivityLive, signinActivityLive, uploadFile } from '../api/api.js';
|
||||||
|
|
||||||
// 高德地图 Web API Key(用于逆地址解析,需要去 https://lbs.amap.com 申请免费 Key)
|
// 高德地图 Web API Key(用于逆地址解析,需要去 https://lbs.amap.com 申请免费 Key)
|
||||||
const AMAP_KEY = 'f362f595be12ab7d84bd502b48b30d2a';
|
const AMAP_KEY = '38cd7fb803c600a58c5a13e644feab34';
|
||||||
|
// const AMAP_KEY = 'f362f595be12ab7d84bd502b48b30d2a';
|
||||||
|
|
||||||
// 活动ID
|
// 活动ID
|
||||||
const activityId = ref('');
|
const activityId = ref('');
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ let baseUrl = '';
|
|||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
baseUrl = 'http://192.168.1.222:8080'; // 开发环境
|
baseUrl = 'http://192.168.1.222:8080'; // 开发环境
|
||||||
} else {
|
} else {
|
||||||
baseUrl = 'http://192.168.0.224:8080'; // 生产环境
|
baseUrl = 'https://wuyeapi.bugtc.com'; // 生产环境
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function request(url, data = {}, method = "GET") {
|
export default function request(url, data = {}, method = "GET") {
|
||||||
|
|||||||
@@ -56,11 +56,11 @@
|
|||||||
v-else
|
v-else
|
||||||
></uni-icons>
|
></uni-icons>
|
||||||
</view>
|
</view>
|
||||||
<text class="agreement-text" >
|
<text class="agreement-text" >我已阅读并同意
|
||||||
我已阅读并同意
|
<text class="agreePrivacy" @click.stop="goToUserAgreement">《用户协议》</text>和
|
||||||
<text class="agreePrivacy">《用户协议》</text>和
|
<text class="agreePrivacy" @click.stop="goToPrivacy">《隐私政策》</text>
|
||||||
<text @click.stop="goToPrivacy" class="agreePrivacy">《隐私政策》</text>
|
|
||||||
</text>
|
</text>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 登录按钮 -->
|
<!-- 登录按钮 -->
|
||||||
@@ -128,13 +128,25 @@ const checkForm = () => {
|
|||||||
const toggleAgreement = () => {
|
const toggleAgreement = () => {
|
||||||
agreeAgreement.value = !agreeAgreement.value;
|
agreeAgreement.value = !agreeAgreement.value;
|
||||||
};
|
};
|
||||||
// 跳转隐私协议
|
// 打开用户协议
|
||||||
const goToPrivacy = () => {
|
const goToUserAgreement = () => {
|
||||||
uni.navigateTo({
|
// #ifdef APP-PLUS
|
||||||
url:'/pageSubPack/loginSub/privacy',
|
plus.runtime.openURL('https://wuye.ckdzkj.com/parivw/ownler_xieyi.html')
|
||||||
})
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
window.open('https://wuye.ckdzkj.com/parivw/ownler_xieyi.html')
|
||||||
|
// #endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 打开隐私政策
|
||||||
|
const goToPrivacy = () => {
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
plus.runtime.openURL('https://wuye.ckdzkj.com/parivw/owner.html')
|
||||||
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
window.open('https://wuye.ckdzkj.com/parivw/owner.html')
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
// 打开隐私弹窗
|
// 打开隐私弹窗
|
||||||
const openPrivacyPopup = (action) => {
|
const openPrivacyPopup = (action) => {
|
||||||
pendingAction.value = action || ''
|
pendingAction.value = action || ''
|
||||||
|
|||||||
@@ -72,7 +72,7 @@
|
|||||||
class="agreePrivacy">《用户隐私政策》</text></text> -->
|
class="agreePrivacy">《用户隐私政策》</text></text> -->
|
||||||
|
|
||||||
<text class="agreement-text" >我已阅读并同意
|
<text class="agreement-text" >我已阅读并同意
|
||||||
<text class="agreePrivacy" @click.stop="">《用户协议》</text>和
|
<text class="agreePrivacy" @click.stop="goToUserAgreement">《用户协议》</text>和
|
||||||
<text class="agreePrivacy" @click.stop="goToPrivacy">《隐私政策》</text>
|
<text class="agreePrivacy" @click.stop="goToPrivacy">《隐私政策》</text>
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -152,12 +152,26 @@
|
|||||||
const toggleAgreement = () => {
|
const toggleAgreement = () => {
|
||||||
agreeAgreement.value = !agreeAgreement.value;
|
agreeAgreement.value = !agreeAgreement.value;
|
||||||
};
|
};
|
||||||
// 跳转隐私协议
|
// 打开用户协议
|
||||||
const goToPrivacy = () => {
|
const goToUserAgreement = () => {
|
||||||
uni.navigateTo({
|
// #ifdef APP-PLUS
|
||||||
url: '/pageSubPack/loginSub/privacy',
|
plus.runtime.openURL('https://wuye.ckdzkj.com/parivw/ownler_xieyi.html')
|
||||||
})
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
window.open('https://wuye.ckdzkj.com/parivw/ownler_xieyi.html')
|
||||||
|
// #endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 打开隐私政策
|
||||||
|
const goToPrivacy = () => {
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
plus.runtime.openURL('https://wuye.ckdzkj.com/parivw/owner.html')
|
||||||
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
window.open('https://wuye.ckdzkj.com/parivw/owner.html')
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
|
|
||||||
// 检查表单状态(实时更新按钮状态)
|
// 检查表单状态(实时更新按钮状态)
|
||||||
const checkForm = () => {};
|
const checkForm = () => {};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user