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.
 
 
 

58 lines
940 B

<template>
<view class="contioner">
<view class="content">
<view class="dealy">
<image src="../../static/idcard.png" mode=""></image>
</view>
<view class="title">
您已实名
</view>
<view class="contentitem frist">
<view class="itemname">
姓名
</view>
<view class="fanhui">
<text class="input inputone">{{name}}</text>
</view>
</view>
<view class="contentitem">
<view class="itemname">
身份证
</view>
<view class="fanhui">
<text class="input">{{card}}</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
name: '蔡妮马',
card: '513822199611189099'
}
},
onLoad:function(op){
let user=uni.getStorageSync('user')
this.name=user.realName
this.card=user.idNumber
},
methods: {
}
}
</script>
<style lang="scss" scoped>
@import "./realname.scss"
</style>