MainController.php 4.8 KB
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 小夏 < 449134904@qq.com>
// +----------------------------------------------------------------------
namespace app\admin\controller;

use cmf\controller\AdminBaseController;
use think\Db;
use app\admin\model\Menu;

class MainController extends AdminBaseController
{

    public function _initialize()
    {
        parent::_initialize();
    }

    /**
     *  后台欢迎页
     */
//    public function index()
//    {
//        $dashboardWidgets = [];
//        $widgets          = cmf_get_option('admin_dashboard_widgets');
//
//        $defaultDashboardWidgets = [
//            '_SystemCmfHub'           => ['name' => 'CmfHub', 'is_system' => 1],
//            '_SystemMainContributors' => ['name' => 'MainContributors', 'is_system' => 1],
//            '_SystemContributors'     => ['name' => 'Contributors', 'is_system' => 1],
//            '_SystemCustom1'          => ['name' => 'Custom1', 'is_system' => 1],
//            '_SystemCustom2'          => ['name' => 'Custom2', 'is_system' => 1],
//            '_SystemCustom3'          => ['name' => 'Custom3', 'is_system' => 1],
//            '_SystemCustom4'          => ['name' => 'Custom4', 'is_system' => 1],
//            '_SystemCustom5'          => ['name' => 'Custom5', 'is_system' => 1],
//        ];
//
//        if (empty($widgets)) {
//            $dashboardWidgets = $defaultDashboardWidgets;
//        } else {
//            foreach ($widgets as $widget) {
//                if ($widget['is_system']) {
//                    $dashboardWidgets['_System' . $widget['name']] = ['name' => $widget['name'], 'is_system' => 1];
//                } else {
//                    $dashboardWidgets[$widget['name']] = ['name' => $widget['name'], 'is_system' => 0];
//                }
//            }
//
//            foreach ($defaultDashboardWidgets as $widgetName => $widget) {
//                $dashboardWidgets[$widgetName] = $widget;
//            }
//
//
//        }
//
//        $dashboardWidgetPlugins = [];
//
//        $hookResults = hook('admin_dashboard');
//
//        if (!empty($hookResults)) {
//            foreach ($hookResults as $hookResult) {
//                if (isset($hookResult['width']) && isset($hookResult['view']) && isset($hookResult['plugin'])) { //验证插件返回合法性
//                    $dashboardWidgetPlugins[$hookResult['plugin']] = $hookResult;
//                    if (!isset($dashboardWidgets[$hookResult['plugin']])) {
//                        $dashboardWidgets[$hookResult['plugin']] = ['name' => $hookResult['plugin'], 'is_system' => 0];
//                    }
//                }
//            }
//        }
//
//        $smtpSetting = cmf_get_option('smtp_setting');
//
//        $this->assign('dashboard_widgets', $dashboardWidgets);
//        $this->assign('dashboard_widget_plugins', $dashboardWidgetPlugins);
//        $this->assign('has_smtp_setting', empty($smtpSetting) ? false : true);
//
//        return $this->fetch();
//    }

    public function index(){
        $today_start = strtotime(date("Y-m-d"),time());
        $today_end=$today_start+24*60*60;
        $today_order=Db::name('light_order')
            ->whereTime('create_time', 'between', [$today_start, $today_end])
            ->whereNotNull('pay_time')
            ->sum('money');
        $users=Db::name('users')->count();
        $order=Db::name('temple')
            ->sum('money');
        $expect=Db::name('temple')
            ->sum('money*percent');
        $data=Db::name('temple')->order('money','desc')->select();
        $this->assign([
            'today_order'=>$today_order,
            'users'=>$users,
            'order'=>$order,
            'expect'=>$expect,
            'list'=>$data,
        ]);
        return $this->fetch();

    }


    public function dashboardWidget()
    {
        $dashboardWidgets = [];
        $widgets          = $this->request->param('widgets/a');
        if (!empty($widgets)) {
            foreach ($widgets as $widget) {
                if ($widget['is_system']) {
                    array_push($dashboardWidgets, ['name' => $widget['name'], 'is_system' => 1]);
                } else {
                    array_push($dashboardWidgets, ['name' => $widget['name'], 'is_system' => 0]);
                }
            }
        }

        cmf_set_option('admin_dashboard_widgets', $dashboardWidgets, true);

        $this->success('更新成功!');

    }

}