我們在開發項目的時候經常會在後臺管理時用到批量展示功能來動態的修改資料庫的值。下麵以修改資料庫的status狀態值來實現批量展示功能。批量選中功能引用js來實現。前端html代碼: js代碼使用ajax提交代碼到後臺GoodsShow()方法: 後臺GoodsShow()方法: ...
我們在開發項目的時候經常會在後臺管理時用到批量展示功能來動態的修改資料庫的值。下麵以修改資料庫的status狀態值來實現批量展示功能。批量選中功能引用js來實現。
前端html代碼:
<table class="mlt" style="border:1px solid red;"> <thead> <tr> <if condition="$type eq 'pg'"> <th colspan="9" style="text-align:left;padding-left:20px;background-color:#e5e4e4;color:#c10e23;">實物商品</th> <else/> <th colspan="8" style="text-align:left;padding-left:20px;background-color:#e5e4e4;color:#c10e23;">虛擬商品</th> </if> <th style="background-color:#e5e4e4;"> <a href="{:U('Mall/AddMall',array('type'=>$type))}" style="color:#c10e23;text-decoration:none;">+新增商品</a></th> </tr> <tr> <th style="background-color:#f7f7f7;width:8%;text-align:center;" class="lf"> <input name='chkAll' type='checkbox' id='chkAll' onClick="checkAll(this, 'id[]')" value='checkbox' /> 全選 </th> <th style="background-color:#f7f7f7;width:8%;" class="lf">商品編號</th> <th style="background-color:#f7f7f7;width:13%;" class="lf">名稱</th> <th style="background-color:#f7f7f7;width:18%;" class="lf">標題</th> <if condition="$type eq 'pg'"> <th style="background-color:#f7f7f7;width:8%;" class="lf">品牌</th> </if> <th style="background-color:#f7f7f7;width:8%;" class="lf">組別</th> <th style="background-color:#f7f7f7;width:5%;" class="lf">排序</th> <th style="background-color:#f7f7f7;width:5%;" class="lf">狀態</th> <th style="background-color:#f7f7f7;width:10%;">圖標</th> <th style="background-color:#f7f7f7;text-align:center;" class="lf">操作</th> </tr> </thead> <tbody> <volist name="list" id="vo"> <tr> <td class="lf" style="text-align:center;"> <input name='id[]' type='checkbox' value='{$vo.id}' onClick="checkItem(this, 'chkAll')"> </td> <td class="lf">{$vo['code']}</td> <td class="lf">{$vo['name']}</td> <td class="lf">{$vo['title']}</td> <if condition="$type eq 'pg'"> <td class="lf">{$vo['brand']}</td> </if> <td class="lf">{$vo['ggroup']}</td> <td class="lf">{$vo['sortno']}</td> <td class="lf"><if condition="$vo['status'] eq 1">展示<else/>不展示</if></td> <td><img src="{$vo['base_img']}" style="width:40px;" /></td> <td class="lf" style="text-align:center;"> <a href="{:U('Mall/NextLevel',array('pid'=>$vo['id']))}" class='cz' style="text-decoration:none;">編輯子信息</a> <a href="{:U('Mall/UpdateMall',array('id'=>$vo['id']))}" class='cz' style="text-decoration:none;margin:0 7px;">編輯</a> <a href="{$Think.config.WEB_URL}/Shop/GoodsDetails.html?pid={$vo['id']}&type={$vo['type']}" class='cz' style="text-decoration:none;" target="_Blank">查看</a> </td> </tr> </volist> <tr height="45"> <td colspan="10" style="text-align:left;padding-left:40px;"> <input type="button" id="btn_show" value="批量展示" class="btn_normal" style="width:100px;margin-left:20px;"> </td> </tr> </tbody> </table>
<div>{$page}</div>
js代碼使用ajax提交代碼到後臺GoodsShow()方法:
<script type="text/javascript"> var ids = []; //把得到的is轉化為數組形式 $('#btn_show').click(function(){ btnCheck('展示'); data = { "ids":ids }; $.ajax({ type:"POST", url:"{:U('Mall/GoodsShow')}", data:data, //dataType:"json", success:function(msg){ if(msg == 00){ //如果msg=00則修改成功 alert("批量展示成功"); window.location.href='/index.php/Admin/Mall/MallList'; //修改完成後自動刷新 }else{ alert("批量展示失敗,請重新編輯"); } }, error:function(){ alert("批量編輯失敗,請重新編輯"); //錯誤提示 } }); });function btnCheck(info){ var obj = $("input[name='id[]']:checked").each(function(){ //得到選中的id的每一個值並且這個值為一個數組 ids.push($(this).val()); }); if (ids == false) { alert("請選定要"+info+"的商品"); return false; }else { return ids; } } </script>
後臺GoodsShow()方法:
public function GoodsShow(){
$goods=M('shop_goods_info'); //實例化要使用的數據表
$data = I(); //獲取前臺頁面獲取的id值(這個值為一個一位數組)
//var_dump(I('ids'));die(); //列印
$id=implode(',',I('ids')); //把得到的這個數組用implode方法拆分
//var_dump(I('id'));die(); //列印查看
$order=$goods->where("id in ($id)")->setField('status','1'); //用得到的$id的值匹配資料庫中的id值,並設置id下的status欄位值為1.
if($order>=1){ // 如果...else...
$remark="00";
}else{
$remark="01";
}
echo $remark;
}