AppIconCate.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace app\api\controller\v1;
  3. use app\api\controller\Base;
  4. use app\hander\HelpHander;
  5. use think\Db;
  6. class AppIconCate extends Base
  7. {
  8. // 新增
  9. public function save(){
  10. model('AppIconCate')->add();
  11. HelpHander::success([],'操作成功');
  12. }
  13. // 编辑
  14. public function update(){
  15. model('AppIconCate')->add();
  16. HelpHander::success([],'操作成功');
  17. }
  18. // 详情
  19. public function detail(){
  20. $id = input('id/d',0);
  21. $ret = model('AppIconCate')->info($id);
  22. HelpHander::success($ret);
  23. }
  24. // 列表
  25. public function list(){
  26. $ret = model('AppIconCate')->lists();
  27. HelpHander::success($ret);
  28. }
  29. // 分组图标详情
  30. public function listDetail(){
  31. $ret = model('AppIconCate')->listDetail();
  32. HelpHander::success($ret);
  33. }
  34. // 删除
  35. public function del(){
  36. $id = input('id/d',0);
  37. model('AppIconCate')->del($id);
  38. HelpHander::success([],'操作成功');
  39. }
  40. // 修改状态
  41. public function changeStatus(){
  42. $id = input('id/d',0);
  43. $enable = input('enable/d',0);
  44. model('AppIconCate')->changeStatus($id,$enable);
  45. HelpHander::success([],'操作成功');
  46. }
  47. }