连云港陪玩陪聊
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

29 lines
624 B

3 months ago
<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() {
2 months ago
uni.$emit("closeSharePopup",false)
3 months ago
uni.navigateTo({
2 months ago
url: "/pages/users/renzheng/index"
3 months ago
})
}
}
}
</script>
<style lang="scss" scoped>
</style>