step-4.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <div class="success-img">
  23. <img class="install-success-pic" src="INSTALL_IMG/success_img.jpg" alt="">
  24. </div>
  25. <div class="install-success-text">
  26. <p class="install-success-title">恭喜您!已成功安装niucloud-admin。</p>
  27. <p class="install-success-desc">建议删除安装目录install后使用</p>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="other-links">
  32. <div class="back">
  33. <p class="other-links-title">您现在可以访问:</p>
  34. <ul class="other-links-list">
  35. <li class="other-links-item" onclick="window.open('{$root_url}/admin/login')">
  36. <div class="other-links-pic">
  37. <img src="INSTALL_IMG/web.jpg" alt="">
  38. </div>
  39. <a href="javascript:void(0)" class="other-links-text" >网站后台</a>
  40. </li>
  41. <li class="other-links-item" onclick="window.open('{$root_url}/site/login')">
  42. <div class="other-links-pic">
  43. <img src="INSTALL_IMG/site_web.png" alt="">
  44. </div>
  45. <a href="javascript:void(0)" class="other-links-text" >站点后台</a>
  46. </li>
  47. <li class="other-links-item" onclick="window.open('https://www.niucloud.com')">
  48. <div class="other-links-pic">
  49. <img src="INSTALL_IMG/admin.jpg" alt="">
  50. </div>
  51. <a href="javascript:void(0)" class="other-links-text" >NIUCLOUD官方网站</a>
  52. </li>
  53. </ul>
  54. </div>
  55. </div>
  56. {/block}
  57. {block name="script"}
  58. <script>
  59. ControlContent(3);
  60. // function getStatus() {
  61. // $.ajax({
  62. // url: "{$root_url}/install.php/index/getInstallInfo",
  63. // dataType: 'json',
  64. // type: 'post',
  65. // success : function(data) {
  66. // console.log(data);
  67. // setTimeout(() => {
  68. // getStatus();
  69. // }, 500)
  70. // }
  71. // })
  72. // }
  73. //
  74. // setTimeout(() => {
  75. // getStatus();
  76. // }, 500)
  77. </script>
  78. {/block}