12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <view class="content">
- <view class="content-money">
- <view class="money-box">
- <image class="andr-mt-avatar andr-mt-avatarBd" src="{{userInfo.avatar}}"></image>
- <view class="text">{{userInfo.nickname}}</view>
- </view>
- <image mode=" " src="../../static/img/userbg.png" style="width:750rpx;height:81rpx;background-color:#FFFFFF;"></image>
- <view class="flex buttom-box">
- <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/gsfh'] ] ] ] ]}}">
- <view class="icon">
- <text class="moneyType">¥</text>{{''+userData.all_stock_right_bonus+''}}</view>
- <text>公司分红</text>
- </view>
- <view class="interval"></view>
- <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/zsfh'] ] ] ] ]}}">
- <view class="icon">
- <text class="moneyType">¥</text>{{''+userData.give_stock_right_bonus+''}}</view>
- <text>赠送分紅</text>
- </view>
- <view class="interval"></view>
- <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/qmfh'] ] ] ] ]}}">
- <view class="icon">
- <text class="moneyType">¥</text>{{''+userData.code_stock_right_bonus+''}}</view>
- <text>全民分紅</text>
- </view>
- </view>
- </view>
- <view class="content-money padding-b-0 ">
- <view class="flex buttom-box kcLIst">
- <view class="buttom">
- <view class="icon">{{''+userCode.total_stock+''}}</view>
- <text>库存</text>
- </view>
- <view class="interval"></view>
- <view class="buttom">
- <view class="icon">{{''+userCode.total_sales+''}}</view>
- <text>销量</text>
- </view>
- <view class="interval"></view>
- </view>
- </view>
- <view class="tab-content goodList" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
- <view class="list-scroll-content">
- <view class="andr-mt-flex andr-mt-lBox" wx:for="{{tabItem.orderList}}" wx:key="uid">
- <image class="andr-mt-avatar andr-mt-marR20" src="{{item.goods_pic}}"></image>
- <view class="andr-mt-flex andr-mt-fdC position-relative">
- <text class="andr-mt-lname clamp2">{{item.goods_name}}</text>
- <view class="andr-mt-ltime flex goodsDetail">
- <view class="goodsMoney">
- <view>库存<text class="num">{{item.goods_stock}}</text>件</view>
- </view>
- <view class="goodsRight">
- <view>销量<text class="num">{{item.goods_sales}}</text>件</view>
- </view>
- </view>
- </view>
- </view>
- <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'5ab0bee6-1-'+tabIndex}}"></uni-load-more>
- </view>
- </view>
- </view>
|