禁止用户端检索服务团队

This commit is contained in:
luofei 2023-06-05 15:57:47 +08:00
parent 13b18aadc9
commit 34d3408944
2 changed files with 7 additions and 3 deletions

View File

@ -14,6 +14,8 @@ namespace app\common\repositories\system\merchant;
use app\common\dao\system\merchant\MerchantTypeDao;
use app\common\model\system\merchant\Merchant;
use app\common\model\system\merchant\MerchantType;
use app\common\repositories\BaseRepository;
use app\common\repositories\system\auth\MenuRepository;
use app\common\repositories\system\RelevanceRepository;
@ -44,9 +46,11 @@ class MerchantTypeRepository extends BaseRepository
return compact('count', 'list');
}
public function getSelect()
public function getSelect($getAll = true)
{
$query = $this->search([])->field('mer_type_id,type_name');
$query = MerchantType::getDB()->when(!$getAll, function ($query) {
$query->whereIn('mer_type_id', [Merchant::TypeCloudWarehouse, Merchant::TypeStore, Merchant::TypeSupplyChain, Merchant::TypePlatform]);
})->field('mer_type_id,type_name');
return $query->select()->toArray();
}

View File

@ -145,7 +145,7 @@ class MerchantIntention extends BaseController
public function typeLst()
{
$lst = app()->make(MerchantTypeRepository::class)->getSelect();
$lst = app()->make(MerchantTypeRepository::class)->getSelect(false);
return app('json')->success($lst);
}
}