|
...
|
...
|
@@ -202,7 +202,7 @@ class CNoticeController extends BaseController |
|
|
|
$ids = explode(',',$info['country_lists']);
|
|
|
|
}
|
|
|
|
$webSettingCountryModel = new WebSettingCountry();
|
|
|
|
$lists = $webSettingCountryModel->list(['id',['in',$ids]],'id',['id','name','country_img']);
|
|
|
|
$lists = $webSettingCountryModel->list(['id'=>['in',$ids]],'id',['id','name','country_img']);
|
|
|
|
if (!empty($lists)){
|
|
|
|
foreach ($lists as $k => $v){
|
|
|
|
$lists[$k]['image_link'] = url('upload/country/' . $v['country_img']);
|
...
|
...
|
|