123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\admin\controller\setting;
-
- use app\common\basics\AdminBase;
- use app\common\server\ConfigServer;
- use app\common\server\JsonServer;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\response\Json;
- use think\response\View;
-
-
- class SiteStatistic extends AdminBase
- {
-
-
- function set()
- {
- if (request()->isAjax()) {
-
-
- ConfigServer::set('site_statistic', 'clarity_app_id', input('clarity_app_id'));
-
- return JsonServer::success('保存成功');
- }
-
- return view('', [ 'site_statistic' => ConfigServer::get('site_statistic') ]);
- }
- }
|