订单页面 状态修改
This commit is contained in:
parent
a401ad26df
commit
6898967190
|
@ -276,16 +276,18 @@
|
|||
服务完成
|
||||
</view>
|
||||
<view class="footers-btn footers-true" @click="nineState(order.ordersId)"
|
||||
v-if="order.status == 9&& !item.refusalContentl"
|
||||
v-if="order.status == 9&&!order.refusalContentl"
|
||||
>
|
||||
确认接单
|
||||
</view>
|
||||
<view class="footers-btn footers-bor" v-if="order.status == 9&& !item.refusalContentl"
|
||||
<view class="footers-btn footers-bor" v-if="order.status == 9&&!order.refusalContentl"
|
||||
@click="toggleJ('bottom',order.ordersId)"
|
||||
>
|
||||
拒单申请
|
||||
</view>
|
||||
<view class="footers-btn footers-bor" @click="goChat">联系客服</view>
|
||||
<u-button :custom-style="customStyle" shape="circle" :plain="true"
|
||||
@click="bindphone(order.phone)">联系客户</u-button>
|
||||
<!-- <view class="dian" @click="toggle('bottom',order)" v-if="order.status == 6">...</view> -->
|
||||
</view>
|
||||
</view>
|
||||
|
@ -319,7 +321,7 @@
|
|||
</u-popup>
|
||||
<view>
|
||||
<!-- 普通弹窗 -->
|
||||
<uni-popup ref="popup" type="bottom" background-color="#fff">
|
||||
<uni-popup ref="popupW" type="bottom" background-color="#fff">
|
||||
<view class="popup-content">
|
||||
<view class="popup-head">
|
||||
<span></span>
|
||||
|
@ -373,7 +375,7 @@
|
|||
<view class="popup-mian">
|
||||
<view class="popup-view">
|
||||
<view class="beizhu">
|
||||
<view class="popup-title">拒绝申请原因</view>
|
||||
<view class="popup-title">拒单申请原因</view>
|
||||
<textarea class="beizhu-textarea" @input="refusa" placeholder="拒绝申请原因,请在此输入" name="" id="" cols="30" rows="10"></textarea>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -665,7 +667,7 @@
|
|||
toggle(type,order) {// 弹出框
|
||||
this.type = type
|
||||
// open 方法传入参数 等同在 uni-popup 组件上绑定 type属性
|
||||
this.$refs.popup.open(type);
|
||||
this.$refs.popupW.open(type);
|
||||
this.$Request.getT('/app/artificer/getPingjiaTagList').then(res => {
|
||||
if (res.code == 0) {
|
||||
this.fuwuBtn=res.data;
|
||||
|
@ -1393,7 +1395,7 @@
|
|||
|
||||
closePopup(type){// 关闭弹出框
|
||||
this.type = type
|
||||
this.$refs.popup.close(type);
|
||||
this.$refs.popupW.close(type);
|
||||
},
|
||||
|
||||
}
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
<u-button :custom-style="customStyle1" shape="circle" :plain="true"
|
||||
@click="fuwuOrder(item)" v-if="item.status == 8">开始服务</u-button>
|
||||
<u-button :custom-style="customStyle1" shape="circle" :plain="true"
|
||||
@click="goChat">转待补单</u-button>
|
||||
@click="goChat" v-if="item.status == 8">转待补单</u-button>
|
||||
|
||||
<u-button v-if="item.status == 6" :custom-style="customStyle1" shape="circle" :plain="true"
|
||||
@click="cancel(item)">服务完成</u-button>
|
||||
|
|
Loading…
Reference in New Issue