list.vue 7.9 KB

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