error.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>失败</title>
  6. <link rel="stylesheet" href="../../component/pear/css/pear.css" />
  7. <link rel="stylesheet" href="../../demos/css/result.css" />
  8. </head>
  9. <body class="pear-container">
  10. <div class="layui-card">
  11. <div class="layui-card-body">
  12. <div class="result">
  13. <div class="error">
  14. <svg viewBox="64 64 896 896" data-icon="close-circle" width="80px" height="80px" fill="currentColor" aria-hidden="true" focusable="false" class=""><path d="M685.4 354.8c0-4.4-3.6-8-8-8l-66 .3L512 465.6l-99.3-118.4-66.1-.3c-4.4 0-8 3.5-8 8 0 1.9.7 3.7 1.9 5.2l130.1 155L340.5 670a8.32 8.32 0 0 0-1.9 5.2c0 4.4 3.6 8 8 8l66.1-.3L512 564.4l99.3 118.4 66 .3c4.4 0 8-3.5 8-8 0-1.9-.7-3.7-1.9-5.2L553.5 515l130.1-155c1.2-1.4 1.8-3.3 1.8-5.2z"></path><path d="M512 65C264.6 65 64 265.6 64 513s200.6 448 448 448 448-200.6 448-448S759.4 65 512 65zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"></path></svg>
  15. </div>
  16. <h2 class="title">提交失败</h2>
  17. <p class="desc">
  18. 请核对并修改以下信息后,再重新提交。如果仅是简单操作,使用 Message 全局提示反馈即可。
  19. 本文字区域可以展示简单的补充说明,如果有类似展示
  20. “单据”的需求,下面这个灰色区域可以呈现比较复杂的内容。
  21. </p>
  22. <div class="content">
  23. </div>
  24. <div class="action">
  25. <button class="pear-btn pear-btn-primary">返回修改</button>
  26. &nbsp;&nbsp;&nbsp;
  27. <button class="pear-btn">返回首页</button>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <script src="../../component/layui/layui.js"></script>
  33. <script src="../../component/pear/pear.js"></script>
  34. <script>
  35. layui.use(['jquery'],function(){
  36. setTimeout(function(){
  37. top.layui.tab.delCurrentTabByElem("content",function(){
  38. /// 回调
  39. })
  40. },3000)
  41. })
  42. </script>
  43. </body>
  44. </html>