123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace app\admin\controller\kefu;
- use think\exception\ValidateException;
- use app\model\kefu\Commonly;
- class CommonlyController extends Base
- {
- function index()
- {
- $keyword = trim(input('post.keyword', '', 'serach_in'));
- $status = trim(input('post.status', '', 'serach_in'));
- $weid = weid();
- $where = [];
- $where['weid'] = $weid;
- if ($status !== '') {
- $where['status'] = $status;
- }
- $query = Commonly::where($where);
- if (!empty($keyword)) {
- $query->where('content', 'like', '%' . $keyword . '%');
- }
- $res = $query->order('id desc')
- ->paginate(getpage())
- ->toArray();
- $data['data'] = $res;
- return $this->json($data);
- }
- function listUpdate()
- {
- $data = only('id,status');
- if (!$data['id']) throw new ValidateException('参数错误');
- Commonly::update($data);
- return $this->json(['msg' => '操作成功']);
- }
- public function update()
- {
- $id = $this->request->post('id');
- $data = input('post.');
- if (empty($id)) {
- $weid = weid();
- $data['weid'] = $weid;
- $res = Commonly::create($data);
- return $this->json(['msg' => '添加成功', 'data' => $res->id]);
- } else {
- Commonly::update($data);
- return $this->json(['msg' => '修改成功']);
- }
- }
- function getInfo()
- {
- $id = $this->request->post('id', '', 'serach_in');
- if (!$id) $this->error('参数错误');
- $res = Commonly::find($id);
- return $this->json(['data' => $res]);
- }
- function delete()
- {
- return $this->del(new Commonly());
- }
- }
|