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 class="pageBgImg"> <topNavbar title="我的信息"></topNavbar> <view class="pad"> <view class="card"> <view class="row border"> <view class="lab">真实姓名</view> <view class="val">{{ vuex_userInfo.name }}</view> </view> <view class="row border"> <view class="lab">证件号</view> <view class="val">{{ vuex_userInfo.idcard }}</view> </view> <view class="row border"> <view class="lab">性别</view> <view class="val">{{ vuex_userInfo.sex==1?'男':'女' }}</view> </view> <view class="row "> <view class="lab">地址</view> <view class="val">{{ vuex_userInfo.address }}</view> </view> </view> </view> </view> </template>
<style lang="scss" scoped> .card { padding: 6rpx; margin-bottom: 20rpx; } .row { display: flex; align-items: center; justify-content: space-between; height: 98rpx; font-size: 28rpx; padding: 0 30rpx; &.border { border-bottom: 2rpx solid #E8E9EC; } }
</style>
|