searchlist.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <view class="content">
  3. <pcNav></pcNav>
  4. <view style="height: 72rpx;"></view>
  5. <view class="gotop" @click="gotoTop">
  6. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  7. </view>
  8. <view class="main">
  9. <view class="searchTitle">搜索</view>
  10. <view class="searchBox">
  11. <view class="searchInputBox">
  12. <input class="searchInput" type="text" v-model="title" placeholder="请输入您想搜索到内容~" placeholder-style="color:#CCCCCC" @confirm="search"/>
  13. </view>
  14. <image src="../../static/pcimg/icon_sousuo@2x.png" mode="" class="searchBtn" @click="search"></image>
  15. </view>
  16. <view class="ssjg" v-if="sstype">为你找到“{{sstitle}}”相关结果共{{TotalSize}}条</view>
  17. <view class="cont2">
  18. <view class="contL">
  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="wzTitle">{{wz.Name}}</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. <!-- -->
  36. <view class="pageView" v-show="TotalSize">
  37. <page-pagination :pageSize="pageSize" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
  38. </view>
  39. <!-- <view>
  40. <a class="table-btn" href="http://phone.66km.cn:8088/marketing/training/940C4BF0A2E04542A1A1AD244EAFB6E2.xlsx" target='_blank'>下载入口</a>
  41. </view> -->
  42. </view>
  43. </template>
  44. <script>
  45. import pcNav from '../../components/pcNav/pcNav.vue'
  46. export default {
  47. components: {
  48. pcNav,
  49. },
  50. data() {
  51. return {
  52. list:[],
  53. title:'',
  54. page:1,
  55. sstype:false,
  56. TotalSize:0,
  57. pageSize:20,
  58. sstitle:'',
  59. }
  60. },
  61. onLoad(opt) {
  62. // this.getcategoryPageData()
  63. },
  64. methods: {
  65. search(){
  66. var params={
  67. title:this.title,
  68. limit:this.pageSize,
  69. page:this.page,
  70. }
  71. uni.showLoading({
  72. title: '加载中'
  73. })
  74. this.$http('/trainingOpenApi/searchPageData', params, 'GET').then(res => {
  75. this.sstitle=this.title;
  76. this.sstype=true;
  77. uni.hideLoading();
  78. this.list=res.data.Items;
  79. this.TotalSize=res.data.TotalSize;
  80. })
  81. },
  82. goDetail(wz){
  83. // 1分类2文章
  84. if (wz.Type == 1) {
  85. uni.navigateTo({
  86. url:'groupingList?parentCode='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='
  87. })
  88. }else{
  89. uni.navigateTo({
  90. url:'detail?id='+wz.ID+'&topName=&twoName='
  91. })
  92. }
  93. //console.log(wz)
  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. .searchTitle{
  138. font-size: 20rpx;
  139. font-weight: 500;
  140. color: #3C3C3C;
  141. padding-bottom: 30rpx;
  142. }
  143. .ssjg{
  144. font-size: 16rpx;
  145. color: #999999;
  146. padding-top: 20rpx;
  147. }
  148. .searchInput{
  149. width: 1060rpx;
  150. padding-left: 20rpx;
  151. line-height: 50rpx;
  152. border: 2rpx solid #EEEEEE;
  153. height: 50rpx;
  154. border-radius: 6rpx;
  155. }
  156. .searchBtn{
  157. width: 120rpx;
  158. height: 54rpx;
  159. margin-left: -2rpx;
  160. }
  161. .searchBox{
  162. display: flex;
  163. }
  164. *{
  165. padding: 0;
  166. margin: 0;
  167. }
  168. .gotopImg{
  169. width: 60rpx;
  170. height: 60rpx;
  171. }
  172. .gotop{
  173. position: fixed;
  174. right:15vh ;
  175. bottom: 100rpx;
  176. cursor: pointer;
  177. }
  178. .topName{
  179. text-align: center;
  180. font-size: 24rpx;
  181. font-weight: 500;
  182. color: #3C3C3C;
  183. line-height: 33rpx;
  184. padding-top: 30rpx;
  185. }
  186. .comment{
  187. text-align: center;
  188. font-size: 14rpx;
  189. font-weight: 400;
  190. color: #999999;
  191. line-height: 20rpx;
  192. width: 500rpx;
  193. padding-top: 10rpx;
  194. margin: 0 auto;
  195. }
  196. .main{
  197. width: 1200rpx;
  198. margin: 0 auto;
  199. padding-top: 30rpx;
  200. }
  201. .dynamicColLeft{
  202. display: flex;
  203. }
  204. .dynamicColLIne{
  205. padding-right: 44rpx;
  206. font-size: 16rpx;
  207. color: #3C3C3C;
  208. cursor: pointer;
  209. }
  210. .qhImg{
  211. width: 28rpx;
  212. height: 28rpx;
  213. margin-left: 8rpx;
  214. cursor: pointer;
  215. }
  216. .dynamicCol{
  217. display: flex;
  218. justify-content: space-between;
  219. }
  220. .activeTab{
  221. color: #FF4F00;
  222. }
  223. .mainwzImg{
  224. width: 276rpx;
  225. height: 184rpx;
  226. }
  227. .mainwzImgBox{
  228. border-radius: 15rpx;
  229. overflow: hidden;
  230. }
  231. .contf{
  232. display: flex;
  233. flex-wrap: wrap;
  234. }
  235. .mainwzline{
  236. width: 276rpx;
  237. height: 260rpx;
  238. background: #FFFFFF;
  239. margin-right: 32rpx;
  240. padding-top: 33rpx;
  241. cursor: pointer;
  242. }
  243. .mainwzlineR{
  244. margin-right: 0rpx;
  245. }
  246. .wztitle{
  247. width: 250rpx;
  248. font-size: 16rpx;
  249. color: #333333;
  250. line-height: 22rpx;
  251. height: 44rpx;
  252. text-overflow: -o-ellipsis-lastline;
  253. overflow: hidden;
  254. text-overflow: ellipsis;
  255. display: -webkit-box;
  256. -webkit-line-clamp: 2;
  257. line-clamp: 2;
  258. -webkit-box-orient: vertical;
  259. padding-top: 16rpx;
  260. padding:0 13rpx ;
  261. }
  262. .wzLeftIMg{
  263. width: 200rpx;
  264. height: 132rpx;
  265. }
  266. .wxLine{
  267. display: flex;
  268. padding: 20rpx 0;
  269. cursor: pointer;
  270. border-bottom: 1rpx solid #EEEEEE;
  271. }
  272. .wzLineLeft{
  273. border-radius: 10rpx;
  274. overflow: hidden;
  275. width: 200rpx;
  276. height: 132rpx;
  277. }
  278. .wzLineRight{
  279. padding-left: 16rpx;
  280. width: 900rpx;
  281. }
  282. .wzTitle{
  283. font-size: 16rpx;
  284. font-weight: 500;
  285. color: #3C3C3C;
  286. }
  287. .wzComment{
  288. font-size: 12rpx;
  289. font-family: PingFangSC-Regular, PingFang SC;
  290. font-weight: 400;
  291. color: #999999;
  292. line-height: 17rpx;
  293. padding-top: 10rpx;
  294. width: 960rpx;
  295. height: 100rpx;
  296. text-overflow: -o-ellipsis-lastline;
  297. overflow: hidden;
  298. text-overflow: ellipsis;
  299. display: -webkit-box;
  300. -webkit-line-clamp: 6;
  301. line-clamp: 6;
  302. -webkit-box-orient: vertical;
  303. }
  304. .pageView{
  305. margin-top: 20rpx;
  306. cursor: pointer;
  307. padding-bottom: 20rpx;
  308. }
  309. .nodataImg{
  310. width: 300rpx;
  311. height: 203rpx;
  312. }
  313. .nodata{
  314. text-align: center;
  315. }
  316. .nodataTitle{
  317. font-size: 16rpx;
  318. padding-top: 16rpx;
  319. font-weight: 400;
  320. color: #999999;
  321. }
  322. </style>