newgroupingList.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <template>
  2. <view class="content">
  3. <view style="height: 72px;"></view>
  4. <view class="top">
  5. <view class="topline" @click="goIndex">首页</view>
  6. <view class="topjt">></view>
  7. <view class="topline" @click="goList">{{topName}}</view>
  8. <view class="topjt" v-if="name">></view>
  9. <view class="topline" :class="{'c999':name}">{{name}}</view>
  10. </view>
  11. <view class="gotop" @click="gotoTop">
  12. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  13. </view>
  14. <view class="">
  15. <view class="topName">{{name}}</view>
  16. <view class="comment " v-if="title">{{title}}</view>
  17. </view>
  18. <view class="main">
  19. <view class="dynamicCol">
  20. <view class="dynamicColLeft">
  21. </view>
  22. <view class="dynamicColRight">
  23. <image src="../../static/pcimg/icon_kapian_def@2x.png" v-show="qhIndex==2" class="qhImg" @click="qhIndex=1"></image>
  24. <image src="../../static/pcimg/icon_kapian_sel@2x.png" v-show="qhIndex==2" class="qhImg"></image>
  25. <image src="../../static/pcimg/icon_liebiao_sel@2x.png" v-show="qhIndex==1" class="qhImg" ></image>
  26. <image src="../../static/pcimg/qh2.png" v-show="qhIndex==1" class="qhImg" @click="qhIndex=2"></image>
  27. </view>
  28. </view>
  29. <view class="cont2">
  30. <view class="contBox">
  31. <view class="contf" v-if="qhIndex==2&&list.length>0">
  32. <view class="mainwzline" v-for="(wz,wzindex) in list" :class="{'mainwzlineR':(wzindex+1)%4==0&&wzindex!=0}" @click="goDetail(wz)">
  33. <view class="mainwzImgBox">
  34. <img :src="wz.LogoImg" alt="" class="mainwzImg">
  35. </view>
  36. <view class="wztitle">{{wz.Title}}</view>
  37. <view class="wztime">2022-3-30</view>
  38. </view>
  39. </view>
  40. <view class="contL" v-if="qhIndex==1&&list.length>0">
  41. <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail(wz)">
  42. <view class="wzLineLeft">
  43. <image :src="wz.LogoImg" class="wzLeftIMg"></image>
  44. </view>
  45. <view class="wzLineRight">
  46. <view class="wzTitle2">{{wz.Title}}</view>
  47. <view class="wzComment">{{wz.Comment}}</view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="nodata" v-show="list.length==0">
  52. <image src="../../static/pcimg/listnodata.png" mode="" class="nodataImg"></image>
  53. <view class="nodataTitle">暂无数据</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- -->
  59. <view class="pageView" v-show="TotalSize>0">
  60. <page-pagination :pageSize="pageSize" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
  61. </view>
  62. <!-- <view>
  63. <a class="table-btn" href="http://phone.66km.cn:8088/marketing/training/940C4BF0A2E04542A1A1AD244EAFB6E2.xlsx" target='_blank'>下载入口</a>
  64. </view> -->
  65. </view>
  66. </template>
  67. <script>
  68. import pcNav from '../../components/pcNav/pcNav.vue'
  69. export default {
  70. components: {
  71. pcNav,
  72. },
  73. props: ['newcode','data'],
  74. data() {
  75. return {
  76. list:[],
  77. title:'',
  78. name:'',
  79. parentCode:'',
  80. topCode:'',
  81. page:1,
  82. dynamicCol:[],
  83. qhIndex:1,
  84. tabIndex:0,
  85. TotalSize:0,
  86. pageSize:20,
  87. topName:'',
  88. comment:'',
  89. code:'',
  90. }
  91. },
  92. watch:{
  93. newcode(newValue, oldValue){
  94. console.log(newValue);
  95. this.code = newValue
  96. this.parentCode=this.data.parentCode;
  97. this.title=this.data.title;
  98. this.name=this.data.name;
  99. this.topName=this.data.topName;
  100. this.comment=this.data.comment;
  101. this.getgroupPageData()
  102. uni.setNavigationBarTitle({
  103. title: this.name
  104. })
  105. uni.pageScrollTo({
  106.    scrollTop: 0, duration: 100
  107. });
  108. }
  109. },
  110. created(){
  111. uni.pageScrollTo({
  112.    scrollTop: 0, duration: 100
  113. });
  114. },
  115. onLoad(opt) {
  116. /* this.name=opt.name;
  117. this.title=opt.title;
  118. this.parentCode=opt.parentCode;
  119. this.code=opt.code;
  120. this.topName=opt.topName;
  121. this.comment=opt.comment;
  122. this.getgroupPageData()
  123. uni.setNavigationBarTitle({
  124. title: this.name
  125. }); */
  126. },
  127. methods: {
  128. goIndex(){
  129. /* uni.navigateTo({
  130. url:'index'
  131. }) */
  132. this.$emit("getIndexList")
  133. },
  134. goList(){
  135. var data={
  136. code:this.parentCode,
  137. name:this.topName,
  138. comment:this.comment
  139. }
  140. this.$emit("getChildList",data)
  141. /* uni.navigateTo({
  142. url:'list?code='+this.parentCode+'&topName='+this.topName+'&comment='+this.comment
  143. }) */
  144. },
  145. goDetail(wz){
  146. this.$emit("goDetail",{
  147. id:wz.ID,
  148. topName:this.topName,
  149. twoName:this.dynamicCol[this.tabIndex].name
  150. })
  151. // 1分类2文章
  152. /* if (wz.Type == 1) {
  153. }else{
  154. uni.navigateTo({
  155. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name
  156. })
  157. } */
  158. //console.log(wz)
  159. },
  160. gotoTop(){
  161. uni.pageScrollTo({
  162.    scrollTop: 0, duration: 300
  163. });
  164. },
  165. tabBtn(index,item){
  166. this.tabIndex=index;
  167. //console.log(item)
  168. this.parentCode=item.code;
  169. this.getcategoryPageData()
  170. },
  171. pageChange(e){
  172. console.log(e)
  173. this.page=e;
  174. this.getcategoryPageData()
  175. },
  176. getgroupPageData(){
  177. var params={
  178. parentCode:this.code,
  179. limit:this.pageSize,
  180. page:this.page,
  181. }
  182. uni.showLoading({
  183. title: '加载中'
  184. })
  185. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  186. uni.hideLoading();
  187. this.list=res.data.Items;
  188. this.TotalSize=res.data.TotalSize;
  189. var arr=[
  190. {
  191. 'name':'全部','code':'',
  192. }
  193. ]
  194. this.dynamicCol=arr.concat(res.data.dynamicCol);
  195. })
  196. }
  197. }
  198. }
  199. </script>
  200. <style scoped>
  201. .top{
  202. width: 1200px;
  203. margin: 0 auto;
  204. display: flex;
  205. padding: 30px 0;
  206. font-size: 14px;
  207. }
  208. .content{
  209. background: #F4F5F7;
  210. min-height: 100vh;
  211. font-family: PingFangSC-Regular, PingFang SC;
  212. }
  213. .htmlBox{
  214. width: 720px;
  215. margin: 0 auto;
  216. }
  217. .contBox{
  218. min-height: 58vh;
  219. }
  220. .topline{
  221. padding-right: 10px;
  222. cursor: pointer;
  223. color: #3C3C3C;
  224. }
  225. .topjt{
  226. color: #AAAAAA;
  227. padding-right: 10px;
  228. }
  229. *{
  230. padding: 0;
  231. margin: 0;
  232. }
  233. .gotopImg{
  234. width: 60px;
  235. height: 60px;
  236. }
  237. .gotop{
  238. position: fixed;
  239. right:5vh ;
  240. bottom: 60px;
  241. cursor: pointer;
  242. }
  243. .topName{
  244. text-align: center;
  245. font-size: 22px;
  246. font-weight: 500;
  247. color: #3C3C3C;
  248. line-height: 33px;
  249. font-family: PingFangSC-Medium, PingFang SC;
  250. }
  251. .comment{
  252. text-align: center;
  253. font-size: 14px;
  254. font-weight: 400;
  255. color: #999999;
  256. line-height: 20px;
  257. width: 500px;
  258. padding-top: 10px;
  259. margin: 0 auto;
  260. }
  261. .main{
  262. width: 1200px;
  263. margin: 0 auto;
  264. padding-top: 30px;
  265. }
  266. .dynamicColLeft{
  267. display: flex;
  268. }
  269. .dynamicColLIne{
  270. padding-right: 44px;
  271. font-size: 16px;
  272. color: #3C3C3C;
  273. cursor: pointer;
  274. }
  275. .qhImg{
  276. width: 28px;
  277. height: 28px;
  278. margin-left: 8px;
  279. cursor: pointer;
  280. }
  281. .dynamicCol{
  282. display: flex;
  283. justify-content: space-between;
  284. background: #FFFFFF;
  285. padding:15px 20px;
  286. border-radius: 8px;
  287. }
  288. .activeTab{
  289. color: #FF4F00;
  290. }
  291. .mainwzImg{
  292. width: 284px;
  293. height: 160px;
  294. }
  295. .mainwzImgBox{
  296. border-top-left-radius: 6px;
  297. border-top-right-radius: 6px;
  298. overflow: hidden;
  299. height: 160px;
  300. border: 1px solid #eeeeee;
  301. }
  302. .contf{
  303. display: flex;
  304. flex-wrap: wrap;
  305. }
  306. .mainwzline{
  307. width: 284px;
  308. height: 244px;
  309. background: #FFFFFF;
  310. margin-right: 21px;
  311. margin-top: 20px;
  312. cursor: pointer;
  313. border-radius: 6px;
  314. }
  315. .wztime{
  316. font-size: 14px;
  317. color: #999999;
  318. padding-left: 14px;
  319. padding-top: 10px;
  320. }
  321. .mainwzlineR{
  322. margin-right: 0px;
  323. }
  324. .wztitle{
  325. width: 256px;
  326. font-size: 16px;
  327. color: #333333;
  328. line-height: 22px;
  329. height: 22px;
  330. text-overflow: -o-ellipsis-lastline;
  331. overflow: hidden;
  332. text-overflow: ellipsis;
  333. display: -webkit-box;
  334. -webkit-line-clamp: 1;
  335. line-clamp: 1;
  336. -webkit-box-orient: vertical;
  337. padding:0 13px ;
  338. padding-top: 16px;
  339. }
  340. .wzComment{
  341. font-size: 14px;
  342. font-family: PingFangSC-Regular, PingFang SC;
  343. font-weight: 400;
  344. color: #999999;
  345. line-height: 20px;
  346. padding-top: 10px;
  347. width: 948px;
  348. height: 80px;
  349. text-overflow: -o-ellipsis-lastline;
  350. overflow: hidden;
  351. text-overflow: ellipsis;
  352. display: -webkit-box;
  353. -webkit-line-clamp: 4;
  354. line-clamp: 4;
  355. -webkit-box-orient: vertical;
  356. }
  357. .wzLeftIMg{
  358. width: 200px;
  359. height: 132px;
  360. }
  361. .contL{
  362. background: #FFFFFF;
  363. margin-top: 20px ;
  364. border-radius: 8px;
  365. padding: 0 20px;
  366. }
  367. .wxLine{
  368. display: flex;
  369. padding: 20px 0px;
  370. cursor: pointer;
  371. border-bottom: 1px solid #EEEEEE;
  372. }
  373. .wzLineLeft{
  374. border-radius: 6px;
  375. overflow: hidden;
  376. width: 200px;
  377. height: 132px;
  378. }
  379. .wzLineRight{
  380. padding-left: 16px;
  381. width: 788px;
  382. }
  383. .wzTitle{
  384. font-size: 16px;
  385. color: #3C3C3C;
  386. }
  387. .wzTitle2{
  388. font-size: 16px;
  389. color: #3C3C3C;
  390. width: 948px;
  391. height: 20px;
  392. line-height: 20px;
  393. text-overflow: -o-ellipsis-lastline;
  394. overflow: hidden;
  395. text-overflow: ellipsis;
  396. display: -webkit-box;
  397. -webkit-line-clamp: 1;
  398. line-clamp: 1;
  399. -webkit-box-orient: vertical;
  400. }
  401. .pageView{
  402. margin-top: 20px;
  403. cursor: pointer;
  404. padding-bottom: 20px;
  405. }
  406. .nodataImg{
  407. width: 300px;
  408. height: 203px;
  409. padding-top: 100px;
  410. }
  411. .nodata{
  412. text-align: center;
  413. }
  414. .nodataTitle{
  415. font-size: 16px;
  416. padding-top: 16px;
  417. font-weight: 400;
  418. color: #999999;
  419. }
  420. .c999{
  421. color: #999999;
  422. }
  423. </style>