1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/my/myService/myService.wxml-->
- <view class="service-container">
- <view class="tabs">
- <view class="tab {{index == currentTab ? 'tab-active' : ''}}" wx:for="{{tabs}}" wx:key="i" data-index="{{item.i}}" bindtap="tabChange">
- <text class="tab-item {{index == currentTab ? 'activeTab' : ''}}">{{item.title}}</text>
- </view>
- </view>
- <!-- type 预约方式 0线下请教 -->
- <!-- process 请教流程 -1 拒绝请教 0预约 1支付成功 2行家接受 3完成请教 4评价 -->
- <view class="main">
- <view class="box" wx:for="{{list}}" wx:key="{{item.meetId}}" data-meetId="{{item.meetId}}" bindtap="toServiceDetail">
- <view class="info">
- <view class="classify">{{item.type == 0 ? '线下请教' : ''}}</view>
- <view class="label">预约时间:<text class="num">{{item.meetTime}}</text></view>
- <view class="tip"># {{item.topicName}}</view>
- </view>
- <view class="status">
- <button class="btn" wx:if="{{item.process == 0 || item.process == 1}}">待处理</button>
- <button class="btn refuse" wx:if="{{item.process == -1}}">已拒绝</button>
- <button class="btn dispose" wx:if="{{item.process == 2}}">处理中</button>
- <button class="btn finish" wx:if="{{item.process == 3 || item.process == 4}}">已完成</button>
- <view class="serve-price">¥<text class="num">{{item.topicPrice}}</text>元</view>
- </view>
- </view>
- </view>
- <block wx:if="{{total <= 0}}">
- <view class='tc h100'>
- <image src="{{nodata}}" class='nodata-img'></image>
- </view>
- </block>
- </view>
|