| 1234567891011121314151617181920212223242526 |
- <?php
- namespace addons\StarChain\backend\controllers;
- use addons\StarChain\common\services\RegionService;
- class RegionController extends BaseController
- {
- /**
- * 导入
- *
- * @return void
- */
- public function actionImport()
- {
- if ($this->request->isAjax) {
- $service = new RegionService(['mall_id' => $this->mall_id]);
- // $service->taskImport();die;
- return $service->import()
- ? $this->success('ok')
- : $this->error($service->error);
- }
- }
- }
|