首先找到前台模板文件:/template/default/company/search.htm
看到51行 {template 'list-company', 'tag'}
打开 /template/default/tag/list-company.htm
查看数据字典后知道公司类型的字段名是type,
在第14行加入:[{$t[type]}]
前台页面刷新后发现是[],就是没搜索出这个字段。
原因应该是模型逻辑程序里没有搜索出这个字段来。
找到模型逻辑程序文件: /module/company/search.inc.php
第61行数据查询语句,select $fds ...
搜索$fds,发现42行 $fds = $MOD['fields'];
print了一下$fds的值,没有包含'type'。找到原因后,在42行下面添加一行:
$fds = $fds.',type'; //添加搜索字段让公司搜索页面显示公司类型
前台再刷新,公司类型显示出来了,问题解决。