searchlist.vue 6.1 KB

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