step-4.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {extend name="base"/}
  2. {block name="resources"}
  3. <style>
  4. .install-content-procedure .content-procedure-item:first-of-type{
  5. background: url("INSTALL_IMG/complete_two.png") no-repeat center / contain;
  6. color: #fff;
  7. }
  8. .install-content-procedure .content-procedure-item:nth-child(2), .install-content-procedure .content-procedure-item:nth-child(3){
  9. background: url("INSTALL_IMG/complete_four.png") no-repeat center / contain;
  10. color: #fff;
  11. }
  12. .install-content-procedure .content-procedure-item:nth-child(4){
  13. background: url("INSTALL_IMG/complete_three.png") no-repeat center / contain;
  14. color: #fff;
  15. }
  16. .install-content-procedure{border: none;}
  17. </style>
  18. {/block}
  19. {block name="main"}
  20. <div class="install-success">
  21. <div class="install-success-box">
  22. <img class="install-success-pic" src="INSTALL_IMG/install_complete.png" alt="">
  23. <div class="install-success-text">
  24. <p class="install-success-title">恭喜您!已成功安装单商户V5版系统。</p>
  25. <p class="install-success-desc">建议删除安装目录install后使用</p>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="other-links">
  30. <p class="other-links-title">您现在可以访问:</p>
  31. <ul class="other-links-list">
  32. <li class="other-links-item">
  33. <div class="other-links-pic">
  34. <img src="INSTALL_IMG/site_index.png" alt="">
  35. </div>
  36. <a href="{$root_url}" class="other-links-text" target="_blank">网站后台</a>
  37. </li>
  38. <li class="other-links-item">
  39. <div class="other-links-pic">
  40. <img src="INSTALL_IMG/official_website.png" alt="">
  41. </div>
  42. <a href="http://www.niushop.com" class="other-links-text" target="_blank">NIUSHOP官方网站</a>
  43. </li>
  44. <li class="other-links-item">
  45. <div class="other-links-pic">
  46. <img src="INSTALL_IMG/forum.png" alt="">
  47. </div>
  48. <a href="http://bbs.niushop.com" class="other-links-text" target="_blank">NIUSHOP官方论坛</a>
  49. </li>
  50. </ul>
  51. </div>
  52. {/block}
  53. {block name="script"}
  54. <script>
  55. ControlContent(3);
  56. </script>
  57. {/block}