1
2
3
4
5
6
7
8
9
10
11
12
| [#if mainufacturerList?? && mainufacturerList?size>0]
| [#list mainufacturerList as mainufacturer]
| <a href="${base}/uwyw/uInformation/uInformationDetail.html?id=${mainufacturer.ID}">
| <p>
| <label></label>
| <span></span>
| 名称:<i>${mainufacturer.ZH_NAME}</i><br />
| 电话:<em><a class="phone" href="tel:${mainufacturer.PHONE}">${mainufacturer.PHONE}</a></em>
| </p>
| </a>
| [/#list]
| [/#if]
|
|