| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 | 
							- <?php
 
- // +—————————————————————————————————————————————————————————————————————
 
- // | Created by Yunbao
 
- // +—————————————————————————————————————————————————————————————————————
 
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
 
- // +—————————————————————————————————————————————————————————————————————
 
- // | Author: https://gitee.com/yunbaokeji
 
- // +—————————————————————————————————————————————————————————————————————
 
- // | Date: 2022-02-17
 
- // +—————————————————————————————————————————————————————————————————————
 
- /**
 
-  * 充值规则
 
-  */
 
- namespace app\admin\controller;
 
- use cmf\controller\AdminBaseController;
 
- use think\Db;
 
- class ChargerulesController extends AdminbaseController {
 
- 		
 
-     public function index(){
 
-         
 
-         $lists = Db::name("charge_rules")
 
- 			->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;
 
-     }
 
- }
 
 
  |