news.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-navbar title=" " @leftClick="leftClick" height="44px" bgColor="rgb(255,255,255)" :placeholder="true">
  5. <view class="u-nav-slot" slot="center">
  6. <u-input v-model="keyword" type="text" :border="true" placeholder="搜索关键词" shape="circle"
  7. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399" @focus="search">
  8. <template slot="suffix">
  9. <view @click="search">搜索</view>
  10. </template>
  11. </u-input>
  12. </view>
  13. </u-navbar>
  14. </view>
  15. <view class="boxs">
  16. <u-tabs :list="tabs" @click="changeTaaba"
  17. :scrollable = "false"
  18. :activeStyle="{
  19. color: '#000',
  20. }" :inactiveStyle="{
  21. color: '#888888'
  22. }"></u-tabs>
  23. </view>
  24. <view class="boxs">
  25. <news-module :pageList="pageList"></news-module>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import $api from '@/static/js/api.js'
  31. var that = ''
  32. export default {
  33. data() {
  34. return {
  35. keyword: '',
  36. tabs: [
  37. {
  38. name: '推荐',
  39. },
  40. {
  41. name: '发现',
  42. },
  43. {
  44. name: '资讯',
  45. },
  46. {
  47. name: '实时',
  48. },
  49. {
  50. name: '娱乐',
  51. },
  52. {
  53. name: '美食',
  54. }
  55. ],
  56. pageList: [
  57. {
  58. title: '2022年上半年十部好剧,《开端》第7名,《人世间》第4名,值得观看',
  59. imgs: [
  60. "/static/images/index/class_img1.png",
  61. "/static/images/index/class_img1.png",
  62. "/static/images/index/class_img1.png"
  63. ],
  64. type: '资讯',
  65. client: '澎湃新闻客户端',
  66. comment: 77
  67. }
  68. ],
  69. }
  70. },
  71. onLoad() {
  72. that = this
  73. },
  74. methods: {
  75. // 返回
  76. leftClick() {
  77. console.log('返回');
  78. $api.jump(-1)
  79. },
  80. // 切换tabs
  81. changeTaaba(e) {
  82. console.log(e);
  83. },
  84. },
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .content::v-deep {
  89. .top {
  90. box-sizing: border-box;
  91. // padding: 30rpx;
  92. // height: 540rpx;
  93. .u-nav-slot {
  94. position: absolute;
  95. top: 8rpx;
  96. left: 84rpx;
  97. width: 470rpx;
  98. }
  99. .u-input {
  100. background-color: #fff;
  101. height: 64rpx;
  102. padding: 0 0 0 18rpx !important;
  103. border: 1rpx solid #506Dff;
  104. margin-bottom: 12rpx;
  105. }
  106. .u-input__content__subfix-icon {
  107. width: 128rpx;
  108. height: 64rpx;
  109. background-color: #506Dff;
  110. border-radius: 32rpx;
  111. color: #fff;
  112. font-size: 28rpx;
  113. text-align: center;
  114. line-height: 64rpx;
  115. }
  116. }
  117. .boxs {
  118. width: 100%;
  119. box-sizing: border-box;
  120. padding: 0 30rpx;
  121. margin: 24rpx 0 0;
  122. }
  123. }
  124. </style>