|
...
|
...
|
@@ -53,7 +53,7 @@ class KeywordsLogic extends BaseLogic |
|
|
|
* @time :2023/7/22 16:46
|
|
|
|
*/
|
|
|
|
public function searchRouteMap($map,&$data){
|
|
|
|
$keyList = $this->routeMapModel->list($map,'created_at');
|
|
|
|
$keyList = $this->routeMapModel->list(['route'=>$map['search']],'created_at');
|
|
|
|
foreach ($keyList as $v){
|
|
|
|
$data[] = $v['project_id'];
|
|
|
|
}
|
|
...
|
...
|
@@ -68,7 +68,7 @@ class KeywordsLogic extends BaseLogic |
|
|
|
* @time :2023/7/22 16:52
|
|
|
|
*/
|
|
|
|
public function searchProductKeyword($map,&$data){
|
|
|
|
$keyList = $this->productKeywordModel->list($map);
|
|
|
|
$keyList = $this->productKeywordModel->list(['title'=>$map['search']]);
|
|
|
|
foreach ($keyList as $v){
|
|
|
|
$data[] = $v['project_id'];
|
|
|
|
}
|
...
|
...
|
|