information.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {};
  41. },
  42. methods: {
  43. navigator() {
  44. uni.navigateTo({
  45. url: '/pages/introduce/introduce'
  46. })
  47. },
  48. navigatorT() {
  49. uni.navigateTo({
  50. url: '/pages/promotion/promotion'
  51. })
  52. },
  53. navigatorY() {
  54. uni.navigateTo({
  55. url: '/pages/game/game'
  56. })
  57. },
  58. navigatorH() {
  59. uni.switchTab({
  60. url: '/pages/entertainment/entertainment'
  61. })
  62. },
  63. }
  64. };
  65. </script>
  66. <style lang="scss">
  67. .content{
  68. width: 750rpx;
  69. height: 1800rpx;
  70. background-color: #000000;
  71. }
  72. .list {
  73. height: 180rpx;
  74. display: flex;
  75. justify-content: start;
  76. .img {
  77. margin-left: 30rpx;
  78. margin-top: 20rpx;
  79. width: 200rpx;
  80. height: 160rpx;
  81. }
  82. .text {
  83. margin-left: 15rpx;
  84. margin-top: 30rpx;
  85. // width: 237rpx;
  86. height: 29rpx;
  87. font-size: 30rpx;
  88. font-family: PingFang SC;
  89. font-weight: bold;
  90. color: #FFFFFF;
  91. line-height: 39rpx;
  92. }
  93. }
  94. .tit {
  95. margin-top: 40rpx;
  96. margin-left: 279rpx;
  97. // width: 191rpx;
  98. height: 46rpx;
  99. font-size: 49rpx;
  100. font-family: PingFang SC;
  101. font-weight: 500;
  102. color: #FFFFFF;
  103. line-height: 21rpx;
  104. }
  105. .img {
  106. margin-top: 26rpx;
  107. margin-left: 11rpx;
  108. width: 728rpx;
  109. height: 538rpx;
  110. }
  111. </style>