移动端
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.

personalPicture.vue 4.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <div>
  3. <van-nav-bar
  4. title="画像"
  5. left-arrow
  6. @click-left="$router.back(-1)"
  7. />
  8. <van-tabs v-model="active" title-active-color="#1D6FE9" color="#1D6FE9" line-width="20px" swipeable>
  9. <van-tab title="个人画像">
  10. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 10px;padding-bottom: 10px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  11. <van-row>
  12. <van-col span="22" :offset="2" >
  13. <h2 style="color: #1D6FE9;margin: 10px 0">基本信息</h2>
  14. </van-col>
  15. </van-row>
  16. <van-row>
  17. <van-col span="10" :offset="2">
  18. <h2 style="margin: 10px 0">刘泽权</h2>
  19. </van-col>
  20. <van-col span="10" :offset="2">
  21. <h3 style="margin: 10px 0">张村镇东夼村</h3>
  22. </van-col>
  23. </van-row>
  24. <van-row>
  25. <van-col span="10" :offset="2">
  26. <h3 style="color: #878787;margin: 6px 0">年龄:23</h3>
  27. </van-col>
  28. <van-col span="10" :offset="2">
  29. <h3 style="color: #878787;margin: 6px 0">民族:汉族</h3>
  30. </van-col>
  31. </van-row>
  32. <van-row>
  33. <van-col span="10" :offset="2">
  34. <h3 style="color: #878787;margin: 6px 0">性别:男</h3>
  35. </van-col>
  36. <van-col span="10" :offset="2">
  37. <h3 style="color: #878787;margin: 6px 0">学历:本科</h3>
  38. </van-col>
  39. </van-row>
  40. <van-row>
  41. <van-col span="22" :offset="2">
  42. <h3 style="color: #878787;margin: 6px 0">电话:13306311234</h3>
  43. </van-col>
  44. </van-row>
  45. <van-row>
  46. <van-col span="22" :offset="2">
  47. <h3 style="color: #878787;margin: 6px 0">身份证号:371481200101042566</h3>
  48. </van-col>
  49. </van-row>
  50. <van-row>
  51. <van-col span="22" :offset="2">
  52. <h3 style="color: #878787;margin: 6px 0">住址:威海市环翠区张村镇东夼村56号</h3>
  53. </van-col>
  54. </van-row>
  55. </van-cell-group>
  56. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 10px;padding-bottom: 15px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  57. <van-row>
  58. <van-col span="22" :offset="2">
  59. <h2 style="color: #1D6FE9;margin: 10px 0">资产信息</h2>
  60. </van-col>
  61. </van-row>
  62. <van-row>
  63. <van-col span="10" :offset="2">
  64. <h3 style="color: #878787;margin: 6px 0">宅基地信息</h3>
  65. </van-col>
  66. <van-col span="10" :offset="2">
  67. <h3 style="color: #878787;margin: 6px 0">股权信息</h3>
  68. </van-col>
  69. </van-row>
  70. <van-row>
  71. <van-col span="10" :offset="2">
  72. <h2 style="margin-bottom: 6px">147号1宗</h2>
  73. </van-col>
  74. <van-col span="10" :offset="2">
  75. <h2 style="margin-bottom: 6px">12股</h2>
  76. </van-col>
  77. </van-row>
  78. <van-row>
  79. <van-col span="10" :offset="2">
  80. <h3 style="color: #878787;margin: 6px 0">承包地信息</h3>
  81. </van-col>
  82. <van-col span="10" :offset="2">
  83. <h3 style="color: #878787;margin: 6px 0">议事会组织</h3>
  84. </van-col>
  85. </van-row>
  86. <van-row>
  87. <van-col span="10" :offset="2">
  88. <h2 style="margin-bottom: 6px">3亩</h2>
  89. </van-col>
  90. <van-col span="10" :offset="2">
  91. <h2 style="margin-bottom: 6px">议事成员</h2>
  92. </van-col>
  93. </van-row>
  94. </van-cell-group>
  95. </van-tab>
  96. <van-tab title="农户画像">农户画像</van-tab>
  97. </van-tabs>
  98. </div>
  99. </template>
  100. <script>
  101. import onlineHomeIndex from "../onlineHomeIndex";
  102. export default {
  103. components: {
  104. onlineHomeIndex
  105. },
  106. name: "personalPicture",
  107. data() {
  108. return {
  109. active: '个人画像',
  110. };
  111. },
  112. }
  113. </script>
  114. <style scoped>
  115. </style>