index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {extend name="layout:home" /}
  2. {block name="container"}
  3. <style>
  4. .user{
  5. height: 80px;
  6. }
  7. .user ul{
  8. margin-top: 30px;
  9. }
  10. .user ul li{
  11. list-style: none;
  12. float: left;
  13. margin-left: 50px;
  14. text-align: center;
  15. height: 45px;
  16. line-height: 45px;
  17. }
  18. .personal_title{
  19. margin-left:80px;
  20. /*margin-top:20px;*/
  21. font-size: 13px;
  22. color: dodgerblue;
  23. }
  24. table{
  25. margin-left: 120px;
  26. margin-top: 10px;
  27. }
  28. .enterprise_title{
  29. margin-left:80px;
  30. margin-top:50px;
  31. font-size: 13px;
  32. color: dodgerblue;
  33. }
  34. .enterprise_title table input{
  35. border: 1px #aaa solid;
  36. border-radius: 2px;
  37. height: 30px;
  38. width: 280px;
  39. line-height:30px ;
  40. }
  41. .td_info{
  42. width: 300px;
  43. height: 30px;
  44. line-height: 30px;
  45. }
  46. .td_user_info{
  47. width: 300px;
  48. height: 30px;
  49. line-height: 30px;
  50. }
  51. .btn{
  52. margin-left: 120px;
  53. margin-top: 10px;
  54. width: 90px;
  55. height: 30px;
  56. text-align: center;
  57. line-height: 30px;
  58. border-radius: 20px;
  59. background-color: dodgerblue;
  60. color: white;
  61. cursor:pointer;
  62. display:block;
  63. }
  64. </style>
  65. <div class="layui-tab layui-tab-card">
  66. <div class="user">
  67. <ul>
  68. <li style="margin-left: 40px;"><img height="45px" src="{$Think.USER_SITE_ROOT}/images/header.png" alt=""></li>
  69. <li>{$Think.session.user_email}</li>
  70. <li style="color: dodgerblue;">{$user['user_status_cn']}</li>
  71. </ul>
  72. </div>
  73. <div class="personal">
  74. <div>
  75. <div class="personal_title">个人认证</div>
  76. <table>
  77. <tr>
  78. <td class="td_info">可使用HAJD全球数据中心</td>
  79. <td class="td_user_info">可按需购买资源,无锁定随时删除退费</td>
  80. </tr>
  81. <tr>
  82. <td class="td_info">五分钟工单回复,7*24 90秒极速响应</td>
  83. <td class="td_user_info">30秒申请,全自动秒速审核</td>
  84. </tr>
  85. <tr>
  86. <td class="td_info">支持升级为企业认证</td>
  87. <td class="td_user_info"></td>
  88. </tr>
  89. </table>
  90. <a class="btn" href="/user/Certification/personal.html">前往认证</a>
  91. </div>
  92. </div>
  93. <div class="enterprise">
  94. <div>
  95. <div class="enterprise_title">企业认证</div>
  96. <table>
  97. <tr>
  98. <td class="td_info">可使用HAJD全球数据中心</td>
  99. <td class="td_user_info">可按需购买资源,无锁定随时删除退费</td>
  100. </tr>
  101. <tr>
  102. <td class="td_info">五分钟工单回复,7*24 90秒极速响应</td>
  103. <td class="td_user_info">工作日24小时内开具增值税专用发票</td>
  104. </tr>
  105. <tr>
  106. <td class="td_info">银企直接快捷转账</td>
  107. <td class="td_user_info">VIP群组服务</td>
  108. </tr>
  109. </table>
  110. <a class="btn" href="/user/Certification/enterprise.html" style="margin-bottom: 80px;">前往认证</a>
  111. </div>
  112. </div>
  113. </div>
  114. <script type="text/javascript">
  115. layui.use('laydate', function(){
  116. var laydate = layui.laydate;
  117. //执行一个laydate实例
  118. laydate.render({
  119. elem: '#creatTime' //指定元素
  120. });
  121. laydate.render({
  122. elem:'#timeRang',
  123. range:true,
  124. format: 'yyyy/MM/dd',
  125. done: function(value, date){
  126. /* 时间选择完成后的回调 */
  127. }
  128. })
  129. });
  130. </script>
  131. {/block}