|
@@ -46,14 +46,12 @@
|
|
|
|
|
|
<!-- #ifdef APP-PLUS || MP-WEIXIN -->
|
|
|
<view class="middle-agreed text-center">
|
|
|
- <u-checkbox-group v-model="userChecked">
|
|
|
- <u-checkbox :name="true" shape="circle" inactiveColor="#0081ff" size="13"></u-checkbox>
|
|
|
- </u-checkbox-group>
|
|
|
- <text>登录即已代表阅读并同意</text>
|
|
|
- <!-- <text>我已阅读并同意</text> -->
|
|
|
+ <u-checkbox shape="circle" inactiveColor="#0081ff" size="13" :usedAlone="true" :checked="uChecked" @change="uCheckedChange"></u-checkbox>
|
|
|
+ <!-- <text>登录即已代表阅读并同意</text> -->
|
|
|
+ <text>我已阅读并同意</text>
|
|
|
<text @click="handleUserAgrement" class="text-blue">用户协议</text>
|
|
|
<text>和</text>
|
|
|
- <text @click="handlePrivacy" class="text-blue">隐私协议</text>
|
|
|
+ <text @click="handlePrivacy" class="text-blue">隐私政策</text>
|
|
|
</view>
|
|
|
<!--#endif-->
|
|
|
</view>
|
|
@@ -62,6 +60,28 @@
|
|
|
<div class="title">{{ useStore.loginBottomTitle }}</div>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <u-modal
|
|
|
+ :show="modalShow"
|
|
|
+ title="用户协议及隐私政策"
|
|
|
+ :confirmText="'同意'"
|
|
|
+ :cancelText="'不同意'"
|
|
|
+ :zoom="false"
|
|
|
+ :showCancelButton="true"
|
|
|
+ @confirm="(uChecked = true), (modalShow = false)"
|
|
|
+ @cancel="modalShow = false"
|
|
|
+ >
|
|
|
+ <view class="slot-content">
|
|
|
+ <view>
|
|
|
+ 您在使用我们的服务时,我们可能会收集和使用您的相关信息。我们希望通过本
|
|
|
+ <text class="text-blue underline">《用户协议及隐私政策》</text>
|
|
|
+ 向您说明,在使用我们的服务时,我们如何收集、使用、 储存和分享这些信息,以及我们为您提供的访问、更新、控制和保护这些信息的方式。本
|
|
|
+ <text @click="handleUserAgrement" class="text-blue underline">《用户协议</text>
|
|
|
+ <text class="text-blue">及</text>
|
|
|
+ <text @click="handlePrivacy" class="text-blue underline">隐私政策》</text>,希望您仔细阅读,充分理解协议中的内容后再点击同意。
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </u-modal>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -91,10 +111,11 @@ const state = reactive({
|
|
|
/** 服务器配置数据 */
|
|
|
linkUrl: uni.getStorageSync("serveUrl"),
|
|
|
/** 用户隐私协议数据 */
|
|
|
- userChecked: [true],
|
|
|
+ uChecked: false,
|
|
|
+ modalShow: false,
|
|
|
});
|
|
|
|
|
|
-const { phone, verify, switchText, username, password, isPassword, linkUrl, userChecked } = toRefs(state);
|
|
|
+const { phone, verify, switchText, username, password, isPassword, linkUrl, uChecked, modalShow } = toRefs(state);
|
|
|
|
|
|
/**
|
|
|
* @跳转服务器配置
|
|
@@ -174,8 +195,8 @@ function submitRes() {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!userChecked.value[0]) {
|
|
|
- proxy.$modal.msg("请在阅读并同意 用户协议和隐私协议后登录");
|
|
|
+ if (!uChecked.value) {
|
|
|
+ modalShow.value = true;
|
|
|
return;
|
|
|
}
|
|
|
//#endif
|
|
@@ -237,6 +258,11 @@ function login(data) {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+// 复选框chage事件
|
|
|
+function uCheckedChange(e) {
|
|
|
+ uChecked.value = e;
|
|
|
+}
|
|
|
+
|
|
|
// 用户协议
|
|
|
function handleUserAgrement() {
|
|
|
let site = config.appInfo.agreements[0];
|
|
@@ -416,6 +442,7 @@ onLoad((options) => {});
|
|
|
color: #96a6b5;
|
|
|
margin-top: 30px;
|
|
|
display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
justify-content: center;
|
|
|
> uni-view {
|
|
|
margin: auto 0;
|