1234567891011121314151617181920212223242526272829303132333435 |
- <navigationBar bind:reload='setUserInfo'></navigationBar>
- <view class="container">
- <!-- 用户信息 -->
- <view class="userBox">
- <view class="above" bindtap="jump" data-url="/pages/editUser/index">
- <view class="identity">
- <image class='avatar' src='{{ userInfo.user.avatar}}'></image>
- <view class="identityText">{{ userInfo.user.profession}}</view>
- </view>
- <view class="userRight">
- <view class="uRtop">
- <view class="uRtopleft">
- <view class="nickName textOver">{{userInfo.user.nickName||'请输入昵称' }}</view>
- <view class="gradeText textOver" catchtap="clipboar">学号:{{userInfo.user.eid}}</view>
- </view>
- <view class="uRtopRight">
- <image class="edit" src="/static/edit_new.png" mode="" />
- <text>编辑</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <scroll-view class="goodsList" scroll-x="true" enhanced show-scrollbar="{{false}}">
- <view wx:for="{{products}}" wx:key="id"
- class="payBox {{item.payType=='LIFELONG'?'pbbg2':item.payType=='YEAR'?'pbbg1':'pbbg3'}}"
- bindtap="openDonutBuy" data-product="{{item}}">
- <view class="pay">
- 立即开通
- </view>
- </view>
- </scroll-view>
- <donutBuy id="donutBuy" bind:reload='paySuccess'></donutBuy>
- <vipModal id="vipModal"></vipModal>
- </view>
|