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

统计

... ... @@ -9,13 +9,13 @@
<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="" <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" <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;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="1" <notenpty name="$status"><php>if(in_array(1,$status)){echo 'checked';}</php></notenpty> />已下单</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="2" <notenpty name="$status"><php>if(in_array(2,$status)){echo 'checked';}</php></notenpty> />已取货</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="3" <notenpty name="$status"><php>if(in_array(3,$status)){echo 'checked';}</php></notenpty> />已到达</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="4" <notenpty name="$status"><php>if(in_array(4,$status)){echo 'checked';}</php></notenpty> />到达分拣厂</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="5" <notenpty name="$status"><php>if(in_array(5,$status)){echo 'checked';}</php></notenpty> />已分类</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="6" <notenpty name="$status"><php>if(in_array(6,$status)){echo 'checked';}</php></notenpty> />已再生</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label><input type="checkbox" class="js-check one" data-yid="js-check-y" name="status[]" value="-1" <notenpty name="$status"><php>if(in_array(-1,$status)){echo 'checked';}</php></notenpty> />已取消</label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
收货地址:
<select class="form-control" name="receiver" style="width: 140px;">
... ...