| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 邀请有礼
- */
- namespace ghs\controllers;
- use bizHd\invite\services\InviteAssetService;
- use common\components\util;
- use Yii;
- class InviteAssetController extends BaseController
- {
-
- //详情 ssh 2019.12.18
- public function actionDetail()
- {
- $asset = InviteAssetService::getAsset($this->sjId);
- util::success($asset);
- }
- //修改设置 ssh 2019.12.18
- public function actionUpdate()
- {
- $post = Yii::$app->request->post();
- InviteAssetService::updateAsset($this->sjId, $post);
- util::complete('修改成功');
- }
- }
|