帧视界壹通告,付费看视频的微信小程序
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.
 
 
 

76 lines
1.4 KiB

<template>
<view class="authOption">
<!--顶部导航栏-->
<navbar leftClick @leftClick="$utils.navigateBack" title="认证选择"/>
<!--内容区-->
<view class="content">
<view class="btns">
<view>
<button @click="personAuth" class="bottomBtn">
个人认证
</button>
</view>
<view>
<button @click="firmAuth" class="firmBtn">
企业认证
</button>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {}
},
methods: {
personAuth() {
uni.redirectTo({
url: '/pages_mine/mine/certifiedIndividual?type=person'
})
},
firmAuth() {
uni.redirectTo({
url: '/pages_mine/mine/certifiedIndividual?type=firm'
})
},
},
}
</script>
<style scoped lang="scss">
.authOption {
.content {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50%;
.btns {
display: flex;
flex-direction: column;
align-items: center;
gap: 50rpx;
.bottomBtn {
width: 50vw;
color: #ffffff;
background: linear-gradient(to right, #3c69f1, #5f3bf5);
}
.firmBtn {
width: 50vw;
bordr-radius: 20rpx;
border:1px solid black;
}
}
}
}
</style>