| 123456789101112131415161718192021222324252627282930 |
- <!--pages/my/personalCenter/personalCenter.wxml-->
- <!-- 头部 -->
- <header position="my"></header>
- <!-- 内容 -->
- <view class="content">
- <view class="userInfo">
- <button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar">
- <image class="avatar" src="{{avatarUrl}}"></image>
- </button>
- <input type="nickname" class="weui-input" placeholder="还没有昵称" value="{{nickName}}" bindinput="inputChange"/>
- </view>
- <view class="myOrder">
- <text class="title">我的订单</text>
- <view class="operate">
- <text data-page="order" bindtap="goEnterPage">全部订单</text>
- <!-- <text>待发货</text>
- <text>待收货</text> -->
- </view>
- <view class="waistline"></view>
- <view class="navigation" data-page="address" bindtap="goEnterPage">
- <view class="left">
- <image class="navIcon" src="/images/my/addressIcon.png" mode="widthFix"/>
- <text class="name">地 址</text>
- </view>
- <image class="gonav" src="/images/mall/back.png" mode="widthFix"/>
- </view>
- </view>
- </view>
|