219 lines
8.4 KiB
Vue
219 lines
8.4 KiB
Vue
<template>
|
|
<view :class="theme_view">
|
|
<!-- 微信隐私提示弹窗 -->
|
|
<view v-if="is_show_privacy" class="agreement-page bs-bb pf wh-auto ht-auto left-0 top-0 z-i-deep-must">
|
|
<view class="agreement-content border-radius-main bg-white">
|
|
<view class="tc">
|
|
<image class="logo circle auto dis-block margin-bottom-lg br" :src="logo" mode="widthFix"></image>
|
|
<view class="cr-base fw-b text-size-lg">{{ title }}{{$t('common.warm_tips')}}</view>
|
|
</view>
|
|
<view class="margin-top-lg text-size-sm cr-base content-desc">
|
|
<block v-if="(privacy_content || null) == null">{{$t('agreement.agreement.w38e3v')}}{{ title }}{{$t('agreement.agreement.hjn568')}}</block>
|
|
<block v-else>{{ privacy_content }}</block>
|
|
</view>
|
|
<view class="cr-blue margin-top-lg">
|
|
<view>
|
|
<text @tap="agreement_event" data-value="userregister">《{{ title }}{{$t('agreement.agreement.iy7863')}}</text>
|
|
</view>
|
|
<view class="margin-top-sm">
|
|
<text @tap="agreement_event" data-value="userprivacy">《{{ title }}{{$t('agreement.agreement.jwi8n1')}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="buttom tc margin-top-xxxl padding-top-lg">
|
|
<button type="default" size="mini" class="btn br-grey cr-base bg-white text-size-sm round margin-right-xxxl" @tap="exit_event">{{$t('agreement.agreement.062co8')}}</button>
|
|
<button type="default" size="mini" class="btn br-main cr-white bg-main text-size-sm round margin-left-xxxl" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="agree_privacy_auth_event">{{$t('agreement.agreement.60t34e')}}</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 开屏广告 -->
|
|
<component-start-ad ref="start_ad"></component-start-ad>
|
|
|
|
<!-- app管理 -->
|
|
<component-app-admin ref="app_admin" :propIsHideStar="true"></component-app-admin>
|
|
|
|
<!-- 用户基础 -->
|
|
<component-user-base ref="user_base" :propIsGrayscale="propIsGrayscale"></component-user-base>
|
|
|
|
<!-- 弹屏广告 -->
|
|
<component-popupscreen ref="popupscreen" :propIsGrayscale="propIsGrayscale"></component-popupscreen>
|
|
|
|
<!-- 资质认证 -->
|
|
<component-certificate ref="certificate" :propIsGrayscale="propIsGrayscale"></component-certificate>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
const app = getApp();
|
|
import componentStartAd from '@/components/start-ad/start-ad.vue';
|
|
import componentAppAdmin from '@/components/app-admin/app-admin';
|
|
import componentUserBase from '@/components/user-base/user-base';
|
|
import componentPopupscreen from '@/components/popupscreen/popupscreen';
|
|
import componentCertificate from '@/components/certificate/certificate';
|
|
export default {
|
|
data() {
|
|
return {
|
|
theme_view: app.globalData.get_theme_value_view(),
|
|
logo: app.globalData.get_application_logo_square(),
|
|
title: app.globalData.get_application_title(),
|
|
is_show_privacy: false,
|
|
privacy_content: null,
|
|
};
|
|
},
|
|
props: {
|
|
// 是否灰度
|
|
propIsGrayscale: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
// 是否显示底部菜单占位
|
|
propIsFooterSeat: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
// 是否引入开屏广告
|
|
propIsStartAd: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
// 是否引入app管理
|
|
propIsAppAdmin: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
// 是否引入用户基础信息提示
|
|
propIsUserBase: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
// 是否引入弹屏广告
|
|
propIsPopupscreen: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
// 是否用户认证提示
|
|
propIsCertificate: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
components: {
|
|
componentStartAd,
|
|
componentAppAdmin,
|
|
componentUserBase,
|
|
componentPopupscreen,
|
|
componentCertificate
|
|
},
|
|
methods: {
|
|
// 初始化数据
|
|
init(params = {}) {
|
|
// #ifdef MP-WEIXIN
|
|
// 微信协议验证
|
|
if (app.globalData.data.is_weixin_privacy_setting == 1) {
|
|
uni.getPrivacySetting({
|
|
success: (res) => {
|
|
if (res.needAuthorization) {
|
|
this.setData({
|
|
is_show_privacy: true,
|
|
privacy_content: app.globalData.get_config('config.common_app_mini_weixin_privacy_content', null),
|
|
});
|
|
}
|
|
this.init_business_handle(params);
|
|
},
|
|
fail: () => {
|
|
this.init_business_handle(params);
|
|
}
|
|
});
|
|
}
|
|
// #endif
|
|
// #ifndef MP-WEIXIN
|
|
this.init_business_handle(params);
|
|
// #endif
|
|
},
|
|
|
|
// 初始化业务处理
|
|
init_business_handle(params) {
|
|
// 开屏广告
|
|
if (this.propIsStartAd && (this.$refs.start_ad || null) != null) {
|
|
this.$refs.start_ad.init(params);
|
|
}
|
|
|
|
// 弹屏广告
|
|
if (this.propIsPopupscreen && (this.$refs.popupscreen || null) != null) {
|
|
this.$refs.popupscreen.init(params);
|
|
}
|
|
|
|
// 弹窗状态
|
|
var modal_status = this.is_show_privacy;
|
|
// 用户头像和昵称设置提示
|
|
if (!modal_status && this.propIsUserBase && (this.$refs.user_base || null) != null) {
|
|
modal_status = this.$refs.user_base.init(params);
|
|
}
|
|
|
|
// 资质认证
|
|
if (!modal_status && this.propIsCertificate && (this.$refs.certificate || null) != null) {
|
|
modal_status = this.$refs.certificate.init(params);
|
|
}
|
|
|
|
// app管理
|
|
if (!modal_status && this.propIsAppAdmin && (this.$refs.app_admin || null) != null) {
|
|
this.$refs.app_admin.init(params);
|
|
}
|
|
},
|
|
|
|
// 协议事件
|
|
agreement_event(e) {
|
|
var value = e.currentTarget.dataset.value || null;
|
|
if (value == null) {
|
|
app.globalData.showToast(this.$t('login.login.4wc3hr'));
|
|
return false;
|
|
}
|
|
// 是否存在协议 url 地址
|
|
var key = 'agreement_' + value + '_url';
|
|
var url = app.globalData.get_config('config.' + key) || null;
|
|
if (url == null) {
|
|
app.globalData.showToast(this.$t('login.login.x0nxxf'));
|
|
return false;
|
|
}
|
|
// 打开 webview
|
|
app.globalData.open_web_view(url);
|
|
},
|
|
|
|
// 授权回调
|
|
agree_privacy_auth_event() {
|
|
this.setData({
|
|
is_show_privacy: false
|
|
});
|
|
},
|
|
|
|
// 退出小程序
|
|
exit_event(e) {
|
|
uni.exitMiniProgram();
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.agreement-page {
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
height: 100vh;
|
|
padding: 40rpx;
|
|
}
|
|
.agreement-content {
|
|
padding: 40rpx;
|
|
position: absolute;
|
|
top: 15%;
|
|
width: calc(100% - 160rpx);
|
|
}
|
|
.agreement-content .logo {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
}
|
|
.agreement-content .content-desc {
|
|
line-height: 46rpx;
|
|
max-height: calc(30vh);
|
|
overflow-y: auto;
|
|
}
|
|
.agreement-content .buttom .btn {
|
|
min-width: 200rpx;
|
|
}
|
|
</style> |