1, map 显示 list
a,
<#list assetList as map>
<#list map?keys as itemKey>
<#if itemKey="资产名称">
资产类别:${map[itemKey]}
</#if>
<#if itemKey="资产编码">
资产名称:${map[itemKey]}
</#if>
<#if itemKey="资产类别">
资产型号:${map[itemKey]}
</#if>
<#if itemKey="资产型号">
资产规格:${map[itemKey]}
</#if>
<#if itemKey="二维码">
二维码:<a><img src="${map[itemKey]}" height="163" width=""></a>
</#if>
</#list><br/>
</#list>
b,
<#assign keys=tag_list?keys>
<#list keys as key>
<a id="domain${key?trim}" href="#" οnclick="_gotoDomainId('${key}');">${tag_list[key]}</a>
</#list>