|
|
|
|
@ -1,7 +1,11 @@
|
|
|
|
|
<template>
|
|
|
|
|
<page-meta :page-style="'overflow:'+(callshow?'hidden':'visible')"></page-meta>
|
|
|
|
|
|
|
|
|
|
<view class="containers">
|
|
|
|
|
<view class="containers">
|
|
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
|
|
<privacy-popup ref="privacyComponent" @agree-privacy="onAgreePrivacy"
|
|
|
|
|
@reject-privacy="onRejectPrivacy"></privacy-popup>
|
|
|
|
|
<!-- #endif -->
|
|
|
|
|
<view class="top">
|
|
|
|
|
<view class="toplogo justify-between align-center">
|
|
|
|
|
<view>
|
|
|
|
|
@ -103,7 +107,11 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import '@/static/css/bd.css'
|
|
|
|
|
export default {
|
|
|
|
|
import PrivacyPopup from '@/components/privacy-popup/privacy-popup.vue';
|
|
|
|
|
export default{
|
|
|
|
|
components: {
|
|
|
|
|
PrivacyPopup
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
userName: "",
|
|
|
|
|
@ -169,7 +177,17 @@
|
|
|
|
|
this.loadList()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
methods: {
|
|
|
|
|
onAgreePrivacy() {
|
|
|
|
|
// 用户同意隐私政策
|
|
|
|
|
// 在这里添加您想要执行的代码
|
|
|
|
|
console.log('User agreed to the privacy policy');
|
|
|
|
|
},
|
|
|
|
|
onRejectPrivacy() {
|
|
|
|
|
// 用户拒绝隐私政策
|
|
|
|
|
// 在这里添加您想要执行的代码
|
|
|
|
|
console.log('User rejected the privacy policy');
|
|
|
|
|
},
|
|
|
|
|
toForm(type) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/pages/visit/addrecord?iscall=call&type=" + type
|
|
|
|
|
|