| | |
| | | <image v-for="(op,index) in item.albums" @click="previewImg(item.albums,index)" class="content-img mr-10" :src="op.img"></image> |
| | | </view> |
| | | <view class="flex align-center justify-between mt-5 gray font-13"> |
| | | <text>客户: {{item.vipName}}</text> |
| | | <navigator :url="'../../member/detail?id='+item.vipId" hover-class="none" style="padding-right: 50px;">客户: {{item.vipName}}</navigator> |
| | | <view class="flex align-center" v-if="item.nextNotifyTime"> |
| | | <text class="iconfont iconzhong mr-5"></text> |
| | | <text>{{item.nextNotifyTime}}</text> |
| | | </view> |
| | | </view> |
| | | <view class="mt-5 gray font-13"> |
| | | <text>订单:{{item.orderAbstract}}</text> |
| | | <view class="flex align-center justify-between mt-5 gray font-13"> |
| | | <text style="padding-right: 50px;" @click="toOrder(item)">订单: {{item.orderAbstract}}</text> |
| | | </view> |
| | | <view class="right mt-5"> |
| | | <text class="iconfont" :class="item.zans && item.zans.indexOf(userInfo.id)>-1?'blue iconlove-b':'iconlove-b1'" @click="thumbsUp(item)"></text> |
| | |
| | | staffIds: staffIds, |
| | | vipIds: vipIds |
| | | }, 'POST').then((res) => { |
| | | console.log(res.rows) |
| | | if(res.status == 200){ |
| | | this.list = res.rows |
| | | } |
| | |
| | | this.startTime = data.startTime; |
| | | this.endTime = data.endTime; |
| | | this.reload(); |
| | | }, |
| | | toOrder(item){ |
| | | if(item.orderId){ |
| | | uni.navigateTo({ |
| | | url: '../orderDetail?orderId='+item.orderId |
| | | }) |
| | | } |
| | | if(item.serviceId){ |
| | | uni.navigateTo({ |
| | | url: '../serviceOrderDetail?id='+item.serviceId |
| | | }) |
| | | } |
| | | } |
| | | } |
| | | } |