123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!-- 个人资料 -->
- <template>
- <view class="wrap">
- <view class="module">
- <view class="row-between">
- <text class="label">头像</text>
- <view class="photo-box">
- <image src="../../../static/img-4.png" class="photo" mode="aspectFill"></image>
- <view class="replace">
- 更换
- </view>
- </view>
- </view>
- <view class="row-between">
- <text class="label">昵称</text>
- <input type="text" value="真的灰常郝" class="input" placeholder="" placeholder-class="placeholder" />
- </view>
- </view>
- <view class="module">
- <view class="row-between">
- <text class="label">性别</text>
- <view class="right-sidebar">
- <picker @change="bindPickerChange" :value="index" :range="array">
- <view class="uni-input">{{array[index]}}</view>
- </picker>
- <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
- </view>
- </view>
- <view class="row-between">
- <text class="label">生日</text>
- <view class="right-sidebar">
- <picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindDateChange">
- <view class="uni-input">{{date}}</view>
- </picker>
- <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
- </view>
- </view>
- <view class="row-between">
- <text class="label">居住地</text>
- <view class="right-sidebar">
- 山东青岛
- <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
- </view>
- </view>
- <view class="row-between">
- <text class="label">邀请码</text>
- <view class="right-sidebar">
- xieshou456892
- <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
- </view>
- </view>
- <view class="row-between">
- <text class="label">绑定微信</text>
- <view class="right-sidebar">
- 184124589762
- <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- const currentDate = this.getDate({
- format: true
- })
- return {
- //生日
- date: currentDate,
- //性别
- array: ['男', '女'],
- index: 0,
- }
- },
- methods: {
- //选择日期
- bindDateChange: function(e) {
- this.date = e.target.value
- },
-
- getDate(type) {
- const date = new Date();
- let year = date.getFullYear();
- let month = date.getMonth() + 1;
- let day = date.getDate();
- if (type === 'start') {
- year = year - 60;
- } else if (type === 'end') {
- year = year + 2;
- }
- month = month > 9 ? month : '0' + month;
- day = day > 9 ? day : '0' + day;
- return `${year}-${month}-${day}`;
- },
- //选择性别
- bindPickerChange: function(e) {
- this.index = e.target.value
- },
- }
- }
- </script>
- <style scoped lang="scss">
- @import "./personal-information.css";
- </style>
|