order("list_order asc") ->paginate(20); $page = $lists->render(); $this->assign('lists', $lists); $this->assign("page", $page); return $this->fetch(); } public function del(){ $id = $this->request->param('id', 0, 'intval'); $rs = DB::name('charge_rules')->where("id={$id}")->delete(); if(!$rs){ $this->error("删除失败!"); } $this->resetcache(); $this->success("删除成功!",url("Chargerules/index")); } //排序 public function listOrder() { $model = DB::name('charge_rules'); parent::listOrders($model); $this->resetcache(); $this->success("排序更新成功!"); } public function add(){ $configpub=getConfigPub(); $this->assign('name_coin',$configpub['name_coin']); return $this->fetch(); } public function addPost(){ if ($this->request->isPost()) { $data = $this->request->param(); $configpub=getConfigPub(); $name=$data['name']; $money=$data['money']; $coin=$data['coin']; $give=$data['give']; if(!$name){ $this->error("请填写名称"); } if(!$money){ $this->error("请填写价格"); } if(!is_numeric($money)){ $this->error("价格必须为数字"); } if($money<=0||$money>99999999){ $this->error("价格在0.01-99999999之间"); } $data['money']=round($money,2); if(!$coin){ $this->error("请填写".$configpub['name_coin']); } if(!is_numeric($coin)){ $this->error($configpub['name_coin']."必须为数字"); } if($coin<1||$coin>99999999){ $this->error($configpub['name_coin']."在1-99999999之间"); } if(floor($coin)!=$coin){ $this->error($configpub['name_coin']."必须为整数"); } if($give==''){ $this->error("赠送".$configpub['name_coin']."不能为空"); } if(!is_numeric($give)){ $this->error("赠送".$configpub['name_coin']."必须为数字"); } if($give<0||$give>99999999){ $this->error("赠送".$configpub['name_coin']."在0-99999999之间"); } if(floor($give)!=$give){ $this->error("赠送".$configpub['name_coin']."必须为整数"); } $data['addtime']=time(); $id = DB::name('charge_rules')->insertGetId($data); if(!$id){ $this->error("添加失败!"); } $this->resetcache(); $this->success("添加成功!"); } } public function edit(){ $id = $this->request->param('id', 0, 'intval'); $data=Db::name('charge_rules') ->where("id={$id}") ->find(); if(!$data){ $this->error("信息错误"); } $configpub=getConfigPub(); $this->assign('name_coin',$configpub['name_coin']); $this->assign('data', $data); return $this->fetch(); } public function editPost(){ if ($this->request->isPost()) { $data = $this->request->param(); $configpub=getConfigPub(); $name=$data['name']; $money=$data['money']; $coin=$data['coin']; if(!$name){ $this->error("请填写名称"); } if(!$money){ $this->error("请填写价格"); } if(!is_numeric($money)){ $this->error("价格必须为数字"); } if($money<=0||$money>99999999){ $this->error("价格在0.01-99999999之间"); } $data['money']=round($money,2); if(!$coin){ $this->error("请填写".$configpub['name_coin']); } if(!is_numeric($coin)){ $this->error($configpub['name_coin']."必须为数字"); } if($coin<1||$coin>99999999){ $this->error($configpub['name_coin']."在1-99999999之间"); } if(floor($coin)!=$coin){ $this->error($configpub['name_coin']."必须为整数"); } $give=$data['give']; //----------------- if($give==''){ $this->error("赠送".$configpub['name_coin']."不能为空"); } if(!is_numeric($give)){ $this->error("赠送".$configpub['name_coin']."必须为数字"); } if($give<0||$give>99999999){ $this->error("赠送".$configpub['name_coin']."在0-99999999之间"); } if(floor($give)!=$give){ $this->error("赠送".$configpub['name_coin']."必须为整数"); } $data['uptime']=time(); $rs = DB::name('charge_rules')->update($data); if($rs===false){ $this->error("修改失败!"); } $this->resetcache(); $this->success("修改成功!"); } } public function resetcache(){ $key='getChargeRules'; $rules= DB::name("charge_rules") ->field('id,coin,money,give') ->order('list_order asc') ->select(); if($rules){ setcaches($key,$rules); }else{ delcache($key); } return 1; } }