Files
2019-02-28 19:48:21 +08:00

94 lines
3.7 KiB
PHP

<?php
/**
* tpshop
* ============================================================================
* 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
* 网站地址: http://www.tp-shop.cn
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
* 不允许对程序代码以任何形式任何目的的再发布。
* 采用最新Thinkphp5助手函数特性实现单字母函数M D U等简写方式
* ============================================================================
* Author: 当燃
* 专题管理
* Date: 2015-09-09
*/
namespace app\admin\controller;
use think\Page;
class Topic extends Base {
public function index(){
return $this->fetch();
}
public function topic(){
$act = I('get.act','add');
$this->assign('act',$act);
$topic_id = I('get.topic_id');
if($topic_id){
$topic_info = D('topic')->where('topic_id='.$topic_id)->find();
$this->assign('info',$topic_info);
}
$this->assign("URL_upload", U('Admin/Ueditor/imageUp',array('savepath'=>'topic')));
$this->assign("URL_fileUp", U('Admin/Ueditor/fileUp',array('savepath'=>'topic')));
$this->assign("URL_scrawlUp", U('Admin/Ueditor/scrawlUp',array('savepath'=>'topic')));
$this->assign("URL_getRemoteImage", U('Admin/Ueditor/getRemoteImage',array('savepath'=>'topic')));
$this->assign("URL_imageManager", U('Admin/Ueditor/imageManager',array('savepath'=>'topic')));
$this->assign("URL_imageUp", U('Admin/Ueditor/imageUp',array('savepath'=>'topic')));
$this->assign("URL_getMovie", U('Admin/Ueditor/getMovie',array('savepath'=>'topic')));
$this->assign("URL_Home", "");
return $this->fetch();
}
public function topicList(){
$Ad = M('topic');
$p = $this->request->param('p');
$res = $Ad->order('ctime')->page($p.',10')->select();
if($res){
foreach ($res as $val){
$val['topic_state'] = $val['topic_state']>1 ? '已发布' : '未发布';
$val['ctime'] = date('Y-m-d H:i',$val['ctime']);
$list[] = $val;
}
}
$this->assign('list',$list);// 赋值数据集
$count = $Ad->count();// 查询满足要求的总记录数
$Page = new Page($count,10);// 实例化分页类 传入总记录数和每页显示的记录数
$show = $Page->show();// 分页显示输出
$this->assign('pager',$Page);
$this->assign('page',$show);// 赋值分页输出
return $this->fetch();
}
public function topicHandle(){
$data = I('post.');
$data['topic_content'] = $_POST['topic_content']; // 这个内容不做转义
if($data['act'] == 'add'){
$data['ctime'] = time();
$find = db('topic')->where(['topic_title'=>$data['topic_title']])->find();
if($find){$this->ajaxReturn(['status'=>0,'msg'=>'已存在改标题','result'=>'']);}
$r = D('topic')->add($data);
}
if($data['act'] == 'edit'){
$where['topic_title'] = $data['topic_title'];
$where['topic_id'] = array('neq',$data['topic_id']);
$find = db('topic')->where($where)->find();
if($find){$this->ajaxReturn(['status'=>0,'msg'=>'已存在改标题','result'=>'']);}
$r = D('topic')->where('topic_id='.$data['topic_id'])->save($data);
}
if($data['act'] == 'del'){
$r = D('topic')->where('topic_id='.$data['topic_id'])->delete();
if($r) exit(json_encode(1));
}
if($r !== false){
$this->ajaxReturn(['status'=>1,'msg'=>'操作成功','result'=>'']);
}else{
$this->ajaxReturn(['status'=>0,'msg'=>'操作失败','result'=>'']);
}
}
}