幼教产品B2B生态平台小程序端
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.

79 lines
1.5 KiB

12 months ago
<template>
<view>
<view class="block">
<view class="certified">
<image class="icon" src="https://occupationlab.com/images/preschoolEdu/icon7.png" mode="widthFix" />
<view class="text">您已经通过幼儿园认证</view>
</view>
<view class="form-list">
<view class="line">
<view class="name">幼儿园名称</view>
11 months ago
<view class="val">梅林一村幼儿园</view>
12 months ago
</view>
<view class="line">
<view class="name">统一社会信用代码</view>
11 months ago
<view class="val">124403004557455223O</view>
12 months ago
</view>
<view class="line">
<view class="name">法人</view>
11 months ago
<view class="val">谢韵</view>
12 months ago
</view>
</view>
</view>
<view class="btn-wrap">
<view class="btn" @click="back">确定</view>
</view>
</view>
</template>
<script>
import { my } from '@/apis/modules/parner.js'
export default {
data() {
return {
}
},
onShow() {
// this.getInfo()
},
methods: {
// 获取个人信息
getInfo() {
const { partnerId, teamId } = uni.getStorageSync('team')
my({
partnerId,
teamId
}).then(({ my }) => {
this.info = my.info
}).catch(e => {})
},
// 返回
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;
}
}
12 months ago
.form-list {
.name {
min-width: 250rpx;
}
}
12 months ago
</style>