ConsoleController.php 576 B

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