Cooperationconfiguration.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\admin\controller\community;
  3. use app\common\controller\Backend;
  4. use think\Exception;
  5. use think\exception\DbException;
  6. use think\response\Json;
  7. /**
  8. * 门店解决方案
  9. *
  10. * @icon fa fa-circle-o
  11. */
  12. class Cooperationconfiguration extends Backend
  13. {
  14. /**
  15. * CooperationConfiguration模型对象
  16. * @var \app\common\model\CooperationConfiguration
  17. */
  18. protected $model = null;
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. $this->model = new \app\common\model\CooperationConfiguration;
  23. }
  24. /**
  25. * 查看
  26. *
  27. * @return string|Json
  28. * @throws \think\Exception
  29. * @throws DbException
  30. */
  31. public function index()
  32. {
  33. if ($this->request->isPost()) {
  34. $row = $this->request->post("row/a");
  35. if(count($row) == 2){
  36. $alteration = ['name','image'];
  37. }else{
  38. $alteration = ['name','image','content'];
  39. }
  40. $res = array_combine($alteration,$row);
  41. try {
  42. $this->model->save($res,['name'=>$res['name']]);
  43. } catch (Exception $e) {
  44. $this->error($e->getMessage());
  45. }
  46. $this->success("提交成功", null, ['data' => json_encode($this->request->post("row/a"), JSON_UNESCAPED_UNICODE)]);
  47. }else{
  48. if (false === $this->request->isAjax()) {
  49. $this->assign('iantern_slide',$this->model->get(['name'=>'幻灯片']));
  50. $this->assign('cooperative_interest',$this->model->get(['name'=>'合作权益']));
  51. return $this->view->fetch();
  52. }
  53. }
  54. }
  55. }