| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace addons\StarChain\backend\controllers;
- use addons\StarChain\common\services\MessageService;
- /**
- * 消息
- */
- class MessageController extends BaseController
- {
- /**
- * 消息列表
- *
- * @return string
- */
- public function actionIndex()
- {
- if ($this->request->isAjax) {
- $params = $this->request->get();
- $service = new MessageService(['mall_id' => $this->mall_id]);
- return $this->success('ok', $service->getMessageList($params));
- }
- return $this->render($this->action->id);
- }
- }
|