|
...
|
...
|
@@ -8,6 +8,7 @@ use App\Http\Logic\Aside\Project\ProcessRecordsLogic; |
|
|
|
use App\Http\Logic\Aside\Project\ProjectLogic;
|
|
|
|
use App\Http\Requests\Aside\Project\ProcessRecordsRequest;
|
|
|
|
use App\Http\Requests\Aside\Project\ProjectRequest;
|
|
|
|
use App\Models\City;
|
|
|
|
use App\Models\InquirySet;
|
|
|
|
use App\Models\Project\Payment;
|
|
|
|
use App\Rules\Ids;
|
|
...
|
...
|
@@ -101,6 +102,20 @@ class ProjectController extends BaseController |
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 省市数据源
|
|
|
|
* @param ProjectLogic $logic
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
|
|
* @author zbj
|
|
|
|
* @date 2023/6/27
|
|
|
|
*/
|
|
|
|
public function city_source(){
|
|
|
|
$data = City::source($this->param['id'] ?? 0);
|
|
|
|
return $this->success($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 渠道数据源
|
|
|
|
* @param ProjectLogic $logic
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
...
|
...
|
|