information.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. 互娛遊戲玩法介紹
  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. 互娛遊戲推廣計劃
  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. 互娛遊戲舉例
  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. 互娛共享
  28. </view>
  29. </view>
  30. <view class="">xian</view>
  31. <view class="tit">
  32. 項目亮點
  33. </view>
  34. <image class="img" src="../../static/img/zixun5.png" mode="" ></image>
  35. <taber tab='information'></taber>
  36. </view>
  37. </template>
  38. <script>
  39. import taber from "@/components/footer/footer.vue";
  40. export default {
  41. components: {
  42. taber
  43. },
  44. data() {
  45. return {};
  46. },
  47. methods: {
  48. navigator() {
  49. uni.navigateTo({
  50. url: '/pages/introduce/introduce'
  51. })
  52. },
  53. navigatorT() {
  54. uni.navigateTo({
  55. url: '/pages/promotion/promotion'
  56. })
  57. },
  58. navigatorY() {
  59. uni.navigateTo({
  60. url: '/pages/game/game'
  61. })
  62. },
  63. navigatorH() {
  64. uni.switchTab({
  65. url: '/pages/entertainment/entertainment'
  66. })
  67. },
  68. }
  69. };
  70. </script>
  71. <style lang="scss">
  72. .content{
  73. width: 750rpx;
  74. height: 1800rpx;
  75. background-color: #000000;
  76. }
  77. .list {
  78. height: 180rpx;
  79. display: flex;
  80. justify-content: start;
  81. .img {
  82. margin-left: 30rpx;
  83. margin-top: 20rpx;
  84. width: 200rpx;
  85. height: 160rpx;
  86. }
  87. .text {
  88. margin-left: 15rpx;
  89. margin-top: 30rpx;
  90. // width: 237rpx;
  91. height: 29rpx;
  92. font-size: 30rpx;
  93. font-family: PingFang SC;
  94. font-weight: bold;
  95. color: #FFFFFF;
  96. line-height: 39rpx;
  97. }
  98. }
  99. .tit {
  100. margin-top: 40rpx;
  101. margin-left: 279rpx;
  102. // width: 191rpx;
  103. height: 46rpx;
  104. font-size: 49rpx;
  105. font-family: PingFang SC;
  106. font-weight: 500;
  107. color: #FFFFFF;
  108. line-height: 21rpx;
  109. }
  110. .img {
  111. margin-top: 26rpx;
  112. margin-left: 11rpx;
  113. width: 728rpx;
  114. height: 538rpx;
  115. }
  116. </style>