| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\models;
- use app\models\TerritorialLimitation;
- use yii\base\Model;
- use yii\helpers\Json;
- class TerritorialForm extends Model
- {
- public $store_id = 1;
- public $territorial;
- public $detail;
- /**
- * 保存
- * @return array
- */
- public function save()
- {
- $model = TerritorialLimitation::findOne([
- 'store_id' => get_store_id(),
- 'is_delete' => 0
- ])?: new TerritorialLimitation();
- $model->store_id = $this->store_id;
- $model->attributes = $this->territorial;
- $model->detail = Json::encode($this->detail);
- if ($model->save()) {
- return [
- 'code' => 0,
- 'msg' => '保存成功'
- ];
- } else {
- return [
- 'code' => 1,
- 'msg' => '保存失败',
- 'err' => $model->errors
- ];
- }
- }
- }
|