赛亿官网

Partner.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. namespace app\admin\controller;
  3. use think\Request;
  4. use app\admin\model\Partner as PartnerModel;
  5. /**
  6. * 轮播图管理
  7. * @author huwhis@163.com
  8. * @version 0.0.1
  9. */
  10. class Partner extends Base
  11. {
  12. protected $model;
  13. public function __construct(Request $request = null)
  14. {
  15. parent::__construct($request);
  16. $this->model = new PartnerModel();
  17. }
  18. public function index()
  19. {
  20. $data = $this->model->paginate();
  21. $this->assign('data', $data);
  22. return $this->fetch();
  23. }
  24. public function save(Request $request = null, $id = 0)
  25. {
  26. if ($request->isPost()) {
  27. $param = $request->param();
  28. if ($param['picture'] == '') {
  29. $this->error("图片地址不能为空");
  30. }
  31. try {
  32. if ($param['id'] != 0) {
  33. $this->model->save([
  34. 'picture' => $param['picture'],
  35. 'url' => $param['url'],
  36. 'title' => $param['title']
  37. ], ['id' => $param['id']]);
  38. } else {
  39. $this->model->save([
  40. 'picture' => $param['picture'],
  41. 'title' => $param['title'],
  42. 'url' => $param['url']
  43. ]);
  44. }
  45. } catch (\Exception $e) {
  46. $msg = $e->getMessage();
  47. $this->error("错误提示:" . $msg);
  48. }
  49. $this->success('操作成功', 'admin/partner/index');
  50. } else {
  51. if ($id) {
  52. $data = $this->model->find($id);
  53. } else {
  54. $data = [
  55. 'id' => 0,
  56. 'picture' => '',
  57. 'url' => '',
  58. 'title' => ''
  59. ];
  60. }
  61. $this->assign('data', $data);
  62. return $this->fetch();
  63. }
  64. }
  65. public function uploadimg()
  66. {
  67. return $this->fetch();
  68. }
  69. public function delete($id = null)
  70. {
  71. if (Request::instance()->isAjax()) {
  72. if ($this->model->destroy($id)) {
  73. return ['code' => 2, 'msg' => "删除成功"];
  74. } else {
  75. return ['code' => 0, 'msg' => "删除失败"];
  76. }
  77. }
  78. }
  79. }