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.
94 lines
2.1 KiB
94 lines
2.1 KiB
<template> |
|
<view> |
|
<view class="block"> |
|
<view class="certified"> |
|
<image class="icon" src="http://124.71.79.122/images/miniProgram/icon7.png" mode="widthFix" /> |
|
<view class="text">您已经通过{{ info.platformSource === '5' ? '幼儿园' : '供应商' }}认证</view> |
|
</view> |
|
<view class="form-list"> |
|
<view class="line"> |
|
<view class="name">幼儿园名称</view> |
|
<view class="val">{{ info.companyName }}</view> |
|
</view> |
|
<view class="line"> |
|
<view class="name">统一社会信用代码</view> |
|
<view class="val">{{ info.creditCode }}</view> |
|
</view> |
|
<view class="line"> |
|
<view class="name">法人</view> |
|
<view class="val">{{ info.legalPerson }}</view> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
<view class="btn-wrap"> |
|
<!-- 队长可以取消认证 --> |
|
<view v-if="team.isTeam == 1" class="btn" @click="cancel">取消认证</view> |
|
<view v-else class="btn" @click="back">确定</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { enterpriseCertificationStatus, updateCertification } from '@/apis/modules/user.js' |
|
export default { |
|
data() { |
|
return { |
|
team: uni.getStorageSync('team'), |
|
openId: uni.getStorageSync('openId'), |
|
info: {} |
|
} |
|
}, |
|
onShow() { |
|
this.getInfo() |
|
}, |
|
methods: { |
|
// 企业认证信息 |
|
async getInfo() { |
|
const { data } = await enterpriseCertificationStatus(this.openId) |
|
this.info = data |
|
}, |
|
// 取消认证 |
|
cancel() { |
|
const that = this |
|
uni.showModal({ |
|
title: '提示', |
|
content: '取消认证后需要重新进行认证,是否继续?', |
|
async success(res) { |
|
if (res.confirm) { |
|
that.info.authenticationStatus = 0 |
|
await updateCertification(that.info) |
|
setTimeout(() => { |
|
uni.navigateBack() |
|
}, 1500) |
|
} |
|
} |
|
}) |
|
}, |
|
// 返回 |
|
back() { |
|
uni.navigateBack() |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.certified { |
|
padding: 100rpx 0; |
|
text-align: center; |
|
.icon { |
|
width: 80rpx; |
|
margin-bottom: 20rpx; |
|
} |
|
.text { |
|
font-size: 26rpx; |
|
color: #333; |
|
} |
|
} |
|
.form-list { |
|
.name { |
|
min-width: 250rpx; |
|
} |
|
} |
|
</style>
|
|
|