| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\controllers;
- use app\modules\admin\models\ShareLevelFrom;
- class ShareLevelController extends BaseController
- {
- //分销商等级列表
- public function actionShareLevelList() {
- $form = new ShareLevelFrom();
- $form->attributes = get_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->list());
- }
- //分销商等级修改
- public function actionShareLevelSave() {
- $form = new ShareLevelFrom();
- $form->attributes = post_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->setShareLevel());
- }
- //分销商等级状态修改
- public function actionShareLevelStatus() {
- $form = new ShareLevelFrom();
- $form->attributes = post_params();
- $form->store_id = get_store_id();
- return $this->asJson($form->setStatus());
- }
- }
|