|
|
|
@ -32,6 +32,41 @@ class Identity extends Controller |
|
|
|
|
return $this->renderSuccess(compact('list')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @notes:分销商价格 |
|
|
|
|
* @return Json |
|
|
|
|
* @throws DataNotFoundException |
|
|
|
|
* @throws DbException |
|
|
|
|
* @throws ModelNotFoundException |
|
|
|
|
* @author: wanghousheng |
|
|
|
|
*/ |
|
|
|
|
public function dealerList(): Json |
|
|
|
|
{ |
|
|
|
|
$where['type'] = IdentityEnum::DEALER; |
|
|
|
|
$model = new IdentityModel(); |
|
|
|
|
$list = $model->getList($where); |
|
|
|
|
return $this->renderSuccess(compact('list')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @notes:新增 |
|
|
|
|
* @return Json |
|
|
|
|
* @author: wanghousheng |
|
|
|
|
*/ |
|
|
|
|
public function addDealer(): Json |
|
|
|
|
{ |
|
|
|
|
$data = $this->postForm(); |
|
|
|
|
if (!$data) { |
|
|
|
|
return $this->renderError('缺少必要参数'); |
|
|
|
|
} |
|
|
|
|
$model = new IdentityModel(); |
|
|
|
|
$data['type'] = IdentityEnum::DEALER; |
|
|
|
|
if ($model->add($data)) { |
|
|
|
|
return $this->renderSuccess('添加成功'); |
|
|
|
|
} |
|
|
|
|
return $this->renderError($model->getError() ?: '添加失败'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @notes:新增 |
|
|
|
|
* @return Json |
|
|
|
|