modifyRoomStock.html
2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<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()" />
<input type="button" class="stdbtn btn_red" value="关闭" ng-click="closeNgDialog()" style="margin-right: 10px;"/>
</div>
<!--subcontent-->
</div>