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.

50 lines
1.4 KiB

5 years ago
<!--pages/user/profile/index.wxml-->
<import src='/we-cropper/we-cropper.wxml' />
<title title="我的资料"></title>
<view class="profile-item">
<text>头像</text>
<view class="info" bindtap="uploadTap">
<image src="" mode="aspectFill"></image>
</view>
<view class="iconfont icon-you"></view>
</view>
<view class="profile-item">
<text>昵称</text>
<view style="font-size:30rpx" class="info"></view>
<view class="iconfont icon-you"></view>
</view>
<view class="profile-item">
<text>邮箱</text>
<view class="info"></view>
<view class="iconfont icon-you"></view>
</view>
<view class="profile-item">
<text>手机号</text>
<view class="info"></view>
<view class="iconfont icon-you"></view>
</view>
<view class="profile-item">
<text>性别</text>
<view class="info">
<picker bindchange="changeSex" value="{{sexIndex}}" range="{{sexes}}">
<view class="picker">
{{sexes[sexIndex]}}
</view>
</picker>
</view>
<view class="iconfont icon-you"></view>
</view>
<view class="profile-item">
<text>生日</text>
<view class="info">
<picker mode="date" value="{{date}}" start="1900-01-01" end="{{today}}" bindchange="bindDateChange">
<view class="picker">
{{date}}
</view>
</picker>
</view>
<view class="iconfont icon-you"></view>
</view>
<view class="cropper-wrapper" wx:if="{{showCropper}}">
<template is="we-cropper" data="{{...cropperOpt}}"/>
</view>