| 1234567891011121314151617181920212223 |
- <?php
- namespace business\controllers;
- use biz\merchant\services\MerchantAssetService;
- use Yii;
- use common\components\util;
- class ConsoleController extends BaseController
- {
- //概况 shish 2019.12.19
- public function actionProfile()
- {
- $asset = $this->merchantAsset;
- $notice = [
- ['title' => '您还没有绑定公众号', 'action' => '立即绑定', 'url' => 'http://www.test.com'],
- ];
- $todayData = ['visit' => rand(9, 99), 'fans' => rand(9, 99), 'user' => rand(9, 99)];
- util::success(['asset' => $asset, 'notice' => $notice, 'todayData' => $todayData]);
- }
- }
|