groupingList.vue 6.5 KB

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