| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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() ?: '更新失败');
- }
- }
|