yonghuxinxi

master
lion 2 years ago
parent 4f9247834f
commit b9cd43dfb8

@ -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

Loading…
Cancel
Save