zixun.vue 6.4 KB

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