123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <view class="main">
- <view class="one">
- 个人信息
- </view>
- <view class="two">
- <view class="twoTop">
- <text>{{personalInfo.grade}}</text>
- </view>
- <view class="twoDown">
- <van-cell-group>
- <van-field value="{{ personalInfo.name }}" label="姓名" placeholder="姓名" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.phone }}" label="手机号" placeholder="手机号" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.card }}" label="身份证号" placeholder="身份证号" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.zfb }}" label="支付宝账号" placeholder="支付宝账号" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.type }}" label="类型" placeholder="类型" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.province }}" label="省份" placeholder="省份" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.city }}" label="市区" placeholder="市区" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.meal }}" label="套餐" placeholder="套餐" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.card_date }}" label="办卡时间" placeholder="办卡时间" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.tjr }}" label="推荐人" placeholder="推荐人" readonly />
- </van-cell-group>
- <van-cell-group>
- <van-field value="{{ personalInfo.tjrPhone }}" label="推荐人手机号" placeholder="推荐人手机号" readonly />
- </van-cell-group>
- </view>
- </view>
- </view>
|