1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\admin\controller\solution;
- use app\common\controller\Backend;
- use think\Exception;
- use think\exception\DbException;
- use think\response\Json;
- /**
- * 门店解决方案
- *
- * @icon fa fa-circle-o
- */
- class Shop extends Backend
- {
- /**
- * SolutionShop模型对象
- * @var \app\common\model\SolutionShop
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\common\model\SolutionShop;
- }
- /**
- * 查看
- *
- * @return string|Json
- * @throws \think\Exception
- * @throws DbException
- */
- public function index()
- {
- if ($this->request->isPost()) {
- $row = $this->request->post("row/a");
- if(count($row) == 2){
- $alteration = ['name','image'];
- }else{
- $alteration = ['name','image','content'];
- }
- $res = array_combine($alteration,$row);
- try {
- $this->model->save($res,['name'=>$res['name']]);
- } catch (Exception $e) {
- $this->error($e->getMessage());
- }
- $this->success("提交成功", null, ['data' => json_encode($this->request->post("row/a"), JSON_UNESCAPED_UNICODE)]);
- }else{
- if (false === $this->request->isAjax()) {
- $this->assign('iantern_slide',$this->model->get(['name'=>'幻灯片']));
- $this->assign('system_introduction',$this->model->where(['name'=>'系统介绍'])->field(['name','image','content as system_introduction_content'])->find());
- $this->assign('product_differentiation',$this->model->get(['name'=>'产品差异化']));
- $this->assign('scheme_highlights',$this->model->where(['name'=>'方案亮点'])->field(['name','image','content as scheme_highlights_content'])->find());
- $this->assign('added_services',$this->model->get(['name'=>'一站式三方增值服务']));
- $this->assign('after_sale',$this->model->get(['name'=>'售后服务']));
- return $this->view->fetch();
- }
- }
- }
- }
|