瀏覽代碼

房价修改增加校验

htc 4 月之前
父節點
當前提交
a1cfa14fd3
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. 5 5
      pages/house/index.vue

+ 5 - 5
pages/house/index.vue

@@ -141,7 +141,7 @@
 
 		</u-popup>
 		<!-- 刷新 -->
-		<u-icon name="reload" @tap="init()" customStyle="position: fixed;z-index: 99;right: 280rpx;top: 68rpx;padding-left: 100rpx;" size="42"></u-icon>
+		<!-- <u-icon name="reload" @tap="init()" customStyle="position: fixed;z-index: 99;right: 280rpx;top: 68rpx;padding-left: 100rpx;" size="42"></u-icon> -->
 	</view>
 </template>
 
@@ -282,10 +282,10 @@
 
 				})
 			},
-			changePrice() {
-				if(!this.newPrice&&this.newPrice!=0){
-					return this.$showToast('请填写新价格');
-				}
+			changePrice() {
+				if(!this.newPrice) return this.$showToast('请填写新价格');
+				if(+this.newPrice<=0) return this.$showToast('新价格须大于0');
+				
 				this.$api
 					.post("/merchant/hotel/room/state/updRoomPrice", {
 						idList: this.checkDataRoomId,