hdxx.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="hdxx">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="content">
  5. <view class="text">
  6. <view class="header">
  7. <view class="disC three-font">
  8. 活动发布成功
  9. <text class="sj fwb-font">13:28</text>
  10. </view>
  11. </view>
  12. <view class="main">
  13. <view class="fwb-font">
  14. 恭喜!您已成功完成
  15. <text class="btn-font" style="color: #0056a8;">“XXXX讲座”</text>
  16. 活动发布过程。您的活动现在已经在我们的平台上正式上线,可以被其他用户浏览和参加。请随时返回您的活动管理页面,以进行任何进一步的编辑、更新或促进活动的操作。
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- <view class="content">
  22. <view class="text">
  23. <view class="header">
  24. <view>
  25. 活动发布成功
  26. <view class="sj">13:28</view>
  27. </view>
  28. </view>
  29. <view class="main">
  30. <view>
  31. 恭喜!您已成功完成
  32. <view>“XXXX讲座”</view>
  33. 活动报名。您的参与信息已经成功提交,您现在是我们活动的一部分,我们非常期待与您共度美好时光。
  34. <view style="text-indent: 2em" >
  35. 以下是一些额外信息,以确保您充分了解您的参与:
  36. </view>
  37. </view>
  38. <view class="custom-list">
  39. <view class="list-item">活动名称:[活动名称]</view>
  40. <view class="list-item">日期:[活动日期]</view>
  41. <view class="list-item">时间:[活动时间]</view>
  42. <view class="list-item">地点:[活动地点]</view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="content">
  48. <view class="text">
  49. <view class="header">
  50. <view>
  51. 活动已结束
  52. <view class="sj">13:28</view>
  53. </view>
  54. </view>
  55. <view class="main">
  56. <view>
  57. <view>“XXXX讲座”</view>
  58. 活动已圆满结束,我们要对您的热情参与表示由衷的感谢。您的支持和参与使这次活动变得特别而难忘。
  59. 再次感谢您的参与,我们期待将来再次与您共享更多精彩的活动。敬请期待未来的活动通知!
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="content">
  65. <view class="text">
  66. <view class="header">
  67. <view>
  68. 活动开始提醒
  69. <view class="sj">13:28</view>
  70. </view>
  71. </view>
  72. <view class="main">
  73. <view>
  74. <view>“XXXX讲座”</view>
  75. 活动快开始啦!准备好迎接精彩时刻了吗?不要错过这个令人兴奋的机会,我们期待着与您一同度过难忘的时光。请确保您已经做好了所有必要的准备,包括查看活动时间、地点和其他重要信息。
  76. </view>
  77. </view>
  78. </view>
  79. </view> -->
  80. <view class="content">
  81. <view class="text">
  82. <view class="header">
  83. <view class="disC three-font">
  84. 成功加入教研室
  85. <text class="sj fwb-font">13:28</text>
  86. </view>
  87. </view>
  88. <view class="main">
  89. <view style="text-indent: 0em">
  90. 尊敬的
  91. <text>XXX</text>
  92. </view>
  93. <view>
  94. 我们很高兴通知您,您已成功加入
  95. <text class="btn-font" style="color: #0056a8;">[教研室名称]</text>
  96. !欢迎加入我们的团队,我们期待与您一同合作并共同追求卓越教育。
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. </view>
  102. </template>
  103. <script>
  104. export default {
  105. data() {
  106. return {
  107. navBarData: {
  108. title: '活动消息',
  109. btn: 1
  110. }
  111. };
  112. }
  113. };
  114. </script>
  115. <style lang="scss">
  116. .hdxx{
  117. padding-bottom: 80rpx;
  118. }
  119. .content {
  120. padding: 10px;
  121. margin: 10px;
  122. background-color: white;
  123. border-radius: 8px;
  124. // margin-top: 5px;
  125. .disC{
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: baseline;
  129. }
  130. .text {
  131. .header {
  132. view {
  133. color: black;
  134. // font-size: 16px;
  135. font-weight: 600;
  136. margin-bottom: 10px;
  137. display: flex;
  138. justify-content: space-between;
  139. .sj {
  140. color: #999999;
  141. // font-size: 13px;
  142. font-weight: 500;
  143. }
  144. }
  145. }
  146. .main {
  147. color: #999999;
  148. view {
  149. font-weight: 400;
  150. // font-size: 14px;
  151. text-indent: 2em;
  152. view {
  153. color: #0056a8;
  154. font-weight: 600;
  155. }
  156. }
  157. .custom-list {
  158. padding-left: 5px;
  159. padding-top: 3px;
  160. }
  161. .custom-list .list-item::before {
  162. content: '• ';
  163. }
  164. }
  165. }
  166. }
  167. </style>