管理后台->游戏管理->合作方管理->批量删除bug修改

master
chenxiaojun 5 years ago
commit f8038fd086

@ -174,6 +174,10 @@ class PartnerController extends ThinkController
public function del()
{
if ($_POST['ids']) {
if (!is_array($_POST['ids'])) {
$this->error('参数异常');
}
$id = implode(',', $_POST['ids']);
} else {
$id = intval(I('get.id', 0));

Loading…
Cancel
Save