| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\controllers;
- use app\modules\admin\models\UserCenterForm;
- class UserCenterController extends BaseController
- {
- public function actionList ()
- {
- $form = new UserCenterForm();
- $form->store_id = get_store_id();
- return $this->asJson($form->getData());
- }
- public function actionEdit ()
- {
- $form = new UserCenterForm();
- $form->store_id = get_store_id();
- $form->data = post_params('data') ?: get_params('data');
- return $this->asJson($form->saveData());
- }
- }
|