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