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.
20 lines
825 B
20 lines
825 B
<import src='/we-cropper/we-cropper.wxml' />
|
|
<title title="我的资料">
|
|
<view wx:if="{{showCropper}}" bindtap="getCropperImage" class="submit-upload" style="right:{{menuWidth}}px">完成</view>
|
|
</title>
|
|
<view class="profile-item">
|
|
<text>头像</text>
|
|
<view class="info" bindtap="uploadTap" style="text-align:right;">
|
|
<image lazy-load src="{{avatar}}" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="iconfont icon-you"></view>
|
|
</view>
|
|
<navigator url="../nickname/index" class="profile-item" wx:if="{{info}}">
|
|
<text>昵称</text>
|
|
<view class="info">{{info.nickname}}</view>
|
|
<view class="iconfont icon-you"></view>
|
|
</navigator>
|
|
<view class="cropper-wrapper" wx:if="{{showCropper}}">
|
|
<template is="we-cropper" data="{{...cropperOpt}}"/>
|
|
</view>
|
|
<!-- <view class="logoff" bindtap="logoff">注销</view> -->
|