|
...
|
...
|
@@ -3,6 +3,7 @@ |
|
|
|
namespace App\Http\Logic\Bside\Setting;
|
|
|
|
|
|
|
|
use App\Http\Logic\Bside\BaseLogic;
|
|
|
|
use App\Models\Project\Country;
|
|
|
|
use App\Models\WebSetting\Proofreading;
|
|
|
|
|
|
|
|
class ProofreadingLogic extends BaseLogic
|
|
...
|
...
|
@@ -49,4 +50,16 @@ class ProofreadingLogic extends BaseLogic |
|
|
|
}
|
|
|
|
return $this->success();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name :(项目已选中多语言国家列表)countryLanguageList
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/6/12 15:54
|
|
|
|
*/
|
|
|
|
public function countryLanguageList($map,$order = 'created_at'){
|
|
|
|
$projectCountryModel = new Country();
|
|
|
|
$list = $projectCountryModel->list($map,$order);
|
|
|
|
return $this->success($list);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|