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