room.html
11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
{template 'common/header'}
{template 'common'}
<div class="main">
<ul class="nav nav-tabs">
<li {if $op == 'post' && !$couponid}class="active"{/if}><a href="javascript:;" data-toggle="modal" data-target="#store-modal">添加商品</a></li>
<li class="active"><a href="{php echo $this->createWebUrl('goodsmanage', array('hotelid' => $rid, 'is_hotel' => 1));}">商品管理</a></li>
</ul>
<div class="modal fade" id="store-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">选择你要创建的店铺商品</h4>
</div>
<div class="modal-body clearfix form-horizontal">
{if !empty($stores)}
{loop $stores $store}
{if $store['store_type'] == 1}
<div class="form-group marbot0">
<label class="col-xs-12 col-sm-3 col-md-2 control-label"></label>
<div class="col-sm-9 col-xs-12">
<label class="radio-inline">
<input type="radio" name="type" value="{$store['id']}"/>
{$store['title']}
</label>
<div class="help-block">酒店</div>
</div>
</div>
{else}
<div class="form-group marbot0">
<label class="col-xs-12 col-sm-3 col-md-2 control-label"></label>
<div class="col-sm-9 col-xs-12">
<label class="radio-inline">
<input type="radio" name="type" value="{$store['id']}"/>
{$store['title']}
</label>
<div class="help-block">普通店铺</div>
</div>
</div>
{/if}
{/loop}
{/if}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" onclick="location.href='{php echo $this->createWeburl('goodsmanage', array('op' => 'edit'))}&store_base_id=' + $('#store-modal input[type=radio]:checked').val()">确定</button>
</div>
</div>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">筛选</div>
<div class="panel-body">
<form action="./index.php" method="get" class="form-horizontal" role="form">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="wn_storex" />
<input type="hidden" name="do" value="goodsmanage" />
<input type="hidden" name="store_type" value="{$store_type}">
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">店铺类型</label>
<div class="col-sm-7 col-lg-9 col-xs-12 btn-group">
<a href="{php echo filter_url('store_type:0');}" class="btn {if $store_type == 0}btn-primary{else}btn-default{/if}">普通</a>
<a href="{php echo filter_url('store_type:1');}" class="btn {if $store_type == 1}btn-primary{else}btn-default{/if}">酒店</a>
</div>
</div>
</form>
<form action="./index.php" method="get" class="form-horizontal" role="form">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="wn_storex" />
<input type="hidden" name="do" value="goodsmanage" />
<input type="hidden" name="store_type" value="{$store_type}">
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">店铺</label>
<div class=" col-xs-12 col-sm-8 col-lg-9">
<input class="form-control" name="hoteltitle" type="text" value="{if !empty($hotel)}{$hotel['title']}{else}{$_GPC['hoteltitle']}{/if}">
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">商品名称</label>
<div class="col-xs-12 col-sm-8 col-lg-9">
<input class="form-control" name="title" id="" type="text" value="{$_GPC['title']}">
</div>
<div class=" col-xs-12 col-sm-2 col-lg-2">
<button class="btn btn-default"><i class="fa fa-search"></i> 搜索</button>
</div>
</div>
<div class="form-group">
</div>
</form>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body table-responsive">
<!--<button class="btn pull-left btn-primary span2" id="room_status" onClick="location.href='{php echo $this->createWebUrl('room_status')}'">批量修改房态</button>-->
<!--<button class="btn pull-left btn-primary span2" id="room_price" onClick="location.href='{php echo $this->createWebUrl('room_price')}'">批量修改房价</button>-->
<!--<br/><br/>-->
<table class="table table-hover" >
<thead class="navbar-inner">
<tr>
<th class='with-checkbox' style='width:30px;'>
<input type="checkbox" class="check_all" />
</th>
<th style="width:120px;">店铺</th>
<th style="width:100px;">一级分类</th>
<th style="width:100px;">二级分类</th>
<th style="width:150px;">商品名称</th>
{if !empty($store_type)}
<th style="width:100px;">商品类型</th>
<th style="width:100px;">房型排序号</th>
{else}
<th style="width:100px;">商品排序号</th>
{/if}
<th style='width:200px;'>前台价(原价)</th>
<th style='width:120px;'>优惠价(现价)</th>
<th style='width:100px;'>积分</th>
<th style='width:100px;'>状态</th>
<th style="width:420px;">操作</th>
</tr>
</thead>
<tbody>
{loop $list $item}
<tr>
<td class="with-checkbox">
<input type="checkbox" name="check" value="{$item['id']}">
</td>
<td>{$item['hoteltitle']}</td>
<td>{$item['pcate']}</td>
{if $item['ccate'] <> '0'}
<td>{$item['ccate']}</td>
{else}
<td> </td>
{/if}
<td>{$item['title']}</td>
{if $store_type == 1}
{if $item['is_house'] == 1}
<td>房型</td>
{else}
<td>非房型</td>
{/if}
{/if}
<td>{$item['sortid']}</td>
<td>{$item['oprice']}</td>
<td>{$item['cprice']}</td>
<td>{$item['score']}</td>
<td>{if $item['status']==1}
<span class='label label-success'>显示</span>
{else}
<span class='label label-default'>隐藏</span>
{/if}
</td>
<td>
{if !empty($store_type)}
<a href="{php echo $this->createWebUrl('goodsmanage',array('op'=>'copyroom','store_base_id'=>$item['hotelid'],'id'=>$item['id']))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="复制商品">复制商品</a>
<a href="{php echo $this->createWebUrl('goodscomment',array('store_base_id'=>$item['hotelid'],'id'=>$item['id'],'store_type'=> $store_type))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="查看评价">查看评价</a>
<a href="{php echo $this->createWebUrl('order',array('hotelid'=>$item['hotelid'],'roomid'=>$item['id'], store_type => $store_type))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="订单查看">订单查看</a>
{else}
<a href="{php echo $this->createWebUrl('goodsmanage',array('op'=>'copyroom','store_base_id'=>$item['store_base_id'],'id'=>$item['id']))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="复制商品">复制商品</a>
<a href="{php echo $this->createWebUrl('goodscomment',array('store_base_id'=>$item['store_base_id'],'id'=>$item['id'],'store_type'=> $store_type))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="查看评价">查看评价</a>
<a href="{php echo $this->createWebUrl('order',array('hotelid'=>$item['store_base_id'],'roomid'=>$item['id'], store_type => $store_type))}" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="订单查看">订单查看</a>
{/if}
<a class="btn btn-default" data-toggle="tooltip" data-placement="bottom" href="{php echo $this->createWebUrl('goodsmanage',array('op'=>'edit','store_type'=> $store_type,'id'=>$item['id'],'store_base_id'=>$item['store_base_id']))}" title="编辑"><i class="fa fa-edit"></i></a>
{if $item['status']==0}
<a class="btn btn-default" title="显示" href="#" onclick="drop_confirm('您确定要显示此商品吗?', '{php echo $this->createWebUrl('goodsmanage',array('op'=>'status','status'=>1, 'id'=>$item['id'], 'store_type' => $store_type))}');" data-toggle="tooltip" data-placement="bottom"><i class="fa fa-play"></i></a>
{elseif $item['status']==1}
<a class="btn btn-default" title="隐藏" href="#" onclick="drop_confirm('您确定要隐藏此商品吗?', '{php echo $this->createWebUrl('goodsmanage',array('op'=>'status','status'=>0, 'id'=>$item['id'], 'store_type' => $store_type))}');" data-toggle="tooltip" data-placement="bottom"><i class="fa fa-stop"></i></a>
{/if}
<a class="btn btn-default" href="#" onclick="drop_confirm('您确定要删除吗?', '{php echo $this->createWebUrl('goodsmanage',array('op'=>'delete', 'id'=>$item['id'], 'store_type' => $store_type))}');" title="删除" data-toggle="tooltip" data-placement="bottom"><i class="fa fa-times"></i></a>
</td>
</tr>
{/loop}
<tr>
{if $store_type == 1}
<td colspan="12">
{else}
<td colspan="11">
{/if}
<input type="button" class="btn btn-primary" name="deleteall" value="删除选择的" />
<input type="button" class="btn btn-primary edit_all" name="showall" value="批量显示" />
<input type="button" class="btn btn-primary edit_all" name="hideall" value="批量隐藏" />
</td>
</tr>
</tbody>
<input name="token" type="hidden" value="{$_W['token']}" />
</table>
{$pager}
</div>
<script>
require(['bootstrap'],function($){
$('.btn').tooltip();
});
</script>
<script>
$(function(){
$(".check_all").click(function(){
var checked = $(this).get(0).checked;
$("input[type=checkbox]").prop("checked",checked);
});
$("input[name=deleteall]").click(function(){
var check = $("input[name='check']:checked");
if(check.length < 1){
alert('请选择要删除的记录!');
return false;
}
if( confirm("确认要删除选择的记录?")){
var id = new Array();
check.each(function(i){
id[i] = $(this).val();
});
$.post("{php echo $this->createWebUrl('goodsmanage',array('op'=>'deleteall'))}", {idArr:id},function(data){
if (data.errno == 0)
{
alert(data.errno);
location.reload();
} else {
alert(data.error);
}
},'json');
}
});
$(".edit_all").click(function(){
var name = $(this).attr('name');
var check = $("input:checked");
if(check.length<1){
alert('请选择要操作的记录!');
return false;
}
var id = new Array();
check.each(function(i){
id[i] = $(this).val();
});
$.post("{php echo $this->createWebUrl('goodsmanage',array('op'=>'showall', 'store_type'=>$store_type))}", {idArr:id,show_name:name},function(data){
if (data.errno ==0)
{
location.reload();
} else {
alert(data);
alert(data.error);
}
},'json');
});
});
</script>
<script>
function drop_confirm(msg, url){
if(confirm(msg)){
window.location = url;
}
}
</script>
{template 'common/footer'}