迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
模板标签里面
怎么计算category循环出来的10个栏目的本周数据之和,参照https://www.xunruicms.com/doc/1114.html 这个教程,调用不出来
<table class="layui-table"> <thead> <tr> <th>序号</th> <th>单位</th> <th>数量</th> </tr> </thead> <tbody> {category module=news pid=2 num=5,10 cache=3600} <tr> <td>{$key+1}</td> <td>{$t.name}</td> <td>{count action=module module=news catid=$t.id WEEK_updatetime=0 return=l}{$l_count}</td> </tr> {/category} <tr> <td>合计</td> <td colspan="2">{sum sum=$l_count action=module module=news catid=16,17,18,19,20,21,22,23,24,25 WEEK_updatetime=0 return=h}{$h_sum}</td> </tr> </tbody> </table>
{php $cts=0;} {category module=news pid=2 num=10 cache=3600} <tr> <td>{$key+1}</td> <td>{$t.name}</td> <td>{count action=module module=news catid=$t.id WEEK_updatetime=0 return=l}{php $cts+=$l_count}</td> </tr> {/category} 之和的数据{$cts}
{php $cts=0;} {category module=news pid=2 num=10 cache=3600} <tr> <td>{$key+1}</td> <td>{$t.name}</td> <td>{count action=module module=news catid=$t.id WEEK_updatetime=0 return=l}{php $cts+=$l_count; echo $l_count;}</td> </tr> {/category} 之和的数据{$cts}