|
...
|
...
|
@@ -64,8 +64,8 @@ class ProjectsLogic extends BaseLogic |
|
|
|
* @time :2023/7/18 10:46
|
|
|
|
*/
|
|
|
|
public function verifyParam($param){
|
|
|
|
$param['set_country'] = json_encode($param['set_country']);
|
|
|
|
$param['set_ban_country'] = json_encode($param['set_ban_country']);
|
|
|
|
$param['set_country'] = json_encode($param['set_country'],JSON_UNESCAPED_UNICODE);
|
|
|
|
$param['set_ban_country'] = json_encode($param['set_ban_country'],JSON_UNESCAPED_UNICODE);
|
|
|
|
$param['set_page_percent'] = json_encode($param['set_page_percent']);
|
|
|
|
$param['set_device'] = json_encode($param['set_device']);
|
|
|
|
$param['set_referer'] = json_encode($param['set_referer']);
|
...
|
...
|
|