moompy.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <v-page>
  3. <v-header>
  4. <template #title>
  5. <view>
  6. {{ $t("help.a3") }}
  7. <!-- <span class="color-theme-1">123</span> -->
  8. </view>
  9. </template>
  10. </v-header>
  11. <view class="layout-main p-x-lg">
  12. <view class="layout-main-container bg-panel-3">
  13. <img src="/static/img/articles/1.png" alt="" />
  14. </view>
  15. <text class="layout-main__tip">{{ $t("help.a4") }}</text>
  16. <view class="layout-main-container bg-panel-3">
  17. <img src="/static/img/articles/2.png" alt="" />
  18. </view>
  19. <text class="layout-main__tip">{{ $t("help.a5") }}</text>
  20. <view class="layout-main-container bg-panel-3">
  21. <text class="layout-main__title">{{ $t("help.a6") }}</text>
  22. <text>{{ $t("help.a7") }}</text>
  23. <text>{{ $t("help.a8") }}</text>
  24. <text>{{ $t("help.a9") }}</text>
  25. <text>{{ $t("help.b0") }}</text>
  26. <text>{{ $t("help.b1") }}</text>
  27. <text>{{ $t("help.b2") }}</text>
  28. </view>
  29. <view class="layout-main-container bg-panel-3">
  30. <img src="/static/img/articles/3.png" alt="" />
  31. <img src="/static/img/articles/4.png" alt="" />
  32. </view>
  33. <text class="layout-main__tip align-left mt36">{{
  34. $t("help.b3")
  35. }}</text>
  36. <text class="layout-main__tip align-left m0">{{
  37. $t("help.b4")
  38. }}</text>
  39. <text class="layout-main__tip align-left mb36">{{
  40. $t("help.b5")
  41. }}</text>
  42. <view class="layout-main-container bg-panel-3">
  43. <text class="layout-main__title">{{ $t("help.b6") }}</text>
  44. <text>{{ $t("help.b7") }}</text>
  45. </view>
  46. <view class="layout-main-container bg-panel-3">
  47. <img src="/static/img/articles/5.png" alt="" />
  48. </view>
  49. <text class="layout-main__tip align-left">{{ $t("help.b8") }}</text>
  50. <view class="layout-main-container bg-panel-3">
  51. <img src="/static/img/articles/6.png" alt="" />
  52. </view>
  53. <view class="layout-main-container bg-panel-3">
  54. <text class="layout-main__title">{{ $t("help.b9") }}</text>
  55. <text>{{ $t("help.c0") }}</text>
  56. <text>{{ $t("help.c1") }}</text>
  57. <text>{{ $t("help.c2") }}</text>
  58. <text>{{ $t("help.c3") }}</text>
  59. <text>{{ $t("help.c4") }}</text>
  60. </view>
  61. <view class="layout-main-container bg-panel-3">
  62. <img src="/static/img/articles/7.png" alt="" />
  63. </view>
  64. <view class="layout-main-container bg-panel-3">
  65. <text class="layout-main__title">{{ $t("help.c5") }}</text>
  66. <text>{{ $t("help.c6") }}</text>
  67. <text>{{ $t("help.c7") }}</text>
  68. <text>{{ $t("help.c8") }}</text>
  69. <text>{{ $t("help.c9") }}</text>
  70. <text>{{ $t("help.d0") }}</text>
  71. <text>{{ $t("help.d1") }}</text>
  72. <text>{{ $t("help.d2") }}</text>
  73. <text>{{ $t("help.d3") }}</text>
  74. </view>
  75. <view class="layout-main-container bg-panel-3">
  76. <text class="layout-main__title">{{ $t("help.d4") }}</text>
  77. <text>{{ $t("help.d5") }}</text>
  78. <text>{{ $t("help.d6") }}</text>
  79. <text>{{ $t("help.d7") }}</text>
  80. </view>
  81. </view>
  82. <van-toast id="van-toast" />
  83. </v-page>
  84. </template>
  85. <script>
  86. export default {
  87. components: {},
  88. data() {
  89. return {};
  90. },
  91. onLoad() {},
  92. methods: {},
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .layout-main {
  97. padding-bottom: 36rpx;
  98. }
  99. .layout-main-container {
  100. border-radius: 36rpx;
  101. padding: 36rpx;
  102. color: rgba(#fff, 0.5);
  103. font-size: 26rpx;
  104. + .layout-main-container {
  105. margin-top: 36rpx;
  106. }
  107. .layout-main__title {
  108. color: #fff;
  109. font-size: 36rpx;
  110. margin-bottom: 30rpx;
  111. }
  112. text {
  113. display: block;
  114. }
  115. img {
  116. width: 100%;
  117. + img {
  118. display: block;
  119. margin-top: 26rpx;
  120. }
  121. }
  122. }
  123. .layout-main__tip {
  124. display: block;
  125. text-align: center;
  126. color: rgba(#fff, 0.5);
  127. margin: 40rpx 0;
  128. &.align-left {
  129. text-align: left;
  130. }
  131. &.m0 {
  132. margin: 0;
  133. }
  134. &.mt36 {
  135. margin-top: 36rpx;
  136. margin-bottom: 0;
  137. }
  138. &.mb36 {
  139. margin-bottom: 36rpx;
  140. margin-top: 0;
  141. }
  142. }
  143. </style>