donateQrcode.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>微信扫码!-一元捐</title>
  5. <meta name="keywords" content="">
  6. <meta name="description" content="">
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <meta name="renderer" content="webkit">
  11. <!--css begin-->
  12. <link href="/static/images/icon/u.png" rel="icon" type="image/x-icon" />
  13. <link rel="stylesheet" href="/static/lib/bootstrap/css/bootstrap.min.css">
  14. <link rel="stylesheet" href="/static/css/base.css">
  15. <style>
  16. body{
  17. font-family: "Microsoft Yahei", "微软雅黑";
  18. box-sizing: border-box;
  19. }
  20. /*头部导航*/
  21. #nav{
  22. width: 100%;
  23. margin: 0 auto;
  24. background: #474443;
  25. }
  26. #nav .container{
  27. margin: 0 auto;
  28. padding: 0;
  29. width: 1140px;
  30. height: 60px;
  31. line-height: 60px;
  32. text-align: center;
  33. }
  34. #nav .fl{
  35. position: relative;
  36. }
  37. #nav .fl img{
  38. margin-right: 32px;
  39. width: 65px;
  40. height: 22px;
  41. }
  42. #nav .fl span{
  43. font-size: 16px;
  44. color: #fff;
  45. }
  46. #nav .fl span:before{
  47. content: '';
  48. position: absolute;
  49. top: 25px;
  50. left: 80px;
  51. width: 1px;
  52. height: 14px;
  53. background: #a0a0a0;
  54. }
  55. #nav .fl a.return{
  56. margin-left: 28px;
  57. font-size: 12px;
  58. color: #b4b4b4;
  59. text-decoration: none;
  60. }
  61. #nav .fr a{
  62. margin-right: 45px;
  63. font-size: 14px;
  64. color: #fff;
  65. }
  66. #nav .fr a:last-child {
  67. margin-right: 0;
  68. }
  69. .main{
  70. width: 100%;
  71. margin: 40px 0 150px 0;
  72. }
  73. .main .container{
  74. width: 1140px;
  75. margin: 0 auto;
  76. padding: 0;
  77. }
  78. .main .section{
  79. margin: 0 auto;
  80. width: 100%;
  81. height: 520px;
  82. overflow: hidden;
  83. text-align: center;
  84. background: #fff;
  85. border: 1px solid #dcdcdc;
  86. }
  87. .main .section p.project-title{
  88. margin-top: 50px;
  89. font-size: 22px;
  90. color: #323232;
  91. }
  92. .main .section p.project-title em{
  93. margin: 0 5px;
  94. font-size: 22px;
  95. color: #ee623c;
  96. font-weight: bold;
  97. }
  98. .main .section p.project-title span{
  99. margin: 0 5px;
  100. font-size: 22px;
  101. font-weight: bold;
  102. color: #303030;
  103. }
  104. .main .section .qrcode{
  105. margin: 40px auto 34px;
  106. width: 280px;
  107. height: 280px;
  108. line-height: 280px;
  109. text-align: center;
  110. border: 1px solid #dcdcdc;
  111. }
  112. .main .section .qrcode img{
  113. width: 240px;
  114. height: 240px;
  115. }
  116. .main .section .instruction{
  117. margin-bottom: 14px;
  118. font-size: 16px;
  119. color: #323232;
  120. }
  121. .main .section .instruction span{
  122. font-size: 16px;
  123. color: #323232;
  124. }
  125. .main .section .pay{
  126. font-family: 'SimHei'!important;
  127. font-size: 14px;
  128. color: #8c8c8c;
  129. }
  130. .modal-backdrop{
  131. position: static !important ;
  132. background-color: transparent !important ;
  133. }
  134. </style>
  135. </head>
  136. <body>
  137. <!--
  138. <div ng-include src="'static/view/common/nav.html'"></div>
  139. -->
  140. <div class="main">
  141. <div class="container">
  142. <div class="section">
  143. <p class="project-title">捐款金额<em>{{projectRecode.amount}}</em>元,支持<span>{{projectRecode.project.name}}</span>公益项目</p>
  144. <div class="qrcode">
  145. <img src="{{qrcodeUrl}}" alt=""/>
  146. </div>
  147. <p class="instruction">收款机构 : <span>{{projectRecode.project.organization.name}}</span></p>
  148. <span class="pay">请使用微信扫一扫,使用微信支付完成捐款</span>
  149. </div>
  150. </div>
  151. </div>
  152. <!--js begin-->
  153. <script src="/static/lib/jquery/jquery.min.js"></script>
  154. <script src="/static/lib/bootstrap/js/bootstrap.min.js"></script>
  155. </body>
  156. </html>