activity_detail.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title>活动管理新增</title>
  7. <style>
  8. .ke-container-default {
  9. width: 100% !important
  10. }
  11. .error {
  12. color: red;
  13. }
  14. /* .upload-box {
  15. width: 400px;
  16. height: 200px;
  17. background: #f5f5f5;
  18. border: solid 1px #ccc;
  19. text-align: center;
  20. }*/
  21. /* .shc-box {
  22. margin-top: 60px;
  23. }*/
  24. .icon-add {
  25. display: inline-block;
  26. width: 60px;
  27. height: 60px;
  28. border: solid 1px #0c80fe;
  29. color: #0c80fe;
  30. border-radius: 50%;
  31. font-size: 40px;
  32. line-height: 60px;
  33. }
  34. </style>
  35. </head>
  36. <body layout:fragment="content">
  37. <article class="page-container">
  38. <div class="row cl">
  39. <label class="form-label col-xs-4 col-sm-2">活动名称:</label>
  40. <div class="formControls col-xs-8 col-sm-9">
  41. <p th:text="${activity?.activity_title}"></p>
  42. </div>
  43. </div>
  44. <div class="row cl">
  45. <label class="form-label col-xs-4 col-sm-2">活动二维码:</label>
  46. <div class="formControls col-xs-8 col-sm-9">
  47. <img src="http://www.gbtags.com/gb/qrcode?t=http://www.baidu.com">
  48. </div>
  49. </div>
  50. <div class="row cl">
  51. <label class="form-label col-xs-4 col-sm-2">活动验证码:</label>
  52. <div class="formControls col-xs-8 col-sm-9">
  53. <!--<p th:text="${activity?.activity_title}"></p>-->
  54. <p>这是验证码</p>
  55. </div>
  56. </div>
  57. <div class="row cl">
  58. <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
  59. <a onclick="removeIframe();" class="btn btn-default radius" type="button">返回</a>
  60. </div>
  61. </div>
  62. </article>
  63. <script th:inline="javascript">
  64. /**
  65. * 取消
  66. */
  67. function removeIframe() {
  68. var index = parent.layer.getFrameIndex(window.name);
  69. parent.layer.close(index);
  70. }
  71. </script>
  72. </body>
  73. </html>