vr-shopxo-source/service/Application/Home/View/Default/Personal/Index.html

53 lines
1.3 KiB
HTML
Raw Normal View History

2018-08-09 10:42:34 +00:00
<include file="Public/Header" />
2018-10-09 10:24:44 +00:00
<!-- header top nav -->
<include file="Public/HeaderTopNav" />
<!-- search -->
<include file="Public/NavSearch" />
<!-- header nav -->
2018-08-09 10:42:34 +00:00
<include file="Public/HeaderNav" />
2018-10-09 10:24:44 +00:00
<!-- goods category -->
<include file="Public/GoodsCategory" />
<!-- content -->
<div class="am-container user-main">
2018-08-09 10:42:34 +00:00
2018-10-09 10:24:44 +00:00
<!-- user menu start -->
<include file="Public/UserMenu" />
<!-- user menu end -->
<!-- content start -->
<div class="user-content">
<div class="user-content-body">
2018-08-09 10:42:34 +00:00
<legend>
2018-10-09 10:24:44 +00:00
<span class="legend-title">{{:L('personal_save_nav_title_text')}}</span>
<a href="{{:U('Home/Personal/SaveInfo')}}" class="am-fr"> {{:L('common_operation_edit')}}</a>
2018-08-09 10:42:34 +00:00
</legend>
<dl class="dl-content">
<foreach name="personal_show_list" key="k" item="v">
<if condition="isset($user[$k])">
<dt>{{$v.name}}</dt>
<dd>
<if condition="empty($user[$k])">
2018-10-09 10:24:44 +00:00
<span class="items-value-empty">{{:L('common_on_fill_in_the_text')}}</span>
2018-08-09 10:42:34 +00:00
<else />
{{$user[$k]}}
</if>
<if condition="isset($v['tips'])">
2018-10-09 10:24:44 +00:00
<span class="span-edit">{{$v.tips}}</span>
2018-08-09 10:42:34 +00:00
</if>
</dd>
</if>
</foreach>
</dl>
</div>
</div>
2018-10-09 10:24:44 +00:00
<!-- content end -->
2018-08-09 10:42:34 +00:00
</div>
<!-- footer start -->
<include file="Public/Footer" />
<!-- footer end -->