groupingList.vue 5.5 KB

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