瀏覽代碼

opt:选择房间页面,无可用房间时增加提示

LiChengjin 2 月之前
父節點
當前提交
dbe7dd948d
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      subpkg_checkin/selectRoom/selectRoom.vue

+ 9 - 0
subpkg_checkin/selectRoom/selectRoom.vue

@@ -95,6 +95,15 @@
 			this.roomType = options.roomType
 			//查询该房间类型在订单时间段内可用的所有房间
 			await this.getRoomInfo();
+			if (this.roomList.length === 0) {
+				uni.showModal({
+					title: '该房型无可用房间可供选择,请选择其它房型',
+					showCancel: false,
+					success() {
+						uni.navigateBack()
+					}
+				})
+			}
 		},
 		// #ifdef MP-WEIXIN
 		onShareAppMessage(info) {