| 12345678910111213141516171819202122232425 |
- <?php
- namespace business\controllers;
- use biz\saas\services\ApplyService;
- use Yii;
- use common\components\util;
- class ApplyController extends BaseController
- {
- //我的代理 shish 2019.12.26
- public function actionList()
- {
- $status = Yii::$app->request->get('status', 0);
- $where = [];
- $where['oldId'] = $this->merchantId;
- if ($status != -1) {
- $where['status'] = $status;
- }
- $data = ApplyService::getApplyList($where);
- util::success($data);
- }
-
- }
|