123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop100%开源免费商用商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | 商业版本务必购买商业授权,以免引起法律纠纷
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshopTeam
- // +----------------------------------------------------------------------
- namespace app\admin\controller\kefu;
- use app\admin\logic\kefu\KefuLangLogic;
- use app\admin\logic\kefu\KefuLogic;
- use app\admin\validate\kefu\KefuLangValidate;
- use app\common\basics\AdminBase;
- use app\common\server\JsonServer;
-
- /**
- * 客服术语
- * Class KefuLang
- * @package app\admin\controller\kefu
- */
- class KefuLang extends AdminBase
- {
- /**
- * @notes 列表
- * @return \think\response\Json|\think\response\View
- * @throws \think\db\exception\DbException
- * @author cjhao
- * @date 2021/11/29 15:20
- */
- public function lists()
- {
- if($this->request->isAjax()){
- $page = $this->request->get('page', 1);
- $limit = $this->request->get('limit', 10);
- $lists = KefuLangLogic::lists($limit,$page);
- return JsonServer::success('获取成功', $lists);
- }
- return view();
- }
-
-
- /**
- * @notes 添加话术
- * @return \think\response\Json|\think\response\View
- * @author cjhao
- * @date 2021/11/29 15:59
- */
- public function add()
- {
- if($this->request->isAjax()){
- $post= (new KefuLangValidate())->goCheck('add');
- $result = KefuLangLogic::add($post);
- if($result){
- return JsonServer::success('新增成功', []);
- }
- return JsonServer::error('新增失败');
- }
- return view();
-
- }
-
- /**
- * @notes 编辑话术
- * @return \think\response\Json|\think\response\View
- * @author cjhao
- * @date 2021/11/29 15:59
- */
- public function edit()
- {
- if($this->request->isAjax()){
- $post= (new KefuLangValidate())->goCheck();
- $result = KefuLangLogic::edit($post);
- if($result){
- return JsonServer::success('修改成功', []);
- }
- return JsonServer::error('修改失败');
- }
- $id = $this->request->get('id');
- return view('', [
- 'detail' => KefuLangLogic::detail($id),
- ]);
-
- }
-
- /**
- * @notes 删除话术
- * @return \think\response\Json
- * @author cjhao
- * @date 2021/11/29 16:35
- */
- public function del()
- {
- $post= (new KefuLangValidate())->goCheck('del');
- $result = KefuLangLogic::del($post['id']);
- if($result){
- return JsonServer::success('删除成功', []);
- }
- return JsonServer::error('删除失败');
- }
- }
|