触客宝 内容管理提交
This commit is contained in:
631
Server/application/chukebao/controller/ContentController.php
Normal file
631
Server/application/chukebao/controller/ContentController.php
Normal file
@@ -0,0 +1,631 @@
|
||||
<?php
|
||||
|
||||
namespace app\chukebao\controller;
|
||||
|
||||
use app\chukebao\model\Keywords;
|
||||
use app\chukebao\model\Material;
|
||||
use app\chukebao\model\SensitiveWord;
|
||||
use think\Db;
|
||||
use library\ResponseHelper;
|
||||
|
||||
class ContentController extends BaseController
|
||||
{
|
||||
//===================================================== 素材管理 =====================================================
|
||||
/**
|
||||
* 素材列表
|
||||
* @return \think\response\Json
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function getMaterial(){
|
||||
$page = $this->request->param('page', 1);
|
||||
$limit = $this->request->param('limit', 10);
|
||||
$keyword = $this->request->param('keyword', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
$query = Material::where(['userId' => $userId,'companyId' => $companyId,'isDel' => 0])
|
||||
->order('id desc');
|
||||
if (!empty($keyword)){
|
||||
$query->where('title', 'like', '%'.$keyword.'%');
|
||||
}
|
||||
$list = $query->page($page, $limit)->select()->toArray();
|
||||
$total = $query->count();
|
||||
|
||||
foreach ($list as $k => &$v){
|
||||
$user = Db::name('users')->where(['id' => $v['userId']])->field('username,account')->find();
|
||||
if (!empty($user)){
|
||||
$v['userName'] = !empty($user['username']) ? $user['username'] : $user['account'];
|
||||
}else{
|
||||
$v['userName'] = '';
|
||||
}
|
||||
}
|
||||
unset($v);
|
||||
return ResponseHelper::success(['list'=>$list,'total'=>$total]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 素材添加
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function createMaterial(){
|
||||
$title = $this->request->param('title', '');
|
||||
$content = $this->request->param('content', []);
|
||||
$cover = $this->request->param('cover', '');
|
||||
$status = $this->request->param('status', 0);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($title) || empty($content) || empty($cover)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$newContent = [];
|
||||
foreach ($content as $k => $v){
|
||||
if (in_array($v,['text','image','video','audio','file','link'])){
|
||||
$newContent[] = $v;
|
||||
}
|
||||
}
|
||||
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query = new Material();
|
||||
$query->title = $title;
|
||||
$query->content = !empty($newContent) ? json_encode($newContent,256) : json_encode([],256);
|
||||
$query->cover = $cover;
|
||||
$query->status = $status;
|
||||
$query->userId = $userId;
|
||||
$query->companyId = $companyId;
|
||||
$query->createTime = time();
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','创建成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('创建失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 素材详情
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function detailsMaterial()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = Material::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
$data['content'] = json_decode($data['content'],true);
|
||||
unset($data['createTime'],$data['updateTime'],$data['isDel'],$data['delTime']);
|
||||
return ResponseHelper::success($data,'获取成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除素材
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function delMaterial()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = Material::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$data->isDel = 1;
|
||||
$data->delTime = time();
|
||||
$data->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success('','删除成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('删除失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 修改素材
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function updateMaterial(){
|
||||
$id = $this->request->param('id', '');
|
||||
$title = $this->request->param('title', '');
|
||||
$content = $this->request->param('content', []);
|
||||
$cover = $this->request->param('cover', '');
|
||||
$status = $this->request->param('status', 0);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($id) || empty($title) || empty($content) || empty($cover)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$newContent = [];
|
||||
foreach ($content as $k => $v){
|
||||
if (in_array($v,['text','image','video','audio','file','link'])){
|
||||
$newContent[] = $v;
|
||||
}
|
||||
}
|
||||
$query = Material::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($query)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query->title = $title;
|
||||
$query->content = !empty($newContent) ? json_encode($newContent,256) : json_encode([],256);
|
||||
$query->cover = $cover;
|
||||
$query->status = $status;
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','修改成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('修改失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
//===================================================== 素材管理 =====================================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//==================================================== 违禁词管理 ====================================================
|
||||
|
||||
/**
|
||||
* 违禁词列表
|
||||
* @return \think\response\Json
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function getSensitiveWord(){
|
||||
$page = $this->request->param('page', 1);
|
||||
$limit = $this->request->param('limit', 10);
|
||||
$keyword = $this->request->param('keyword', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
$query = SensitiveWord::where(['userId' => $userId,'companyId' => $companyId,'isDel' => 0])
|
||||
->order('id desc');
|
||||
if (!empty($keyword)){
|
||||
$query->where('title', 'like', '%'.$keyword.'%');
|
||||
}
|
||||
$total = $query->count();
|
||||
$list = $query->page($page, $limit)->select()->toArray();
|
||||
|
||||
|
||||
foreach ($list as $k => &$v){
|
||||
$user = Db::name('users')->where(['id' => $v['userId']])->field('username,account')->find();
|
||||
if (!empty($user)){
|
||||
$v['userName'] = !empty($user['username']) ? $user['username'] : $user['account'];
|
||||
}else{
|
||||
$v['userName'] = '';
|
||||
}
|
||||
}
|
||||
unset($v);
|
||||
return ResponseHelper::success(['list'=>$list,'total'=>$total]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 违禁词添加
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function createSensitiveWord(){
|
||||
$title = $this->request->param('title', '');
|
||||
$keywords = $this->request->param('keywords', '');
|
||||
$content = $this->request->param('content', '');
|
||||
$status = $this->request->param('status', 0);
|
||||
$operation = $this->request->param('operation', 0);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($title) || empty($keywords)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$keywords = explode(',',$keywords);
|
||||
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query = new SensitiveWord();
|
||||
$query->title = $title;
|
||||
$query->keywords = $keywords;
|
||||
$query->content = $content;
|
||||
$query->status = $status;
|
||||
$query->operation = $operation;
|
||||
$query->userId = $userId;
|
||||
$query->companyId = $companyId;
|
||||
$query->createTime = time();
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','创建成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('创建失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 违禁词详情
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function detailsSensitiveWord()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = SensitiveWord::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
$data['keywords'] = json_decode($data['keywords'],true);
|
||||
$data['keywords'] = implode(',',$data['keywords']);
|
||||
unset($data['createTime'],$data['updateTime'],$data['isDel'],$data['delTime']);
|
||||
return ResponseHelper::success($data,'获取成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 违禁词删除
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function delSensitiveWord()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = SensitiveWord::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$data->isDel = 1;
|
||||
$data->delTime = time();
|
||||
$data->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success('','删除成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('删除失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 更新违禁词
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function updateSensitiveWord(){
|
||||
$id = $this->request->param('id', '');
|
||||
$title = $this->request->param('title', '');
|
||||
$keywords = $this->request->param('keywords', '');
|
||||
$content = $this->request->param('content', '');
|
||||
$status = $this->request->param('status', 0);
|
||||
$operation = $this->request->param('operation', 0);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($id) || empty($title) || empty($keywords)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$keywords = explode(',',$keywords);
|
||||
|
||||
$query = SensitiveWord::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($query)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query->title = $title;
|
||||
$query->keywords = $keywords;
|
||||
$query->content = $content;
|
||||
$query->status = $status;
|
||||
$query->operation = $operation;
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','修改成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('修改失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改违禁词状态
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function setSensitiveWordStatus(){
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$query = SensitiveWord::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($query)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query->status = !empty($query['status']) ? 0 : 1;;
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','修改成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('修改失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//==================================================== 违禁词管理 ====================================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//=================================================== 关键词词管理 ====================================================
|
||||
|
||||
/**
|
||||
* 关键词列表
|
||||
* @return \think\response\Json
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public function getKeywords(){
|
||||
$page = $this->request->param('page', 1);
|
||||
$limit = $this->request->param('limit', 10);
|
||||
$keyword = $this->request->param('keyword', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
$query = Keywords::where(['userId' => $userId,'companyId' => $companyId,'isDel' => 0])
|
||||
->order('id desc');
|
||||
if (!empty($keyword)){
|
||||
$query->where('title', 'like', '%'.$keyword.'%');
|
||||
}
|
||||
$total = $query->count();
|
||||
$list = $query->page($page, $limit)->select()->toArray();
|
||||
|
||||
|
||||
foreach ($list as $k => &$v){
|
||||
$user = Db::name('users')->where(['id' => $v['userId']])->field('username,account')->find();
|
||||
if (!empty($user)){
|
||||
$v['userName'] = !empty($user['username']) ? $user['username'] : $user['account'];
|
||||
}else{
|
||||
$v['userName'] = '';
|
||||
}
|
||||
}
|
||||
unset($v);
|
||||
return ResponseHelper::success(['list'=>$list,'total'=>$total]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 关键词添加
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function createKeywords(){
|
||||
$title = $this->request->param('title', '');
|
||||
$type = $this->request->param('type', 0);
|
||||
$keywords = $this->request->param('keywords', '');
|
||||
$replyType = $this->request->param('replyType', 0);
|
||||
$content = $this->request->param('content','');
|
||||
$materialId = $this->request->param('materialId','');
|
||||
$status = $this->request->param('status', 0);
|
||||
$sort = $this->request->param('sort', 50);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($title) || empty($keywords) || (empty($materialId) && empty($content))){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$keywords = explode(',',$keywords);
|
||||
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query = new Keywords();
|
||||
$query->title = $title;
|
||||
$query->type = $type;
|
||||
$query->keywords = !empty($keywords) ? json_encode($keywords,256) : json_encode([]);
|
||||
$query->replyType = $replyType;
|
||||
$query->content = !empty($content) ? json_encode($content,256) : json_encode([]);;
|
||||
$query->materialId = $materialId;
|
||||
$query->status = $status;
|
||||
$query->sort = $sort;
|
||||
$query->userId = $userId;
|
||||
$query->companyId = $companyId;
|
||||
$query->createTime = time();
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','创建成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('创建失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 关键词详情
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function detailsKeywords()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = Keywords::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
$data['content'] = json_decode($data['content'],true);
|
||||
$data['keywords'] = json_decode($data['keywords'],true);
|
||||
$data['keywords'] = implode(',',$data['keywords']);
|
||||
unset($data['createTime'],$data['updateTime'],$data['isDel'],$data['delTime']);
|
||||
return ResponseHelper::success($data,'获取成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 关键词删除
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function delKeywords()
|
||||
{
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
$data = Keywords::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($data)){
|
||||
return ResponseHelper::error('该关键词已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$data->isDel = 1;
|
||||
$data->delTime = time();
|
||||
$data->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success('','删除成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('删除失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 更新关键词
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function updateKeywords(){
|
||||
$id = $this->request->param('id', '');
|
||||
$title = $this->request->param('title', '');
|
||||
$type = $this->request->param('type', 0);
|
||||
$keywords = $this->request->param('keywords', '');
|
||||
$replyType = $this->request->param('replyType', 0);
|
||||
$content = $this->request->param('content','');
|
||||
$materialId = $this->request->param('materialId','');
|
||||
$status = $this->request->param('status', 0);
|
||||
$sort = $this->request->param('sort', 50);
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($title) || empty($keywords) || (empty($materialId) && empty($content))){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$keywords = explode(',',$keywords);
|
||||
|
||||
$query = Keywords::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($query)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query->title = $title;
|
||||
$query->type = $type;
|
||||
$query->keywords = !empty($keywords) ? json_encode($keywords,256) : json_encode([]);
|
||||
$query->replyType = $replyType;
|
||||
$query->content = !empty($content) ? json_encode($content,256) : json_encode([]);;
|
||||
$query->materialId = $materialId;
|
||||
$query->status = $status;
|
||||
$query->sort = $sort;
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','修改成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('修改失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改关键词状态
|
||||
* @return \think\response\Json
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function setKeywordStatus(){
|
||||
$id = $this->request->param('id', '');
|
||||
$userId = $this->getUserInfo('id');
|
||||
$companyId = $this->getUserInfo('companyId');
|
||||
|
||||
if (empty($id)){
|
||||
return ResponseHelper::error('参数缺失');
|
||||
}
|
||||
|
||||
$query = Keywords::where(['id'=>$id,'isDel' => 0,'userId' => $userId,'companyId' => $companyId])->find();
|
||||
if (empty($query)){
|
||||
return ResponseHelper::error('该素材已被删除或者不存在');
|
||||
}
|
||||
Db::startTrans();
|
||||
try {
|
||||
$query->status = !empty($query['status']) ? 0 : 1;
|
||||
$query->updateTime = time();
|
||||
$query->save();
|
||||
Db::commit();
|
||||
return ResponseHelper::success(' ','修改成功');
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
return ResponseHelper::error('修改失败:'.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
//=================================================== 关键词词管理 ====================================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user