yonghuxinxi

master
lion 2 years ago
parent 4f9247834f
commit b9cd43dfb8

@ -1,7 +1,11 @@
<template> <template>
<page-meta :page-style="'overflow:'+(callshow?'hidden':'visible')"></page-meta> <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="top">
<view class="toplogo justify-between align-center"> <view class="toplogo justify-between align-center">
<view> <view>
@ -103,7 +107,11 @@
<script> <script>
import '@/static/css/bd.css' import '@/static/css/bd.css'
export default { import PrivacyPopup from '@/components/privacy-popup/privacy-popup.vue';
export default{
components: {
PrivacyPopup
},
data() { data() {
return { return {
userName: "", userName: "",
@ -169,7 +177,17 @@
this.loadList() this.loadList()
} }
}, },
methods: { methods: {
onAgreePrivacy() {
//
//
console.log('User agreed to the privacy policy');
},
onRejectPrivacy() {
//
//
console.log('User rejected the privacy policy');
},
toForm(type) { toForm(type) {
uni.navigateTo({ uni.navigateTo({
url: "/pages/visit/addrecord?iscall=call&type=" + type url: "/pages/visit/addrecord?iscall=call&type=" + type

Loading…
Cancel
Save