list标签是无法调用此类目下总共有多少条记录数
{m:lists field="title,url" catid="$catid" limit="9" page="page"}
下面是我的方法(在模板文件中使用):
{php $modelinfo = get_modelinfo();$modelarr = array();foreach($modelinfo as $val) $modelarr[$val['modelid']] = $val['tablename'];if(!isset($modelarr[$modelid])) showmsg('模型不存在!', 'stop');$where='status=1';$where = strpos($arrchildid, ',') ? ' AND catid IN ('.$arrchildid.')' : ' AND catid='.$arrchildid;$total = D($modelarr[$modelid])->where($where)->total();}