| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <wxs src="../../wxs/tool.wxs" module="tool"></wxs>
- <view>
- <!-- 头像信息 -->
- <view class="user-info">
- <view>
- <image mode="aspectFill" wx:if="{{info}}" class="head-img" src="{{tool.cdn(info.shopInfo.logo_image)}}"></image>
- <image bind:tap="tologin" mode="aspectFill" wx:else class="head-img" src="{{tool.cdn(config.shop_image)}}"></image>
- </view>
- <view class="z-margin-l-32">
- <view class="name" wx:if="{{info}}">{{info.shopInfo.name}}</view>
- <view class="name" wx:else bindtap="tologin">请先登录</view>
- <view class="job-text" wx:if="{{info}}" catchtap="copy" data-content="{{info.shopInfo.code}}">工号:{{info.shopInfo.code}}</view>
- </view>
- </view>
- <view class="money-box z-margin-t-32 theme-colors">
- <view class="z-flex-c-s-b ">
- <view bind:tap="toEarnestMoney" class="z-flex-1 z-padding-t-64 z-padding-l-56">
- <view class="money-text">保证金(元)</view>
- <view class="money">{{info.shopInfo.ensure_price || 0}}</view>
- </view>
- <view bind:tap="toBalance" class="z-flex-1 z-padding-t-64 z-padding-l-56">
- <view class="money-text">账户余额(元)</view>
- <view class="money">{{info.userInfo.shop_user_money || 0}}</view>
- </view>
- </view>
- <view class="detail z-flex-c">
- <view bind:tap="toserviceStaff" class="num-box z-padding-l-48">
- <view class="detail-text">服务者</view>
- <view class="detail-num">{{info.skillCount || 0}}</view>
- </view>
- <view bind:tap="toserveList" class="num-box z-padding-l-48">
- <view class="detail-text">平台项目</view>
- <view class="detail-num">{{info.goodsCount || 0}}</view>
- </view>
- <view bind:tap="tostoreItem" class="num-box z-padding-l-48">
- <view class="detail-text">店铺项目</view>
- <view class="detail-num">{{info.shopGoodsCount || 0}}</view>
- </view>
- </view>
- </view>
- <!-- 更多功能 -->
- <view class="more-box z-margin-t-32 z-padding-b-24">
- <view class="more-title z-font-32">更多功能</view>
- <view class="more-each-box z-flex-y-c">
- <view class="more-each z-margin-t-48" wx:for="{{moreList}}" bind:tap="toServel" data-url="{{item.url}}">
- <image class="more-img" src="{{item.img}}"></image>
- <view class="z-font-24 z-text-c more-text">{{item.title}}</view>
- <button type="primary" open-type="contact" class="contact" wx:if="{{!item.url}}"></button>
- </view>
- </view>
- </view>
- </view>
|