Commit 3174b192 by zhangzhen

优化

parent dffa6666
...@@ -8,7 +8,15 @@ ...@@ -8,7 +8,15 @@
<text <text
class="text-title text-xl text-bold">{{roomInfo.name||'凑角'}}{{roomInfo.roomType?'【'+roomTypeEnum[roomInfo.roomType]+'】':''}}</text> class="text-title text-xl text-bold">{{roomInfo.name||'凑角'}}{{roomInfo.roomType?'【'+roomTypeEnum[roomInfo.roomType]+'】':''}}</text>
<view v-if="roomInfo.isDirtyRoom >=1" class="status-icon-box">
<view v-if="roomInfo.roomStat >= 3" class="status-icon-box">
<view class="status-box" :class="'status-box-1'">
<text>维护中</text>
</view>
<image class="img" :src="assetsPath+'/fa_icon_1.png'" mode="widthFix"></image>
</view>
<view v-else-if="roomInfo.isDirtyRoom >=1" class="status-icon-box">
<view class="status-box" :class="'status-box-1'"> <view class="status-box" :class="'status-box-1'">
<text>未保洁</text> <text>未保洁</text>
</view> </view>
...@@ -610,12 +618,12 @@ ...@@ -610,12 +618,12 @@
this.orderTypeList = this.orderTypeList.filter(item => item.type == 1) this.orderTypeList = this.orderTypeList.filter(item => item.type == 1)
} }
if(this.roomInfo.isDirtyRoom >=1){ // if(this.roomInfo.isDirtyRoom >=1){
uni.showToast({ // uni.showToast({
icon:"none", // icon:"none",
title:'当前房间未保洁,无法预定,请选择其他房间' // title:'当前房间未保洁,无法预定,请选择其他房间'
}) // })
} // }
this.onGetSortDistance() this.onGetSortDistance()
} }
...@@ -1147,13 +1155,13 @@ ...@@ -1147,13 +1155,13 @@
}) })
return; return;
} }
if(this.roomInfo.isDirtyRoom >=1){ // if(this.roomInfo.isDirtyRoom >=1){
uni.showToast({ // uni.showToast({
icon:"none", // icon:"none",
title:'当前房间未保洁,无法预定,请选择其他房间' // title:'当前房间未保洁,无法预定,请选择其他房间'
}) // })
return; // return;
} // }
let nowDate = moment().format("MMDD") let nowDate = moment().format("MMDD")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment