100 lines
3.3 KiB
HTML
100 lines
3.3 KiB
HTML
{{include file="public/header" /}}
|
|
|
|
<!-- content start -->
|
|
<div class="am-padding-sm">
|
|
{{if !empty($data)}}
|
|
<dl class="dl-content">
|
|
<dt>标题名称</dt>
|
|
<dd>
|
|
<div class="goods">
|
|
<a href="{{$data.goods_url}}" target="_blank" title="{{$data.title}}">
|
|
<img src="{{$data['images']}}" class="am-img-thumbnail am-radius goods-images" />
|
|
</a>
|
|
<a href="{{$data.goods_url}}" target="_blank" title="{{$data.title}}" {{if !empty($data['title_color'])}} style="color:{{$data.title_color}};" {{/if}} class="am-nowrap-initial">{{$data.title}}</a>
|
|
</div>
|
|
</dd>
|
|
|
|
<dt>商品简述</dt>
|
|
<dd class="am-nowrap-initial">{{$data.simple_desc}}</dd>
|
|
|
|
<dt>销售价格(元)</dt>
|
|
<dd>
|
|
{{$data.price}}
|
|
{{if !empty($data['original_price']) and $data['original_price'] gt 0}}
|
|
<br /><span class="am-badge am-radius">原价 {{$data.original_price}}</span>
|
|
{{/if}}
|
|
</dd>
|
|
|
|
<dt>上下架</dt>
|
|
<dd>{{$common_is_shelves_list[$data['is_shelves']]['name']}}</dd>
|
|
|
|
<dt>库存数量</dt>
|
|
<dd>{{$data.inventory}} {{$data.inventory_unit}}</dd>
|
|
|
|
<dt>最低起购数量</dt>
|
|
<dd>{{$data.buy_min_number}} {{$data.inventory_unit}}</dd>
|
|
|
|
<dt>单次最大购买数量</dt>
|
|
<dd>
|
|
{{if $data['buy_max_number'] eq 0}}
|
|
<span class="cr-ddd">不限</span>
|
|
{{else /}}
|
|
{{$data.buy_max_number}} {{$data.inventory_unit}}
|
|
{{/if}}
|
|
</dd>
|
|
|
|
<dt>商品型号</dt>
|
|
<dd>{{$data.model}}</dd>
|
|
|
|
<dt>品牌</dt>
|
|
<dd>{{$data.brand_name}}</dd>
|
|
|
|
<dt>生产地</dt>
|
|
<dd>{{$data.place_origin_name}}</dd>
|
|
|
|
<dt>商品分类</dt>
|
|
<dd>{{$data.category_text}}</dd>
|
|
|
|
<dt>购买赠送积分</dt>
|
|
<dd>{{$data.give_integral}}</dd>
|
|
|
|
<dt>扣减库存</dt>
|
|
<dd>{{:lang('common_is_text_list')[$data['is_deduction_inventory']]['name']}}</dd>
|
|
|
|
<dt>访问次数</dt>
|
|
<dd>{{$data.access_count}}</dd>
|
|
|
|
<dt>电脑端详情</dt>
|
|
<dd>
|
|
<div class="am-scrollable-vertical am-nowrap-initial">{{$data.content_web|raw}}</div>
|
|
</dd>
|
|
|
|
<dt>虚拟商品展示数据</dt>
|
|
<dd>
|
|
<div class="am-scrollable-vertical am-nowrap-initial">{{$data.fictitious_goods_value|raw}}</div>
|
|
</dd>
|
|
|
|
<dt>SEO标题</dt>
|
|
<dd>{{$data.seo_title}}</dd>
|
|
|
|
<dt>SEO关键字</dt>
|
|
<dd>{{$data.seo_keywords}}</dd>
|
|
|
|
<dt>SEO描述</dt>
|
|
<dd>{{$data.seo_desc}}</dd>
|
|
|
|
<dt>创建时间</dt>
|
|
<dd>{{$data.add_time}}</dd>
|
|
|
|
<dt>更新时间</dt>
|
|
<dd>{{$data.upd_time}}</dd>
|
|
</dl>
|
|
{{else /}}
|
|
<div class="table-no"><i class="am-icon-warning"></i> 没有相关数据</div>
|
|
{{/if}}
|
|
</div>
|
|
<!-- content end -->
|
|
|
|
<!-- footer start -->
|
|
{{include file="public/footer" /}}
|
|
<!-- footer end --> |