personal-information.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!-- 个人资料 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="module">
  5. <view class="row-between">
  6. <text class="label">头像</text>
  7. <view class="photo-box">
  8. <image src="../../../static/img-4.png" class="photo" mode="aspectFill"></image>
  9. <view class="replace">
  10. 更换
  11. </view>
  12. </view>
  13. </view>
  14. <view class="row-between">
  15. <text class="label">昵称</text>
  16. <input type="text" value="真的灰常郝" class="input" placeholder="" placeholder-class="placeholder" />
  17. </view>
  18. </view>
  19. <view class="module">
  20. <view class="row-between">
  21. <text class="label">性别</text>
  22. <view class="right-sidebar">
  23. <picker @change="bindPickerChange" :value="index" :range="array">
  24. <view class="uni-input">{{array[index]}}</view>
  25. </picker>
  26. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  27. </view>
  28. </view>
  29. <view class="row-between">
  30. <text class="label">生日</text>
  31. <view class="right-sidebar">
  32. <picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindDateChange">
  33. <view class="uni-input">{{date}}</view>
  34. </picker>
  35. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  36. </view>
  37. </view>
  38. <view class="row-between">
  39. <text class="label">居住地</text>
  40. <view class="right-sidebar">
  41. 山东青岛
  42. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  43. </view>
  44. </view>
  45. <view class="row-between">
  46. <text class="label">邀请码</text>
  47. <view class="right-sidebar">
  48. xieshou456892
  49. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  50. </view>
  51. </view>
  52. <view class="row-between">
  53. <text class="label">绑定微信</text>
  54. <view class="right-sidebar">
  55. 184124589762
  56. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. const currentDate = this.getDate({
  66. format: true
  67. })
  68. return {
  69. //生日
  70. date: currentDate,
  71. //性别
  72. array: ['男', '女'],
  73. index: 0,
  74. }
  75. },
  76. methods: {
  77. //选择日期
  78. bindDateChange: function(e) {
  79. this.date = e.target.value
  80. },
  81. getDate(type) {
  82. const date = new Date();
  83. let year = date.getFullYear();
  84. let month = date.getMonth() + 1;
  85. let day = date.getDate();
  86. if (type === 'start') {
  87. year = year - 60;
  88. } else if (type === 'end') {
  89. year = year + 2;
  90. }
  91. month = month > 9 ? month : '0' + month;
  92. day = day > 9 ? day : '0' + day;
  93. return `${year}-${month}-${day}`;
  94. },
  95. //选择性别
  96. bindPickerChange: function(e) {
  97. this.index = e.target.value
  98. },
  99. }
  100. }
  101. </script>
  102. <style scoped lang="scss">
  103. @import "./personal-information.css";
  104. </style>