123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <?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 LevelanchorController extends AdminbaseController {
-
- public function index(){
-
- $lists = Db::name("level_anchor")
- ->order("levelid asc")
- ->paginate(20);
-
- $lists->each(function($v,$k){
- $v['thumb']=get_upload_path($v['thumb']);
- $v['thumb_mark']=get_upload_path($v['thumb_mark']);
- $v['bg']=get_upload_path($v['bg']);
- return $v;
- });
-
- $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('level_anchor')->where("id={$id}")->delete();
- if(!$rs){
- $this->error("删除失败!");
- }
-
-
-
- $this->resetcache();
- $this->success("删除成功!",url("levelanchor/index"));
-
- }
- public function add(){
- return $this->fetch();
- }
-
- public function addPost(){
- if ($this->request->isPost()) {
-
- $data = $this->request->param();
-
- $levelid=$data['levelid'];
- $levelname=$data['levelname'];
- if($levelid==""){
- $this->error("等级不能为空");
- }
- if(!is_numeric($levelid)){
- $this->error("等级必须为数字");
- }
- if($levelid<1){
- $this->error("等级必须大于1");
- }
- if($levelid>99999999){
- $this->error("等级必须在1-99999999之间");
- }
- if(floor($levelid)!=$levelid){
- $this->error("等级必须为整数");
- }
-
- $check = Db::name('level_anchor')->where(["levelid"=>$levelid])->find();
- if($check){
- $this->error('等级不能重复');
- }
- if($levelname==''){
- $this->error('请填写等级名称');
- }
-
- $level_up=$data['level_up'];
- if($level_up==""){
- $this->error("请填写等级经验上限");
- }
- if(!is_numeric($level_up)){
- $this->error("等级经验上限必须为数字");
- }
- if($level_up<1||$level_up>99999999){
- $this->error("等级经验上限必须为1-99999999数字");
- }
- if(floor($level_up)!=$level_up){
- $this->error("等级经验上限必须为整数");
- }
-
- $thumb=$data['thumb'];
- if($thumb==""){
- $this->error("请上传图标");
- }
- $data['thumb']=set_upload_path($thumb);
-
- $thumb_mark=$data['thumb_mark'];
- if($thumb_mark==""){
- $this->error("请上传头像角标");
- }
- $data['thumb_mark']=set_upload_path($thumb_mark);
- $bg=$data['bg'];
- if($bg==""){
- $this->error("请上传背景图片");
- }
- $data['bg']=set_upload_path($bg);
-
- $data['addtime']=time();
-
- $id = DB::name('level_anchor')->insertGetId($data);
- if(!$id){
- $this->error("添加失败!");
- }
-
-
- $this->resetcache();
- $this->success("添加成功!");
-
- }
- }
-
- public function edit(){
-
- $id = $this->request->param('id', 0, 'intval');
-
- $data=Db::name('level_anchor')
- ->where("id={$id}")
- ->find();
- if(!$data){
- $this->error("信息错误");
- }
-
- $this->assign('data', $data);
- return $this->fetch();
- }
-
- public function editPost(){
- if ($this->request->isPost()) {
-
- $data = $this->request->param();
-
- $id=$data['id'];
- $levelid=$data['levelid'];
- $levelname=$data['levelname'];
- if($levelid==""){
- $this->error("等级不能为空");
- }
-
- if($levelid==""){
- $this->error("等级不能为空");
- }
- if(!is_numeric($levelid)){
- $this->error("等级必须为数字");
- }
- if($levelid<1){
- $this->error("等级必须大于1");
- }
- if($levelid>99999999){
- $this->error("等级必须在1-99999999之间");
- }
- if(floor($levelid)!=$levelid){
- $this->error("等级必须为整数");
- }
- $check = Db::name('level_anchor')->where([['levelid','=',$levelid],['id','<>',$id]])->find();
- if($check){
- $this->error('等级不能重复');
- }
- if($levelname==''){
- $this->error('请填写等级名称');
- }
-
- $level_up=$data['level_up'];
- if($level_up==""){
- $this->error("请填写等级经验上限");
- }
- if(!is_numeric($level_up)){
- $this->error("等级经验上限必须为数字");
- }
- if($level_up<1||$level_up>99999999){
- $this->error("等级经验上限必须为1-99999999数字");
- }
- if(floor($level_up)!=$level_up){
- $this->error("等级经验上限必须为整数");
- }
-
- $thumb=$data['thumb'];
- if($thumb==""){
- $this->error("请上传图标");
- }
- $thumb_old=$data['thumb_old'];
- if($thumb!=$thumb_old){
- $data['thumb']=set_upload_path($thumb);
- }
-
- $thumb_mark=$data['thumb_mark'];
- if($thumb_mark==""){
- $this->error("请上传头像角标");
- }
- $thumb_mark_old=$data['thumb_mark_old'];
- if($thumb_mark!=$thumb_mark_old){
- $data['thumb_mark']=set_upload_path($thumb_mark);
- }
- $bg=$data['bg'];
- if($bg==""){
- $this->error("请上传背景图片");
- }
- $bg_old=$data['bg_old'];
- if($bg_old!=$bg){
- $data['bg']=set_upload_path($bg);
- }
- unset($data['thumb_old']);
- unset($data['thumb_mark_old']);
- unset($data['bg_old']);
-
- $rs = DB::name('level_anchor')->update($data);
- if($rs===false){
- $this->error("修改失败!");
- }
-
-
-
- $this->resetcache();
- $this->success("修改成功!");
- }
- }
-
- public function resetcache(){
- $key='levelanchor';
-
- $level= Db::name("level_anchor")->order("level_up asc")->select();
- if($level){
- setcaches($key,$level);
- }else{
- delcache($key);
- }
-
- return 1;
- }
-
- }
|