| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!--pages/my/my.wxml-->
- <wxs src="../../wxs/tool.wxs" module="tool"></wxs>
- <view>
- <!-- 头像信息 -->
- <view class="user-info">
- <view>
- <image bind:tap="toLogin" mode="aspectFill" class="head-img" wx:if="{{info}}" src="{{tool.cdn(info.skill.image)}}"></image>
- <image bind:tap="toLogin" mode="aspectFill" class="head-img" wx:else bindtap="toLogin" src="{{tool.cdn(config.skill_image)}}"></image>
- </view>
- <view class="z-margin-l-32" wx:if="{{info}}">
- <view class="name">{{info.skill.name}} <text class="jz-type">{{info.skill.skillCateName}}</text> </view>
- <view class="job-text">工号:{{info.skill.code}}</view>
- </view>
- <view class="z-margin-l-32" wx:else>
- <view class="name" bindtap="toLogin">请先登录</view>
- </view>
- </view>
- <!-- 保证金信息 -->
- <view class="message z-margin-t-32 z-padding-lr-24 z-flex-c-s-b z-padding-tb-24">
- <view class="message-each z-flex-c-s-b z-padding-l-24 z-padding-r-32 backcolor-1" bind:tap="toEarnestMoney">
- <view>
- <view class="earnest-money">{{info.skill.ensure_price || 0}}</view>
- <view class="earnest-text z-margin-t-16">诚信保证金(元)</view>
- </view>
- <view>
- <image class="mes-img" src="../../static/index/my/my-1.png"></image>
- </view>
- </view>
- <!-- 二 -->
- <view class="message-each z-flex-c-s-b z-padding-l-24 z-padding-r-32 backcolor-2" bind:tap="toserve">
- <view>
- <view class="earnest-money">{{info.goodsCount || 0}}</view>
- <view class="earnest-text z-margin-t-16">服务项目</view>
- </view>
- <view>
- <image class="mes-img" src="../../static/index/my/my-2.png"></image>
- </view>
- </view>
- <!-- 三 -->
- <view class="message-each z-flex-c-s-b z-padding-l-24 z-padding-r-32 backcolor-3" data-type="0" bind:tap="toBalance">
- <view>
- <view class="earnest-money">{{info.userInfo.money || 0}}</view>
- <view class="earnest-text z-margin-t-16">平台余额(元)</view>
- </view>
- <view>
- <image class="mes-img" src="../../static/index/my/my-3.png"></image>
- </view>
- </view>
- <!-- 四 -->
- <view class="message-each z-flex-c-s-b z-padding-l-24 z-padding-r-32 backcolor-4" data-type="1" bind:tap="toBalance">
- <view>
- <view class="earnest-money">{{info.userInfo.shop_money || 0}}</view>
- <view class="earnest-text z-margin-t-16">商家余额(元)</view>
- </view>
- <view>
- <image class="mes-img" src="../../static/index/my/my-4.png"></image>
- </view>
- </view>
- </view>
- <!-- 更多功能 -->
- <view class="more-box z-margin-t-24">
- <view class="more-title z-font-32">更多功能</view>
- <view class="more-each-box z-flex-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 bind:tap="toSet" class="z-flex-c-s-b set z-margin-t-24 z-padding-lr-32">
- <view class="">
- <image class="set-img" src="../../static/index/my/set.png"></image>
- 设置
- </view>
- <image class="l-img" src="../../static/index/to-img.png"></image>
- </view>
- </view>
|