1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!--index.wxml-->
- <view class="container">
- <view class="userinfo f-box">
- <view>
- <block wx:if="{{userInfo.avatarUrl}}">
- <image class="userinfo-avatar" src="{{userInfo.avatarUrl}}"></image>
- </block>
- <block wx:else>
- <image class="userinfo-avatar" src="/images/def_photo.png"></image>
- </block>
- </view>
- <view class='user-right'>
- <view class="userinfo-nickname">{{userInfo.nickName}}</view>
- <view class='user-phone'>点击绑定手机号</view>
- </view>
- </view>
- <!-- 采购订单 -->
- <view class='user-order'>
- <view class="pad-t20 pad-b20 mar-r20 f-s30 mar-l20 order-title">我的采购订单</view>
- <view class='f-box order-list f-justify-content-center mar-l20 mar-r20 f-s28'>
- <view class='f-item order-item' data-state="0" bindtap='orderInfor'>
- <text>1</text>
- <icon class='iconfont icon-icon-test'></icon>
- <view>待付款</view>
- </view>
- <view class='f-item order-item' data-state="2" bindtap='orderInfor'>
- <text>1</text>
- <icon class='iconfont icon-daifahuo1'></icon>
- <view>待发货</view>
- </view>
- <view class='f-item order-item' data-state="3" bindtap='orderInfor'>
- <text>12</text>
- <icon class='iconfont icon-daishouhuo'></icon>
- <view>待收货</view>
- </view>
- </view>
- </view>
- <!-- 我的定制订单 -->
- <view class='user-order'>
- <view class="pad-t20 pad-b20 mar-r20 f-s30 mar-l20 order-title">我的定制订单</view>
- <view class='f-box order-list f-justify-content-center mar-l20 mar-r20 f-s28'>
- <view class='f-item order-item' data-state="0" bindtap='orderInfor'>
- <text>1</text>
- <icon class='iconfont icon-icon-test'></icon>
- <view>待付款</view>
- </view>
- <view class='f-item order-item' data-state="2" bindtap='orderInfor'>
- <text>1</text>
- <icon class='iconfont icon-daifahuo1'></icon>
- <view>待发货</view>
- </view>
- <view class='f-item order-item' data-state="3" bindtap='orderInfor'>
- <text>1</text>
- <icon class='iconfont icon-daishouhuo'></icon>
- <view>待收货</view>
- </view>
- </view>
- </view>
-
- </view>
|