1. 将结合项字段设置为 TINYINT,长度1。
  2. 修改 /e/action/ListInfo.php 文件:
if (false !== strstr($emod_r[$mid]['checkboxf'], ',' . $andr[$i] . ',')) {
    $listandf .= $doandor . $andr[$i] . " LIKE '%" . $andval . "%'";
} else {
    $listandf .= $doandor . $andr[$i] . (is_numeric($andval) ? " = " . $andval : " = '" . $andval . "'");
}
  1. 更新结合项设置为数字型完全匹配。