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.
|
|
|
<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>
|
|
|
|
<view class="val">测试测试</view>
|
|
|
|
</view>
|
|
|
|
<view class="line">
|
|
|
|
<view class="name">统一社会信用代码</view>
|
|
|
|
<view class="val">测试测试</view>
|
|
|
|
</view>
|
|
|
|
<view class="line">
|
|
|
|
<view class="name">法人</view>
|
|
|
|
<view class="val">测试测试</view>
|
|
|
|
</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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.form-list {
|
|
|
|
.name {
|
|
|
|
min-width: 250rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|