|
...
|
...
|
@@ -23,8 +23,8 @@ class WebSettingCountryLogic extends BaseLogic |
|
|
|
* @time :2023/4/28 16:18
|
|
|
|
*/
|
|
|
|
public function country_list(){
|
|
|
|
$countryModel = new CountryModel();
|
|
|
|
$lists = $countryModel->list($this->param,'id',['id','name','image']);
|
|
|
|
$settingCountryModel = new WebSettingCountry();
|
|
|
|
$lists = $settingCountryModel->list($this->param,'id',['id','name','image']);
|
|
|
|
if (empty($lists)){
|
|
|
|
$this->fail('当前数据不存在');
|
|
|
|
}
|
...
|
...
|
|