模块目录下的common/incfiles/module_config.asp:
tmpstr = itake("module.list", "tpl")
修改成:
tmpstr = itake("module.list-" & classid, "tpl")
If check_null(tmpstr) Then tmpstr = itake("module.list", "tpl")
在制作模板时候如果特定的类别需要使用特别的模板, 那么就可以以 "list-类别编号" 来命名模板的节点名, 如果不需要用特别的模板则可以不需要添加这个模板节点而使用默认的模板 "list"
tmpstr = itake("module.detail", "tpl")
修改成:
tmpstr = itake("module.detail-" & rs(cfname("class")), "tpl")
If check_null(tmpstr) Then tmpstr = itake("module.detail", "tpl")
按上面修改后再在模板增加个detail-classid的节点,但详细页还是没有变化啊,请问错在哪里?