作者 李宇航

合并分支 'lyh-server' 到 'master'

gx



查看合并请求 !1766
... ... @@ -117,7 +117,9 @@ class ProjectCountryLogic extends BaseLogic
protected function countrySortFormat($country_sort){
$webLanguageModel = new WebLanguage();
$idArr = $webLanguageModel->selectField(['id'=>['not in',explode(',',$country_sort)]],'id');
$countryStr = $country_sort.','.implode(',',$idArr);
return $countryStr;
if(!empty($idArr)){
$country_sort = $country_sort.','.implode(',',$idArr);
}
return $country_sort;
}
}
... ...