groupingList.vue 6.2 KB

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