groupingList.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <template>
  2. <view class="content">
  3. <pcNav :itemName="topName"></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" @click="goList">{{topName}}</view>
  9. <view class="topjt" v-if="name">></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="">
  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. comment:'',
  76. }
  77. },
  78. onLoad(opt) {
  79. this.name=opt.name;
  80. this.title=opt.title;
  81. this.parentCode=opt.parentCode;
  82. this.topName=opt.topName;
  83. this.comment=opt.comment;
  84. this.getgroupPageData()
  85. },
  86. methods: {
  87. goIndex(){
  88. uni.navigateTo({
  89. url:'index'
  90. })
  91. },
  92. goList(){
  93. uni.navigateTo({
  94. url:'list?code='+this.parentCode+'&topName='+this.topName+'&comment='+this.comment
  95. })
  96. },
  97. goDetail(wz){
  98. // 1分类2文章
  99. if (wz.Type == 1) {
  100. }else{
  101. uni.navigateTo({
  102. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name
  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. getgroupPageData(){
  124. var params={
  125. parentCode:this.parentCode,
  126. limit:this.pageSize,
  127. page:this.page,
  128. }
  129. uni.showLoading({
  130. title: '加载中'
  131. })
  132. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  133. uni.hideLoading();
  134. this.list=res.data.Items;
  135. this.TotalSize=res.data.TotalSize;
  136. var arr=[
  137. {
  138. 'name':'全部','code':'',
  139. }
  140. ]
  141. this.dynamicCol=arr.concat(res.data.dynamicCol);
  142. })
  143. }
  144. }
  145. }
  146. </script>
  147. <style scoped>
  148. .top{
  149. width: 1200px;
  150. margin: 0 auto;
  151. display: flex;
  152. padding: 30px 0;
  153. font-size: 14px;
  154. }
  155. .htmlBox{
  156. width: 720px;
  157. margin: 0 auto;
  158. }
  159. .topline{
  160. padding-right: 10px;
  161. cursor: pointer;
  162. color: #3C3C3C;
  163. }
  164. .topjt{
  165. color: #AAAAAA;
  166. padding-right: 10px;
  167. }
  168. *{
  169. padding: 0;
  170. margin: 0;
  171. }
  172. .gotopImg{
  173. width: 60px;
  174. height: 60px;
  175. }
  176. .gotop{
  177. position: fixed;
  178. right:15vh ;
  179. bottom: 100px;
  180. cursor: pointer;
  181. }
  182. .topName{
  183. text-align: center;
  184. font-size: 24px;
  185. font-weight: 500;
  186. color: #3C3C3C;
  187. line-height: 33px;
  188. padding-top: 30px;
  189. }
  190. .comment{
  191. text-align: center;
  192. font-size: 14px;
  193. font-weight: 400;
  194. color: #999999;
  195. line-height: 20px;
  196. width: 500px;
  197. padding-top: 10px;
  198. margin: 0 auto;
  199. }
  200. .main{
  201. width: 1200px;
  202. margin: 0 auto;
  203. padding-top: 30px;
  204. }
  205. .dynamicColLeft{
  206. display: flex;
  207. }
  208. .dynamicColLIne{
  209. padding-right: 44px;
  210. font-size: 16px;
  211. color: #3C3C3C;
  212. cursor: pointer;
  213. }
  214. .qhImg{
  215. width: 28px;
  216. height: 28px;
  217. margin-left: 8px;
  218. cursor: pointer;
  219. }
  220. .dynamicCol{
  221. display: flex;
  222. justify-content: space-between;
  223. }
  224. .activeTab{
  225. color: #FF4F00;
  226. }
  227. .mainwzImg{
  228. width: 276px;
  229. height: 184px;
  230. }
  231. .mainwzImgBox{
  232. border-radius: 15px;
  233. overflow: hidden;
  234. }
  235. .contf{
  236. display: flex;
  237. flex-wrap: wrap;
  238. }
  239. .mainwzline{
  240. width: 276px;
  241. height: 260px;
  242. background: #FFFFFF;
  243. margin-right: 32px;
  244. padding-top: 33px;
  245. cursor: pointer;
  246. }
  247. .mainwzlineR{
  248. margin-right: 0px;
  249. }
  250. .wztitle{
  251. width: 250px;
  252. font-size: 16px;
  253. color: #333333;
  254. line-height: 22px;
  255. height: 44px;
  256. text-overflow: -o-ellipsis-lastline;
  257. overflow: hidden;
  258. text-overflow: ellipsis;
  259. display: -webkit-box;
  260. -webkit-line-clamp: 2;
  261. line-clamp: 2;
  262. -webkit-box-orient: vertical;
  263. padding-top: 16px;
  264. padding:0 13px ;
  265. }
  266. .wzLeftIMg{
  267. width: 200px;
  268. height: 132px;
  269. }
  270. .wxLine{
  271. display: flex;
  272. padding-top: 30px;
  273. cursor: pointer;
  274. }
  275. .wzLineLeft{
  276. border-radius: 10px;
  277. overflow: hidden;
  278. width: 200px;
  279. height: 132px;
  280. }
  281. .wzLineRight{
  282. padding-left: 16px;
  283. width: 950px;
  284. }
  285. .wzTitle{
  286. font-size: 16px;
  287. font-weight: 500;
  288. color: #3C3C3C;
  289. }
  290. .wzComment{
  291. font-size: 12px;
  292. font-family: PingFangSC-Regular, PingFang SC;
  293. font-weight: 400;
  294. color: #999999;
  295. line-height: 17px;
  296. padding-top: 10px;
  297. width: 1000px;
  298. }
  299. .pageView{
  300. margin-top: 20px;
  301. cursor: pointer;
  302. padding-bottom: 20px;
  303. }
  304. .nodataImg{
  305. width: 300px;
  306. height: 203px;
  307. }
  308. .nodata{
  309. text-align: center;
  310. }
  311. .nodataTitle{
  312. font-size: 16px;
  313. padding-top: 16px;
  314. font-weight: 400;
  315. color: #999999;
  316. }
  317. </style>