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.
61 lines
1.5 KiB
61 lines
1.5 KiB
<template>
|
|
<view class="p15 bc-f5">
|
|
<view class="br8 bc-fff p15lr">
|
|
<view class="flex jc-sb ai-c bb1" style="height: 110rpx;">
|
|
<view class="title">联系电话</view>
|
|
<view class="flex">
|
|
<view class="m30lr fs14 cor-333">15122305568</view>
|
|
<u-icon name="arrow-right" color="#999" />
|
|
</view>
|
|
</view>
|
|
<view class="flex jc-sb ai-c bb1" style="height: 110rpx;">
|
|
<view class="title">地址</view>
|
|
<view class="flex">
|
|
<view class="m30lr fs14 cor-333">安徽省合肥市包河区</view>
|
|
<u-icon name="arrow-right" color="#999" />
|
|
</view>
|
|
</view>
|
|
<!-- <view class="flex jc-sb ai-c bb1" style="height: 110rpx;">
|
|
<view class="title">身份证号</view>
|
|
<view class="m30lr fs14 cor-333">{{sfzNum}}</view>
|
|
</view>
|
|
<view class="flex ai-c" style="height: 110rpx;" @tap="toUploadPic">
|
|
<view class="title">证件照</view>
|
|
<view class="m30lr fs14 cor-333 fl1"></view>
|
|
<u-icon name="arrow-right" color="#999" />
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import storage from '@/jtools/storage';
|
|
export default {
|
|
data() {
|
|
return {
|
|
sfzNum:storage.get('sfzNum') || ''
|
|
}
|
|
},
|
|
onShow(){
|
|
this.sfzNum=storage.get('sfzNum') || ''
|
|
},
|
|
methods: {
|
|
toUploadPic(){
|
|
uni.navigateTo({
|
|
url: '/pages/me/uploadPic'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.title {
|
|
width: 120rpx;
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
.bb1 {
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|
|
|