Index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- header start -->
  2. <include file="Public/Header" />
  3. <!-- header end -->
  4. <!-- header nav start -->
  5. <include file="Public/HeaderNav" />
  6. <!-- header nav end -->
  7. <div class="am-cf user-main" <if condition="!empty($max_width_style)">style="{{$max_width_style}}"</if>>
  8. <!-- user menu start -->
  9. <include file="Public/UserMenu" />
  10. <!-- user menu end -->
  11. <!-- content start -->
  12. <div class="user-content">
  13. <div class="user-content-body p-10">
  14. <legend>
  15. <span class="fs-16">{{:L('personal_save_nav_title_text')}}</span>
  16. <a href="{{:U('Home/Personal/SaveInfo')}}" class="fr fs-14 m-t-5"> {{:L('common_operation_edit')}}</a>
  17. </legend>
  18. <dl class="dl-content">
  19. <foreach name="personal_show_list" key="k" item="v">
  20. <if condition="isset($user[$k])">
  21. <dt>{{$v.name}}</dt>
  22. <dd>
  23. <if condition="empty($user[$k])">
  24. <span class="cr-999">{{:L('common_on_fill_in_the_text')}}</span>
  25. <else />
  26. {{$user[$k]}}
  27. </if>
  28. <if condition="isset($v['tips'])">
  29. <span class="m-l-30">{{$v.tips}}</span>
  30. </if>
  31. </dd>
  32. </if>
  33. </foreach>
  34. </dl>
  35. </div>
  36. </div>
  37. <!-- content end -->
  38. </div>
  39. <!-- layuot common module start -->
  40. <include file="Public/CommonModule" />
  41. <!-- layuot common module end -->
  42. <!-- footer start -->
  43. <include file="Public/Footer" />
  44. <!-- footer end -->