| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <template>
- <view class="container">
- <image class="banner" src="@/static/images/mine/back.png" mode="aspectFill" />
- <view class="title" :style="{ top: `${paddingTop * 2}rpx` }">
- <view class="title_back" @click="handleBack">
- <wd-icon name="thin-arrow-left" color="#001713" size="18"></wd-icon>
- </view>
- 身份认证
- </view>
- <view class="body">
- <!-- 每一个认证类型区域 -->
- <view
- class="body_card"
- v-for="(item, index) in typeList"
- :key="index"
- :class="[{ excellent: item.cardType == '优行认证' }, { teacher: item.cardType == '教师认证' }, { warm: item.cardType == '暖心认证' }]"
- @click="clickItem(item)"
- >
- <view class="card_type">
- <view class="type_name">
- <image v-if="item.cardType == '优行认证'" class="img" src="/static/images/transportation/logo.png" mode="aspectFill"></image>
- <image v-if="item.cardType == '教师认证'" class="img" src="/static/images/transportation/logo2.png" mode="aspectFill"></image>
- <image v-if="item.cardType == '暖心认证'" class="img" src="/static/images/transportation/logo3.png" mode="aspectFill"></image>
- {{ item.cardType }}
- </view>
- </view>
- <view
- class="card_line"
- :class="[{ line_excellent: item.cardType == '优行认证' }, { line_teacher: item.cardType == '教师认证' }, { line_warm: item.cardType == '暖心认证' }]"
- ></view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import { onMounted, ref } from 'vue'
- import { myRequest } from '@/utils/api.ts'
- // 胶囊按钮距离页面顶部的距离
- const paddingTop = ref(0)
- // 用户信息
- const userInfo = uni.getStorageSync('carUserInfo')
- //认证信息
- const mineXin = ref({})
- // 身份认证类型数组
- const typeList = ref([
- {
- cardType: '教师认证'
- },
- {
- cardType: '暖心认证'
- }
- ])
- onMounted(() => {
- paddingTop.value = uni.getMenuButtonBoundingClientRect().top
- getMyVetry()
- })
- // 查看我的认证信息
- async function getMyVetry() {
- const res = await myRequest({
- url: '/vertifyqueryOwn.action',
- data: {
- mobile: userInfo.mobile ,
- }
- })
- if(res.code==200){
- if(res.data[0].type==1){
- mineXin.value=res.data[0]
- }else if(res.data[0].type==2){
- mineXin.value=res.data[0]
- }
- }else if(res.message=='未查询到认证信息'){
- }
- }
- // 点击每一项的回调
- const clickItem = (item) => {
- if(item.cardType=='教师认证'){
- if(mineXin.value.type==1){
- const info = encodeURIComponent(JSON.stringify(mineXin.value))
- uni.navigateTo({
- url:`/pages/authenticate/authenticate?info=${info}&cardType=${item.cardType}`,
- })
- return
- }
- }else{
- if(mineXin.value.type==2){
- const info = encodeURIComponent(JSON.stringify(mineXin.value))
- uni.navigateTo({
- url:`/pages/authenticate/authenticate?info=${info}&cardType=${item.cardType}`,
- })
- return
- }
- }
- uni.navigateTo({
- url: `/pages/authenticate/authenticate?cardType=${item.cardType}`
- })
- }
- // 顶部返回图标回调
- const handleBack = () => {
- uni.navigateBack()
- }
- </script>
- <style lang="scss" scoped>
- .container {
- position: relative;
- height: 100vh;
- color: #001713;
- background-color: #fff;
- .banner {
- width: 100%;
- height: 482rpx;
- }
- .title {
- position: absolute;
- display: flex;
- align-items: center;
- width: 100vh;
- font-size: 40rpx;
- .title_back {
- margin-left: 26rpx;
- margin-right: 252rpx;
- }
- }
- .body {
- position: absolute;
- top: 220rpx;
- box-sizing: border-box;
- padding: 0 36rpx;
- width: 100%;
- .body_card {
- box-sizing: border-box;
- padding: 36rpx 48rpx;
- margin: 0 auto 80rpx;
- width: 100%;
- height: 248rpx;
- font-size: 24rpx;
- border-radius: 60rpx;
- border-radius: 30px;
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
- .card_type {
- display: flex;
- align-items: center;
- font-weight: bold;
- margin-top: 100rpx;
- .type_name {
- display: flex;
- align-items: center;
- font-size: 40rpx;
- .img {
- margin-right: 10rpx;
- width: 40rpx;
- height: 40rpx;
- }
- }
- .type_au {
- display: flex;
- align-items: center;
- margin-left: 40rpx;
- font-size: 24rpx;
- .text {
- margin-right: 5rpx;
- }
- }
- }
- .card_line {
- margin-top: 16rpx;
- width: 100%;
- height: 8rpx;
- border-radius: 10rpx;
- }
- .line_excellent {
- background: linear-gradient(90deg, #72a8d2 0%, #2b507a 100%);
- }
- .line_teacher {
- background: linear-gradient(90deg, #f1a045 0%, #bf6c0f 100%);
- }
- .line_warm {
- background: linear-gradient(90deg, #218dfb 0%, #0c70fb 100%);
- }
- }
- .excellent {
- color: #2b507a;
- background: linear-gradient(146.58deg, rgba(243, 245, 245, 0.5) 0%, rgba(229, 240, 244, 0.5) 100%);
- }
- .teacher {
- color: #9f5300;
- background: linear-gradient(148.48deg, rgba(254, 228, 182, 0.5) 0%, rgba(253, 205, 121, 0.5) 59.21%, rgba(248, 212, 140, 0.5) 100%);
- }
- .warm {
- color: #1580ed;
- background: linear-gradient(146.58deg, rgba(243, 245, 245, 0.5) 0%, rgba(201, 229, 255, 0.5) 100%);
- }
- }
- }
- </style>
|