| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\store\controller\apps\sharing;
- use app\store\controller\Controller;
- use app\store\model\sharing\Setting as SettingModel;
- /**
- * 拼团设置
- * Class Setting
- * @package app\store\controller\apps\dealer
- */
- class Setting extends Controller
- {
- /**
- * 拼团设置
- * @return array|mixed
- * @throws \think\exception\DbException
- */
- public function index()
- {
- if (!$this->request->isAjax()) {
- $values = SettingModel::getItem('basic');
- return $this->fetch('index', compact('values'));
- }
- $model = new SettingModel;
- if ($model->edit('basic', $this->postData('basic'))) {
- return $this->renderSuccess('更新成功');
- }
- return $this->renderError($model->getError() ?: '更新失败');
- }
- }
|