chainbits.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <v-page>
  3. <v-header>
  4. <template #title>
  5. <view>
  6. {{ $t("help.f0") }}
  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/8.png" alt="" />
  14. </view>
  15. <text class="layout-main__tip">{{ $t("help.f1") }}</text>
  16. <view class="layout-main-container bg-panel-3">
  17. <img src="/static/img/articles/9.png" alt="" />
  18. </view>
  19. <text class="layout-main__tip">{{ $t("help.f2") }}</text>
  20. <view class="layout-main-container bg-panel-3">
  21. <text>{{ $t("help.f3") }}</text>
  22. </view>
  23. <view class="layout-main-container bg-panel-3">
  24. <img src="/static/img/articles/10.png" alt="" />
  25. </view>
  26. <text class="layout-main__tip align-left mt36">{{
  27. $t("help.f4")
  28. }}</text>
  29. <text class="layout-main__tip align-left m0">{{
  30. $t("help.f5")
  31. }}</text>
  32. <text class="layout-main__tip align-left mb36">{{
  33. $t("help.f6")
  34. }}</text>
  35. <view class="layout-main-container bg-panel-3">
  36. <text>{{ $t("help.f7") }}</text>
  37. <text>{{ $t("help.f8") }}</text>
  38. <text>{{ $t("help.f9") }}</text>
  39. <text>{{ $t("help.g0") }}</text>
  40. </view>
  41. <view class="layout-main-container bg-panel-3">
  42. <text>{{ $t("help.g1") }}</text>
  43. <text>{{ $t("help.g2") }}</text>
  44. <text>{{ $t("help.g3") }}</text>
  45. <text>{{ $t("help.g4") }}</text>
  46. </view>
  47. </view>
  48. <van-toast id="van-toast" />
  49. </v-page>
  50. </template>
  51. <script>
  52. export default {
  53. components: {},
  54. data() {
  55. return {};
  56. },
  57. onLoad() {},
  58. methods: {},
  59. };
  60. </script>
  61. <style lang="scss" scoped>
  62. .layout-main {
  63. padding-bottom: 36rpx;
  64. }
  65. .layout-main-container {
  66. border-radius: 36rpx;
  67. padding: 36rpx;
  68. color: rgba(#fff, 0.5);
  69. font-size: 26rpx;
  70. + .layout-main-container {
  71. margin-top: 36rpx;
  72. }
  73. .layout-main__title {
  74. color: #fff;
  75. font-size: 36rpx;
  76. margin-bottom: 30rpx;
  77. }
  78. text {
  79. display: block;
  80. }
  81. img {
  82. width: 100%;
  83. + img {
  84. display: block;
  85. margin-top: 26rpx;
  86. }
  87. }
  88. }
  89. .layout-main__tip {
  90. display: block;
  91. text-align: center;
  92. color: rgba(#fff, 0.5);
  93. margin: 40rpx 0;
  94. &.align-left {
  95. text-align: left;
  96. }
  97. &.m0 {
  98. margin: 0;
  99. }
  100. &.mt36 {
  101. margin-top: 36rpx;
  102. margin-bottom: 0;
  103. }
  104. &.mb36 {
  105. margin-bottom: 36rpx;
  106. margin-top: 0;
  107. }
  108. }
  109. </style>