perssonal.wxml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <view class="main">
  2. <view class="one">
  3. 个人信息
  4. </view>
  5. <view class="two">
  6. <view class="twoTop">
  7. <text>{{personalInfo.grade}}</text>
  8. </view>
  9. <view class="twoDown">
  10. <van-cell-group>
  11. <van-field value="{{ personalInfo.name }}" label="姓名" placeholder="姓名" readonly />
  12. </van-cell-group>
  13. <van-cell-group>
  14. <van-field value="{{ personalInfo.phone }}" label="手机号" placeholder="手机号" readonly />
  15. </van-cell-group>
  16. <van-cell-group>
  17. <van-field value="{{ personalInfo.card }}" label="身份证号" placeholder="身份证号" readonly />
  18. </van-cell-group>
  19. <van-cell-group>
  20. <van-field value="{{ personalInfo.zfb }}" label="支付宝账号" placeholder="支付宝账号" readonly />
  21. </van-cell-group>
  22. <van-cell-group>
  23. <van-field value="{{ personalInfo.type }}" label="类型" placeholder="类型" readonly />
  24. </van-cell-group>
  25. <van-cell-group>
  26. <van-field value="{{ personalInfo.province }}" label="省份" placeholder="省份" readonly />
  27. </van-cell-group>
  28. <van-cell-group>
  29. <van-field value="{{ personalInfo.city }}" label="市区" placeholder="市区" readonly />
  30. </van-cell-group>
  31. <van-cell-group>
  32. <van-field value="{{ personalInfo.meal }}" label="套餐" placeholder="套餐" readonly />
  33. </van-cell-group>
  34. <van-cell-group>
  35. <van-field value="{{ personalInfo.card_date }}" label="办卡时间" placeholder="办卡时间" readonly />
  36. </van-cell-group>
  37. <van-cell-group>
  38. <van-field value="{{ personalInfo.tjr }}" label="推荐人" placeholder="推荐人" readonly />
  39. </van-cell-group>
  40. <van-cell-group>
  41. <van-field value="{{ personalInfo.tjrPhone }}" label="推荐人手机号" placeholder="推荐人手机号" readonly />
  42. </van-cell-group>
  43. </view>
  44. </view>
  45. </view>