zixun.vue 6.7 KB

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