| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace app\modules\admin\controllers\shareGroup;
- use app\modules\admin\controllers\BaseController;
- use app\modules\admin\models\shareGroup\SupportForm;
- //扶持区
- class SupportController extends BaseController
- {
- //帮扶佣金列表
- public function actionAmountList() {
- $form = new SupportForm();
- $form->attributes = get_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->amountList());
- }
- //帮扶冻结佣金列表
- public function actionFreezeAmountList() {
- $form = new SupportForm();
- $form->attributes = get_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->freezeAmountList());
- }
- //上级变动记录
- public function actionParentSupportLog() {
- $form = new SupportForm();
- $form->attributes = get_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->parentSupportLog());
- }
- }
|