public function changeName($old, $new)
{
$f = json_decode($_GET['filter'], true);
@$s = $f[$old];
$res = [];
if ($s != '') {
unset($f[$old]);
$f[$new] = $s;
$_GET['filter'] = json_encode($f);
}
$res["filter"] = json_encode($f);
$f = json_decode($_GET['op'], true);
@$s = $f[$old];
if ($s != '') {
unset($f[$old]);
$f[$new] = $s;
$_GET['op'] = json_encode($f);
}
$res["op"] = json_encode($f);
$this->request->get($res);
}
复制
if ($this->request->request('keyField')) {
return $this->selectpage();
}
$this->changeName("status", "school.status");
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
复制