zixun.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <template>
  2. <view class="zixun-list">
  3. <view class="zixun-header">
  4. <view class="zixun-search">
  5. <view class="search-box u-flex">
  6. <u-icon name="search"></u-icon>
  7. <input type="text" placeholder="搜索你感兴趣的内容" v-model="keyword1" confirm-type="search"
  8. @confirm="tosearch(1)">
  9. </view>
  10. </view>
  11. <view class="zixun-tabs u-flex u-row-between">
  12. <view class="tabs-item u-flex-col u-col-center u-flex-1" :class="{'tabs-item1':current == 0}"
  13. @click="changetabs(0)">
  14. <text>全部</text>
  15. <text></text>
  16. </view>
  17. <view class="tabs-item u-flex-col u-col-center u-flex-1" :class="{'tabs-item1':current == 1}"
  18. @click="changetabs(1)">
  19. <text>精选</text>
  20. <text></text>
  21. </view>
  22. </view>
  23. </view>
  24. <view v-if="current == 0">
  25. <view class="zixun-item u-flex u-row-between" v-for="(item,index) in list" :key="index"
  26. @click="toinfo(item)">
  27. <view class="u-flex-col u-flex-1">
  28. <text class="text1">{{item.title}}</text>
  29. <text class="text2">{{item.source}}·{{$u.timeFrom(new Date(item.audit_time.replace(/-/g, "/")).getTime())}}</text>
  30. </view>
  31. <image :src="item.image" class="zixun-img" mode=""></image>
  32. </view>
  33. </view>
  34. <view v-if="current == 1">
  35. <view class="guanggao2" v-if="list[0]" @click="openad(list[0])">
  36. <view class="guanggao2-text">
  37. {{list[0].title}}
  38. </view>
  39. <view class="guanggao2-img">
  40. <text>广告</text>
  41. <image :src="list[0].image" mode="aspectFill"></image>
  42. </view>
  43. </view>
  44. <view class="guanggao1 u-flex u-row-between" v-for="(item,index) in list" :key="index" v-if="index > 0"
  45. @click="openad(item)">
  46. <view class="u-flex-col u-flex-1 guanggai1-left u-row-between">
  47. <text>{{item.title}}</text>
  48. <text>广告</text>
  49. </view>
  50. <image :src="item.image" class="zixun-img" mode="aspectFill"></image>
  51. </view>
  52. </view>
  53. <view style="height: 70vh;display: flex;justify-content: center;align-items: center;" v-if="list.length == 0">
  54. <u-empty text="暂无数据" mode="list"></u-empty>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import {
  60. article_get_detail,
  61. get_ad_list,
  62. article_get_list
  63. } from "@/units/inquire.js"
  64. export default {
  65. data() {
  66. return {
  67. page: 1,
  68. list: [
  69. ],
  70. total: 0,
  71. current: 0,
  72. keyword: '',
  73. keyword1: '',
  74. }
  75. },
  76. onLoad() {
  77. this.getlist()
  78. },
  79. onReachBottom() {
  80. if (this.total != this.list.length && this.current == 0) {
  81. this.page++
  82. this.getlist()
  83. }
  84. },
  85. methods: {
  86. openad(item) {
  87. if (item.link_type == 1) {
  88. uni.navigateTo({
  89. url: "/pagesD/zixun-info?id=" + item.link
  90. })
  91. } else {
  92. uni.setClipboardData({
  93. data: item.link,
  94. success: () => {
  95. this.$u.toast("链接已复制")
  96. }
  97. })
  98. }
  99. },
  100. changetabs(index) {
  101. this.current = index
  102. this.tosearch()
  103. },
  104. tosearch(type) {
  105. if (type == 1) {
  106. this.keyword = this.keyword1
  107. this.current = 0
  108. }
  109. this.page = 1
  110. this.list = []
  111. this.getlist()
  112. },
  113. getlist() {
  114. if (this.current == 0) {
  115. article_get_list({
  116. page: this.page,
  117. search: this.keyword
  118. }).then(res => {
  119. this.list = this.list.concat(res.data.data)
  120. this.total = res.data.total
  121. console.log(res);
  122. })
  123. } else {
  124. get_ad_list().then(res => {
  125. this.list = res.data
  126. })
  127. }
  128. },
  129. toinfo(item) {
  130. uni.navigateTo({
  131. url: "/pagesD/zixun-info?id=" + item.id
  132. })
  133. }
  134. }
  135. }
  136. </script>
  137. <style lang="scss">
  138. .zixun-list {
  139. .zixun-header {
  140. position: sticky;
  141. top: 0;
  142. left: 0;
  143. width: 750rpx;
  144. background-color: #fff;
  145. z-index: 99;
  146. .zixun-tabs {
  147. height: 76rpx;
  148. .tabs-item {
  149. text:first-child {
  150. font-size: 32rpx;
  151. font-family: PingFangSC-Regular, PingFang SC;
  152. font-weight: 400;
  153. color: #141414;
  154. position: relative;
  155. z-index: 1;
  156. }
  157. text:last-child {
  158. width: 56rpx;
  159. height: 12rpx;
  160. border-radius: 6rpx;
  161. margin-top: -16rpx;
  162. margin-left: 20rpx;
  163. }
  164. }
  165. .tabs-item1 {
  166. text:first-child {
  167. font-size: 32rpx;
  168. font-family: PingFangSC-Medium, PingFang SC;
  169. font-weight: 500;
  170. color: #141414;
  171. }
  172. text:last-child {
  173. background: linear-gradient(270deg, #0C66C2 0%, #FFFFFF 100%);
  174. }
  175. }
  176. }
  177. }
  178. .guanggao2 {
  179. padding: 24rpx 0;
  180. margin: 0 32rpx;
  181. border-bottom: 2rpx solid #F0F0F0;
  182. .guanggao2-text {
  183. font-size: 34rpx;
  184. font-family: PingFangSC-Regular, PingFang SC;
  185. font-weight: 400;
  186. color: #222222;
  187. margin-bottom: 10rpx;
  188. }
  189. .guanggao2-img {
  190. height: 324rpx;
  191. border-radius: 12rpx;
  192. width: 100%;
  193. overflow: hidden;
  194. position: relative;
  195. text {
  196. position: absolute;
  197. top: 30rpx;
  198. right: 26rpx;
  199. width: 54rpx;
  200. line-height: 32rpx;
  201. background: rgba(19, 20, 21, 0.5);
  202. border-radius: 4rpx;
  203. text-align: center;
  204. font-size: 20rpx;
  205. font-family: SFPro-Regular, SFPro;
  206. font-weight: 400;
  207. color: #FFFFFF;
  208. }
  209. image {
  210. height: 324rpx;
  211. border-radius: 12rpx;
  212. width: 100%;
  213. }
  214. }
  215. }
  216. .guanggao1 {
  217. padding: 24rpx 0;
  218. margin: 0 32rpx;
  219. border-bottom: 2rpx solid #F0F0F0;
  220. align-items: stretch;
  221. .guanggai1-left {
  222. text:first-child {
  223. font-size: 34rpx;
  224. font-family: PingFangSC-Regular, PingFang SC;
  225. font-weight: 400;
  226. color: #222222;
  227. }
  228. text:last-child {
  229. width: 54rpx;
  230. line-height: 32rpx;
  231. border-radius: 4rpx;
  232. border: 1rpx solid #979797;
  233. text-align: center;
  234. font-size: 20rpx;
  235. font-family: SFPro-Regular, SFPro;
  236. font-weight: 400;
  237. color: #666666;
  238. }
  239. }
  240. .zixun-img {
  241. width: 240rpx;
  242. height: 144rpx;
  243. border-radius: 8rpx;
  244. margin-left: 32rpx;
  245. }
  246. }
  247. .zixun-item {
  248. padding: 24rpx 0;
  249. margin: 0 32rpx;
  250. border-bottom: 2rpx solid #F0F0F0;
  251. .text1 {
  252. font-size: 34rpx;
  253. font-family: PingFangSC-Regular, PingFang SC;
  254. font-weight: 400;
  255. color: #222222;
  256. margin-bottom: 16rpx;
  257. }
  258. .text2 {
  259. font-size: 20rpx;
  260. font-family: PingFangSC-Regular, PingFang SC;
  261. font-weight: 400;
  262. color: #666666;
  263. }
  264. .zixun-img {
  265. width: 240rpx;
  266. height: 144rpx;
  267. border-radius: 8rpx;
  268. margin-left: 32rpx;
  269. }
  270. }
  271. .zixun-search {
  272. padding: 20rpx 32rpx;
  273. .search-box {
  274. height: 68rpx;
  275. background: #F3F3F3;
  276. border-radius: 20rpx;
  277. padding: 0 24rpx;
  278. input {
  279. flex: 1;
  280. margin-left: 12rpx;
  281. font-size: 26rpx;
  282. }
  283. }
  284. }
  285. }
  286. </style>