vr-shopxo-source/app/admin/view/default/goodscomments/module/goods.html

18 lines
815 B
HTML
Raw Normal View History

2020-06-08 11:26:37 +00:00
<!-- 商品基础信息 -->
{{if !empty($module_data)}}
{{if !empty($module_data['goods'])}}
<div class="am-nbfc">
2023-03-01 02:48:46 +00:00
{{if !empty($module_data['goods']['images'])}}
<a href="{{$module_data.goods.goods_url}}" target="_blank">
2023-08-27 08:59:15 +00:00
<img src="{{$module_data.goods.images}}" alt="{{$module_data.goods.title}}" class="am-img-thumbnail am-radius am-margin-right-sm am-fl" width="35" height="35" />
2023-03-01 02:48:46 +00:00
</a>
{{/if}}
2023-08-27 08:59:15 +00:00
<p class="am-text-truncate">
<a href="{{$module_data.goods.goods_url}}" target="_blank">{{$module_data.goods.title}}</a>
</p>
<p>{{$currency_symbol}}{{$module_data.goods.price}}</p>
2020-06-08 11:26:37 +00:00
</div>
{{else /}}
2023-01-29 10:11:08 +00:00
{{:MyLang('gods_info_abnormal_tips')}}
2020-06-08 11:26:37 +00:00
{{/if}}
{{/if}}