1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace app\controller\store\system;
- use app\controller\store\AuthController;
- use app\services\store\StoreConfigServices;
- use app\services\system\config\SystemConfigServices;
- use app\services\system\config\SystemConfigTabServices;
- use think\facade\App;
- use app\Request;
- class Config extends AuthController
- {
-
- public function __construct(App $app, SystemConfigServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
-
- public function getConfig($type, StoreConfigServices $services)
- {
- if (!isset(StoreConfigServices::CONFIG_TYPE[$type])) {
- return $this->fail('类型不正确');
- }
- return $this->success($services->getConfigAll(StoreConfigServices::CONFIG_TYPE[$type], 1, (int)$this->storeId));
- }
-
- public function save(StoreConfigServices $services)
- {
- $data = $this->request->post();
- $services->saveConfig($data,1, (int)$this->storeId);
- \crmeb\services\SystemConfigService::clear();
- return $this->success('修改成功');
- }
-
- public function edit_basics(Request $request, StoreConfigServices $services)
- {
- $name = $this->request->param('name', '');
- if (!$name) {
- return $this->fail('参数错误');
- }
- $store_id = $this->storeId;
- return $this->success($services->getFormBuildRule($name, 1, $store_id));
- }
-
- public function getFormBuild(StoreConfigServices $services, string $type)
- {
- $store_id = (int)$this->storeId;
- return $this->success($services->getFormBuildRule($type, 1, $store_id));
- }
- }
|