|
@@ -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,
|