information.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <view class="content">
  3. <view class="list" @click="navigator">
  4. <image class="img" src="../../static/img/zixun1.png" mode=""></image>
  5. <view class="text">
  6. {{$t('homeinformation.m1')}}
  7. </view>
  8. </view>
  9. <view class="">xian</view>
  10. <view class="list" @click="navigatorT">
  11. <image class="img" src="../../static/img/zixun2.png" mode=""></image>
  12. <view class="text">
  13. {{$t('homeinformation.m0')}}
  14. </view>
  15. </view>
  16. <view class="">xian</view>
  17. <view class="list" @click="navigatorY">
  18. <image class="img" src="../../static/img/zixun3.png" mode=""></image>
  19. <view class="text">
  20. {{$t('homeinformation.m2')}}
  21. </view>
  22. </view>
  23. <view class="">xian</view>
  24. <view class="list" @click="navigatorH">
  25. <image class="img" src="../../static/img/zixun4.png" mode=""></image>
  26. <view class="text">
  27. {{$t('login.a0')}}
  28. </view>
  29. </view>
  30. <view class="">xian</view>
  31. <view class="tit">
  32. {{$t('homeinformation.m4')}}
  33. </view>
  34. <view class="pro">
  35. <view class="im">
  36. <image class="image" src="../../static/img/zixun7.png" mode=""></image>
  37. <view class="wen">{{$t('homeinformation.m5')}}</view>
  38. </view>
  39. <view class="im">
  40. <image class="image" src="../../static/img/zixun8.png" mode=""></image>
  41. <view class="wen">{{$t('homeinformation.m6')}}</view>
  42. </view>
  43. </view>
  44. <view class="infor flex">
  45. <view class="im">
  46. <image class="image" src="../../static/img/zixun10.png" mode=""></image>
  47. <view class="wen">{{$t('homeinformation.m7')}}</view>
  48. </view>
  49. <view class="im">
  50. <image class="image" src="../../static/img/zixun6.png" mode=""></image>
  51. <view class="wen">{{$t('homeinformation.m8')}}</view>
  52. </view>
  53. <view class="im">
  54. <image class="image" src="../../static/img/zixun9.png" mode=""></image>
  55. <view class="wen">{{$t('homeinformation.m9')}}</view>
  56. </view>
  57. </view>
  58. <taber tab='information'></taber>
  59. </view>
  60. </template>
  61. <script>
  62. import taber from "@/components/footer/footer.vue";
  63. export default {
  64. components: {
  65. taber
  66. },
  67. data() {
  68. return {};
  69. },
  70. methods: {
  71. navigator() {
  72. uni.navigateTo({
  73. url: '/pages/introduce/introduce'
  74. })
  75. },
  76. navigatorT() {
  77. uni.navigateTo({
  78. url: '/pages/introduce/promotion'
  79. })
  80. },
  81. navigatorY() {
  82. uni.navigateTo({
  83. url: '/pages/introduce/game'
  84. })
  85. },
  86. navigatorH() {
  87. uni.switchTab({
  88. url: '/pages/entertainment/entertainment'
  89. })
  90. },
  91. }
  92. };
  93. </script>
  94. <style lang="scss">
  95. .content{
  96. width: 750rpx;
  97. height: 1800rpx;
  98. background-color: $page-color-base;
  99. padding-top: var(--status-bar-height);
  100. }
  101. .list {
  102. height: 180rpx;
  103. display: flex;
  104. justify-content: start;
  105. .img {
  106. margin-left: 30rpx;
  107. margin-top: 20rpx;
  108. width: 200rpx;
  109. height: 160rpx;
  110. }
  111. .text {
  112. margin-left: 15rpx;
  113. margin-top: 30rpx;
  114. height: 29rpx;
  115. font-size: 30rpx;
  116. font-weight: bold;
  117. color: #FFFFFF;
  118. line-height: 39rpx;
  119. }
  120. }
  121. .pro {
  122. margin-top: 30rpx;
  123. display: flex;
  124. justify-content: center;
  125. }
  126. .im {
  127. margin-left: 30rpx;
  128. margin-right: 30rpx;
  129. width: 200rpx;
  130. height: 260rpx;
  131. // height: 100%;
  132. background-color: #191a1f;
  133. }
  134. .image {
  135. margin-top: 20rpx;
  136. margin-left: 30rpx;
  137. width: 100rpx;
  138. height: 120rpx;
  139. }
  140. .wen {
  141. color: #FFFFFF;
  142. font-size: 20rpx;
  143. text-align: center;
  144. // height: 100%;
  145. }
  146. .infor {
  147. margin-top: 30rpx;
  148. }
  149. .tit {
  150. margin-top: 40rpx;
  151. text-align: center;
  152. height: 46rpx;
  153. font-size: 49rpx;
  154. font-weight: 500;
  155. color: #FFFFFF;
  156. line-height: 21rpx;
  157. }
  158. .img {
  159. margin-top: 26rpx;
  160. margin-left: 11rpx;
  161. width: 728rpx;
  162. height: 538rpx;
  163. }
  164. </style>