联系官方销售客服
1835022288
028-61286886
关于后台列表table类显示,新增加查询条件的问题,我的网站表单,想增加一个查询条件,列表只显示status=3的的内容,但是使用https://www.xunruicms.com/doc/876.html,里面的
$where = 'aaa=1'; // 新的条件组合
if ($this->init['where_list']) {
$this->init['where_list'].= ' AND '.$where;
// 考虑到父类也许有可能会自带条件,防止被覆盖默认条件,所以追加一个 AND
} else {
$this->init['where_list'] = $where;
}
方式完全没用,是不是新版已经不支持这种查询了,求助各位老大指导下。