作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

统计

... ... @@ -9,24 +9,14 @@
<form class="well form-inline margin-top-20" method="post" action="{:url('Order/index')}">
订单状态:
<label><input type="checkbox" class="js-check-all all" data-direction="y" data-checklist="js-check-y" name="status[]" value="1" <empty name="$status">checked</empty> />全部</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="1" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 1">checked</if></foreach></notempty> />已下单</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="2" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 2">checked</if></foreach></notempty> />已取货</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="3" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 3">checked</if></foreach></notempty> />已到达</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="4" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 4">checked</if></foreach></notempty> />到达分拣厂</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="5" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 5">checked</if></foreach></notempty> />已分类</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="6" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq 6">checked</if></foreach></notempty> />已再生</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="-1" <notempty name="$status"><foreach name="$status" item="s"><if condition="$s eq -1">checked</if></foreach></notempty> />已取消</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<!--<select class="form-control" name="status" >-->
<!--<option value=''>全部</option>-->
<!--<option value="1" <if condition="$status eq 1">selected</if>>已下单</option>-->
<!--<option value="2" <if condition="$status eq 2">selected</if>>已取货</option>-->
<!--<option value="3" <if condition="$status eq 3">selected</if>>已到达</option>-->
<!--<option value="4" <if condition="$status eq 4">selected</if>>已到达绿色分拣厂</option>-->
<!--<option value="5" <if condition="$status eq 5">selected</if>>已分类</option>-->
<!--<option value="6" <if condition="$status eq 6">selected</if>>已再生利用</option>-->
<!--<option value="-1" <if condition="$status eq -1">selected</if>>已取消</option>-->
<!--</select> &nbsp;&nbsp;-->
<php>dump($status);exit();</php>
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="1" <if condition="$status eq 1">checked</if> />已下单</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="2" <if condition="$status eq 2">checked</if> />已取货</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="3" <if condition="$status eq 3">checked</if> />已到达</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="4" <if condition="$status eq 4">checked</if> />到达分拣厂</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="5" <if condition="$status eq 5">checked</if> />已分类</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="6" <if condition="$status eq 6">checked</if> />已再生</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="-1" <if condition="$status eq -1">checked</if> />已取消</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
收货地址:
<select class="form-control" name="receiver" style="width: 140px;">
<option value=''>全部</option>
... ...