newsearchlist.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. <template>
  2. <view class="content2">
  3. <view style="height: 72px;"></view>
  4. <view class="gotop" @click="gotoTop">
  5. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  6. </view>
  7. <view class="main">
  8. <view class="searchBox">
  9. <view class="searchInputBox">
  10. <input class="searchInput" type="text" v-model="title" placeholder="请输入您想搜索到内容~" placeholder-style="color:#CCCCCC" @confirm="search"/>
  11. </view>
  12. <view class="searchBtn" @click="search">查询</view>
  13. <!-- <image src="../../static/pcimg/icon_sousuo@2x.png" mode="" class="searchBtn" @click="search"></image> -->
  14. </view>
  15. <view class="ssjg" v-if="sstype">为你找到“{{sstitle}}”相关结果共{{TotalSize}}条</view>
  16. <view class="cont2">
  17. <view class="contBox">
  18. <view class="contL" v-show="list.length!=0&&sstype">
  19. <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail(wz)">
  20. <view class="wzLineLeft">
  21. <image :src="wz.LogoImg" class="wzLeftIMg"></image>
  22. </view>
  23. <view class="wzLineRight">
  24. <view class="wzTitle2">{{wz.Title}}</view>
  25. <view class="wzComment">{{wz.Comment}}</view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="nodata" v-show="list.length==0&&sstype">
  30. <image src="../../static/pcimg/pic_empty_search@2x.png" mode="" class="nodataImg"></image>
  31. <view class="nodataTitle">暂无数据</view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- -->
  37. <view class="pageView" v-show="TotalSize">
  38. <page-pagination :pageSize="pageSize" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
  39. </view>
  40. <!-- <view>
  41. <a class="table-btn" href="http://phone.66km.cn:8088/marketing/training/940C4BF0A2E04542A1A1AD244EAFB6E2.xlsx" target='_blank'>下载入口</a>
  42. </view> -->
  43. </view>
  44. </template>
  45. <script>
  46. import pcNav from '../../components/pcNav/pcNav.vue'
  47. export default {
  48. components: {
  49. pcNav,
  50. },
  51. data() {
  52. return {
  53. list:[],
  54. title:'',
  55. page:1,
  56. sstype:false,
  57. TotalSize:0,
  58. pageSize:20,
  59. sstitle:'',
  60. }
  61. },
  62. onLoad(opt) {
  63. // this.getcategoryPageData()
  64. },
  65. methods: {
  66. search(){
  67. var params={
  68. title:this.title,
  69. limit:this.pageSize,
  70. page:this.page,
  71. }
  72. uni.showLoading({
  73. title: '加载中'
  74. })
  75. this.$http('/trainingOpenApi/searchPageData', params, 'GET').then(res => {
  76. this.sstitle=this.title;
  77. this.sstype=true;
  78. uni.hideLoading();
  79. this.list=res.data.Items;
  80. this.TotalSize=res.data.TotalSize;
  81. })
  82. },
  83. goDetail(wz){
  84. // 1分类2文章
  85. if (wz.Type == 1) {
  86. uni.navigateTo({
  87. url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='
  88. })
  89. }else{
  90. uni.navigateTo({
  91. url:'detail?id='+wz.ID+'&topName=&twoName='
  92. })
  93. }
  94. },
  95. gotoTop(){
  96. uni.pageScrollTo({
  97.    scrollTop: 0, duration: 300
  98. });
  99. },
  100. tabBtn(index,item){
  101. this.tabIndex=index;
  102. //console.log(item)
  103. this.parentCode=item.code;
  104. this.getcategoryPageData()
  105. },
  106. pageChange(e){
  107. console.log(e)
  108. this.page=e;
  109. this.getcategoryPageData()
  110. },
  111. getcategoryPageData(){
  112. var params={
  113. parentCode:this.parentCode,
  114. topCode:this.topCode,
  115. limit:this.pageSize,
  116. page:this.page,
  117. }
  118. uni.showLoading({
  119. title: '加载中'
  120. })
  121. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  122. uni.hideLoading();
  123. this.list=res.data.Items;
  124. this.TotalSize=res.data.TotalSize;
  125. var arr=[
  126. {
  127. 'name':'全部','code':'',
  128. }
  129. ]
  130. this.dynamicCol=arr.concat(res.data.dynamicCol);
  131. })
  132. }
  133. }
  134. }
  135. </script>
  136. <style scoped>
  137. .content2{
  138. background: #F4F5F7;
  139. min-height: 100vh;
  140. font-family: PingFangSC-Regular, PingFang SC;
  141. }
  142. .searchTitle{
  143. font-size: 20px;
  144. font-weight: 500;
  145. color: #3C3C3C;
  146. padding-bottom: 30px;
  147. }
  148. .ssjg{
  149. font-size: 16px;
  150. color: #666666;
  151. padding-top: 20px;
  152. }
  153. .contBox{
  154. min-height: 60vh;
  155. }
  156. .searchInput{
  157. width: 520px;
  158. height: 40px;
  159. padding-left: 20px;
  160. line-height: 40px;
  161. border: 2px solid #EEEEEE;
  162. border-radius: 6px;
  163. border-right: none;
  164. background: #FFFFFF;
  165. }
  166. .searchBtn{
  167. width: 72px;
  168. height: 42px;
  169. background: #FF4F00;
  170. border-radius: 0px 6px 6px 0px;
  171. line-height: 42px;
  172. color: #FFFFFF;
  173. font-size: 16px;
  174. text-align: center;
  175. cursor: pointer;
  176. margin-left: -5px;
  177. }
  178. .searchBox{
  179. display: flex;
  180. justify-content: center;
  181. padding-top: 20px;
  182. }
  183. *{
  184. padding: 0;
  185. margin: 0;
  186. }
  187. .gotopImg{
  188. width: 60px;
  189. height: 60px;
  190. }
  191. .gotop{
  192. position: fixed;
  193. right:5vh ;
  194. bottom: 60px;
  195. cursor: pointer;
  196. }
  197. .topName{
  198. text-align: center;
  199. font-size: 24px;
  200. font-weight: 500;
  201. color: #3C3C3C;
  202. line-height: 33px;
  203. padding-top: 30px;
  204. }
  205. .comment{
  206. text-align: center;
  207. font-size: 14px;
  208. font-weight: 400;
  209. color: #999999;
  210. line-height: 20px;
  211. width: 500px;
  212. padding-top: 10px;
  213. margin: 0 auto;
  214. }
  215. .main{
  216. width: 1200px;
  217. margin: 0 auto;
  218. padding-top: 30px;
  219. }
  220. .dynamicColLeft{
  221. display: flex;
  222. }
  223. .dynamicColLIne{
  224. padding-right: 44px;
  225. font-size: 16px;
  226. color: #3C3C3C;
  227. cursor: pointer;
  228. }
  229. .qhImg{
  230. width: 28px;
  231. height: 28px;
  232. margin-left: 8px;
  233. cursor: pointer;
  234. }
  235. .dynamicCol{
  236. display: flex;
  237. justify-content: space-between;
  238. }
  239. .activeTab{
  240. color: #FF4F00;
  241. }
  242. .mainwzImg{
  243. width: 276px;
  244. height: 184px;
  245. }
  246. .mainwzImgBox{
  247. border-radius: 15px;
  248. overflow: hidden;
  249. }
  250. .contf{
  251. display: flex;
  252. flex-wrap: wrap;
  253. }
  254. .contL{
  255. background: #FFFFFF;
  256. padding:0px 20px;
  257. margin-top: 30px;
  258. border-radius: 8px;
  259. }
  260. .mainwzline{
  261. width: 276px;
  262. height: 260px;
  263. background: #FFFFFF;
  264. margin-right: 32px;
  265. padding-top: 33px;
  266. cursor: pointer;
  267. }
  268. .mainwzlineR{
  269. margin-right: 0px;
  270. }
  271. .wztitle{
  272. width: 250px;
  273. font-size: 16px;
  274. color: #333333;
  275. line-height: 22px;
  276. height: 44px;
  277. text-overflow: -o-ellipsis-lastline;
  278. overflow: hidden;
  279. text-overflow: ellipsis;
  280. display: -webkit-box;
  281. -webkit-line-clamp: 2;
  282. line-clamp: 2;
  283. -webkit-box-orient: vertical;
  284. padding-top: 16px;
  285. padding:0 13px ;
  286. }
  287. .wzLeftIMg{
  288. width: 200px;
  289. height: 132px;
  290. }
  291. .wxLine{
  292. display: flex;
  293. padding: 20px 0;
  294. cursor: pointer;
  295. border-bottom: 1px solid #EEEEEE;
  296. }
  297. .wzLineLeft{
  298. border-radius: 6px;
  299. overflow: hidden;
  300. width: 200px;
  301. height: 132px;
  302. }
  303. .wzLineRight{
  304. padding-left: 16px;
  305. width: 788px;
  306. }
  307. .wzTitle2{
  308. font-size: 16px;
  309. color: #3C3C3C;
  310. width: 948px;
  311. height: 20px;
  312. line-height: 20px;
  313. text-overflow: -o-ellipsis-lastline;
  314. overflow: hidden;
  315. text-overflow: ellipsis;
  316. display: -webkit-box;
  317. -webkit-line-clamp: 1;
  318. line-clamp: 1;
  319. -webkit-box-orient: vertical;
  320. }
  321. .wzComment{
  322. font-size: 14px;
  323. font-family: PingFangSC-Regular, PingFang SC;
  324. font-weight: 400;
  325. color: #999999;
  326. line-height: 20px;
  327. padding-top: 10px;
  328. width: 948px;
  329. height: 80px;
  330. text-overflow: -o-ellipsis-lastline;
  331. overflow: hidden;
  332. text-overflow: ellipsis;
  333. display: -webkit-box;
  334. -webkit-line-clamp: 4;
  335. line-clamp: 4;
  336. -webkit-box-orient: vertical;
  337. }
  338. .pageView{
  339. margin-top: 20px;
  340. cursor: pointer;
  341. padding-bottom: 20px;
  342. }
  343. .nodataImg{
  344. width: 300px;
  345. height: 203px;
  346. }
  347. .nodata{
  348. text-align: center;
  349. padding-top: 100px;
  350. }
  351. .nodataTitle{
  352. font-size: 16px;
  353. padding-top: 16px;
  354. font-weight: 400;
  355. color: #999999;
  356. }
  357. </style>