jiuyiUniapp/jiuyi2/components/mine/noAuth.vue

21 lines
398 B
Vue

<script setup>
/**
* 未实名认证组件
*/
</script>
<template>
<view class="nologin pr fmid fdc">
<view class="title f40 b">请先实名认证</view>
<navigator url="/pages/mine/realname" class="button btn pro bar black mt60">去实名认证</navigator>
</view>
</template>
<style lang="scss" scoped>
//
.nologin {
.button {
width: 80%;
}
}
</style>