modifyRoomStock.html 2.1 KB
<style>
	.contentwrapper{padding: 5px;}
	.ngdialog.ngdialog-theme-plain .ngdialog-content{padding: 0em 0em 1em 0em; width: 500px;}
	.ngDialogHeader{width: 100%; height: 35px; background-color: #D9DFF0}
	.ngDialogTitle{height: 35px; line-height: 35px; color: #fff; font-weight: bold; font-size: 16px; margin-left: 5px;}
	.commentTitle{color: #808080;}
	.commentArea {width: 480px; margin-left: 6px; margin-bottom: 20px;}
	.commentBuyerTitle{color: #8AE53F; font-weight: bold;}
</style>
<div class="ngDialogHeader">
	<span class="ngDialogTitle">房型库存修改</span>
</div>
<div id="contentwrapper" class="contentwrapper">
	<div id="basicform" class="subcontent">
		<!--contenttitle-->
	<form class="stdform stdform2" method="post" action="javascript:void(0);">
			<p>
				<label>市场价<span style="color: red;font-style: inherit;padding-left: 5px">(输入有效的金额格式)</span></label>
				<span class="field">
					<input type="text" id="openTime" class="longinput"
							ng-model="param.price" ng-value="{{param.price}}" />
				</span>
			</p>
			<p>
				<label>积分兑换价<span style="color: red;font-style: inherit;padding-left: 5px">(输入有效的整数)</span></label>
				<span class="field">
					<input type="text" id="firstname2" class="longinput" 
							ng-model="param.integral" ng-value="{{param.integral}}" />
				</span>
			</p>
			<p>
				<label>数量<span style="color: red;font-style: inherit;padding-left: 5px">(输入整数)</span></label>
				<span class="field">
					<input type="text" id="firstname2" class="longinput" 
							ng-model="param.number" ng-value="{{param.number}}" />
				</span>
			</p>
			<p>
				<label>是否可住</label>
				<span class="field">
					<select ng-model="param.isOpen">
						<option value="1">可住</option>
						<option value="0">不可住</option>
					</select>
				</span>
			</p>
		</form>
		<br />
	</div>
	<div style="text-align: right;">
	<input type="button"  class="stdbtn btn_blue"  value="更新" ng-click="updateRoomStock()" /> &nbsp;&nbsp;
	<input type="button" class="stdbtn btn_red" value="关闭" ng-click="closeNgDialog()" style="margin-right: 10px;"/>
</div>
	<!--subcontent-->
</div>