连云港陪玩陪聊
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chunwan/components/unverified.vue

28 lines
624 B

<template>
<view>
<u-modal v-model="isPopup" title="认证提醒" confirm-color="#000000" @confirm="confirm" content='您还未进行个人信息认证,请前往"我的-认证中心"进行认证,享受更多特权功能,请尽快完成认证.' confirm-text="立即前往"></u-modal>
</view>
</template>
<script>
export default {
name:"unverified",
props: {
isPopup: {
type: Boolean,
default: false
},
},
methods: {
confirm() {
uni.$emit("closeSharePopup",false)
uni.navigateTo({
url: "/pages/users/renzheng/index"
})
}
}
}
</script>
<style lang="scss" scoped>
</style>