问题描述
我的数据在循环输出时,它会自动换行但是一换行就变成从第一列开始输出了,有什么办法让他在本列下面开始输出呢?
问题出现的环境背景及自己尝试过哪些方法
相关代码
{volist key="i" name="finance" id="v1"}
{$i}{$v1.proj_name}{$v1.manager}{$v1.num}{volist key="j" name="v1['reply']" id="v2"}
{if($v2.type==1)}收入{elseif($v2.type==2)}成本{elseif($v2.type==3)}收益{/if}{if($v2.type==1)}{$v1.income}{elseif($v2.type==2)}{$v1.cost}{elseif($v2.type==3)}{$v1.profit}{/if}{$v2.device}{$v2.integrated}{$v2.data_line}{$v2.internet}{$v2.communication}{$v2.other}{if($j==1)}
{$v1.payment_contract}{volist key="k" name="receipt" id="v3"}
{$v3.payment_progress}{$v3.contract_amount}{$v3.contract_device}{$v3.contract_integration}{$v3.contract_dataline}{$v3.contract_internet}{$v3.contract_communication}{$v3.contract_other}{$v3.supplier}{$v3.report_device}{$v3.report_integration}{$v3.report_other}{$v3.report_number}{/volist}
{/if}
{/volist}