modifyRoomStock.html 1.3 KB
<!--fixed layout-->
	<div  id="kz_msg_fix_block">
		<!--遮罩层-->
		<!--内容层-->
		<div class="content_block">
			<h4 class="title text-ellipsis border-box">房型库存修改</h4>
			<div class="table">
				<table>
					<tbody>
						<tr>
							<td><span>市场价</span><span class="tips">(输入有效的金额格式)<span></td>
							<td><input type="text" placeholder="0.00" ng-model="param.price" ng-value="{{param.price}}"></td>
						</tr>
						<tr>
							<td><span>积分兑换价</span><span class="tips">(输入有效的整数)<span></td>
							<td><input type="text" placeholder="0" ng-model="param.integral" ng-value="{{param.integral}}"></td>
						</tr>
						<tr>
							<td><span>数量</span><span class="tips">(输入有效的整数)<span></td>
							<td><input type="text" placeholder="0" ng-model="param.number" ng-value="{{param.number}}"></td>
						</tr>
						<tr>
							<td><span>是否可住</span></td>
							<td>
								<select ng-model="param.isOpen">
									<option value="1">可住</option>
									<option value="0">不可住</option>
								</select>
							</td>
						</tr>
					</tbody>
				</table>
				<a id="gxRoomBtn" class="gx" href="javascript:void(0);" title="#" ng-click="updateRoomStock()">更新</a>
			</div>
		</div>
	</div>