newgroupingList.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  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. }
  106. },
  107. created(){
  108. uni.pageScrollTo({
  109.    scrollTop: 0, duration: 100
  110. });
  111. },
  112. onLoad(opt) {
  113. /* this.name=opt.name;
  114. this.title=opt.title;
  115. this.parentCode=opt.parentCode;
  116. this.code=opt.code;
  117. this.topName=opt.topName;
  118. this.comment=opt.comment;
  119. this.getgroupPageData()
  120. uni.setNavigationBarTitle({
  121. title: this.name
  122. }); */
  123. },
  124. methods: {
  125. goIndex(){
  126. /* uni.navigateTo({
  127. url:'index'
  128. }) */
  129. this.$emit("getIndexList")
  130. },
  131. goList(){
  132. var data={
  133. code:this.parentCode,
  134. name:this.topName,
  135. comment:this.comment
  136. }
  137. this.$emit("getChildList",data)
  138. /* uni.navigateTo({
  139. url:'list?code='+this.parentCode+'&topName='+this.topName+'&comment='+this.comment
  140. }) */
  141. },
  142. goDetail(wz){
  143. this.$emit("goDetail",{
  144. id:wz.ID,
  145. topName:this.topName,
  146. twoName:this.dynamicCol[this.tabIndex].name
  147. })
  148. // 1分类2文章
  149. /* if (wz.Type == 1) {
  150. }else{
  151. uni.navigateTo({
  152. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name
  153. })
  154. } */
  155. //console.log(wz)
  156. },
  157. gotoTop(){
  158. uni.pageScrollTo({
  159.    scrollTop: 0, duration: 300
  160. });
  161. },
  162. tabBtn(index,item){
  163. this.tabIndex=index;
  164. //console.log(item)
  165. this.parentCode=item.code;
  166. this.getcategoryPageData()
  167. },
  168. pageChange(e){
  169. console.log(e)
  170. this.page=e;
  171. this.getcategoryPageData()
  172. },
  173. getgroupPageData(){
  174. var params={
  175. parentCode:this.code,
  176. limit:this.pageSize,
  177. page:this.page,
  178. }
  179. uni.showLoading({
  180. title: '加载中'
  181. })
  182. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  183. uni.hideLoading();
  184. this.list=res.data.Items;
  185. this.TotalSize=res.data.TotalSize;
  186. var arr=[
  187. {
  188. 'name':'全部','code':'',
  189. }
  190. ]
  191. this.dynamicCol=arr.concat(res.data.dynamicCol);
  192. })
  193. }
  194. }
  195. }
  196. </script>
  197. <style scoped>
  198. .top{
  199. width: 1200px;
  200. margin: 0 auto;
  201. display: flex;
  202. padding: 30px 0;
  203. font-size: 14px;
  204. }
  205. .content{
  206. background: #F4F5F7;
  207. min-height: 100vh;
  208. font-family: PingFangSC-Regular, PingFang SC;
  209. }
  210. .htmlBox{
  211. width: 720px;
  212. margin: 0 auto;
  213. }
  214. .contBox{
  215. min-height: 58vh;
  216. }
  217. .topline{
  218. padding-right: 10px;
  219. cursor: pointer;
  220. color: #3C3C3C;
  221. }
  222. .topjt{
  223. color: #AAAAAA;
  224. padding-right: 10px;
  225. }
  226. *{
  227. padding: 0;
  228. margin: 0;
  229. }
  230. .gotopImg{
  231. width: 60px;
  232. height: 60px;
  233. }
  234. .gotop{
  235. position: fixed;
  236. right:5vh ;
  237. bottom: 60px;
  238. cursor: pointer;
  239. }
  240. .topName{
  241. text-align: center;
  242. font-size: 22px;
  243. font-weight: 500;
  244. color: #3C3C3C;
  245. line-height: 33px;
  246. font-family: PingFangSC-Medium, PingFang SC;
  247. }
  248. .comment{
  249. text-align: center;
  250. font-size: 14px;
  251. font-weight: 400;
  252. color: #999999;
  253. line-height: 20px;
  254. width: 500px;
  255. padding-top: 10px;
  256. margin: 0 auto;
  257. }
  258. .main{
  259. width: 1200px;
  260. margin: 0 auto;
  261. padding-top: 30px;
  262. }
  263. .dynamicColLeft{
  264. display: flex;
  265. }
  266. .dynamicColLIne{
  267. padding-right: 44px;
  268. font-size: 16px;
  269. color: #3C3C3C;
  270. cursor: pointer;
  271. }
  272. .qhImg{
  273. width: 28px;
  274. height: 28px;
  275. margin-left: 8px;
  276. cursor: pointer;
  277. }
  278. .dynamicCol{
  279. display: flex;
  280. justify-content: space-between;
  281. background: #FFFFFF;
  282. padding:15px 20px;
  283. border-radius: 8px;
  284. }
  285. .activeTab{
  286. color: #FF4F00;
  287. }
  288. .mainwzImg{
  289. width: 284px;
  290. height: 160px;
  291. }
  292. .mainwzImgBox{
  293. border-top-left-radius: 6px;
  294. border-top-right-radius: 6px;
  295. overflow: hidden;
  296. height: 160px;
  297. border: 1px solid #eeeeee;
  298. }
  299. .contf{
  300. display: flex;
  301. flex-wrap: wrap;
  302. }
  303. .mainwzline{
  304. width: 284px;
  305. height: 244px;
  306. background: #FFFFFF;
  307. margin-right: 21px;
  308. margin-top: 20px;
  309. cursor: pointer;
  310. border-radius: 6px;
  311. }
  312. .wztime{
  313. font-size: 14px;
  314. color: #999999;
  315. padding-left: 14px;
  316. padding-top: 10px;
  317. }
  318. .mainwzlineR{
  319. margin-right: 0px;
  320. }
  321. .wztitle{
  322. width: 256px;
  323. font-size: 16px;
  324. color: #333333;
  325. line-height: 22px;
  326. height: 22px;
  327. text-overflow: -o-ellipsis-lastline;
  328. overflow: hidden;
  329. text-overflow: ellipsis;
  330. display: -webkit-box;
  331. -webkit-line-clamp: 1;
  332. line-clamp: 1;
  333. -webkit-box-orient: vertical;
  334. padding:0 13px ;
  335. padding-top: 16px;
  336. }
  337. .wzComment{
  338. font-size: 14px;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #999999;
  342. line-height: 20px;
  343. padding-top: 10px;
  344. width: 948px;
  345. height: 80px;
  346. text-overflow: -o-ellipsis-lastline;
  347. overflow: hidden;
  348. text-overflow: ellipsis;
  349. display: -webkit-box;
  350. -webkit-line-clamp: 4;
  351. line-clamp: 4;
  352. -webkit-box-orient: vertical;
  353. }
  354. .wzLeftIMg{
  355. width: 200px;
  356. height: 132px;
  357. }
  358. .contL{
  359. background: #FFFFFF;
  360. margin-top: 20px ;
  361. border-radius: 8px;
  362. padding: 0 20px;
  363. }
  364. .wxLine{
  365. display: flex;
  366. padding: 20px 0px;
  367. cursor: pointer;
  368. border-bottom: 1px solid #EEEEEE;
  369. }
  370. .wzLineLeft{
  371. border-radius: 6px;
  372. overflow: hidden;
  373. width: 200px;
  374. height: 132px;
  375. }
  376. .wzLineRight{
  377. padding-left: 16px;
  378. width: 788px;
  379. }
  380. .wzTitle{
  381. font-size: 16px;
  382. color: #3C3C3C;
  383. }
  384. .wzTitle2{
  385. font-size: 16px;
  386. color: #3C3C3C;
  387. width: 948px;
  388. height: 20px;
  389. line-height: 20px;
  390. text-overflow: -o-ellipsis-lastline;
  391. overflow: hidden;
  392. text-overflow: ellipsis;
  393. display: -webkit-box;
  394. -webkit-line-clamp: 1;
  395. line-clamp: 1;
  396. -webkit-box-orient: vertical;
  397. }
  398. .pageView{
  399. margin-top: 20px;
  400. cursor: pointer;
  401. padding-bottom: 20px;
  402. }
  403. .nodataImg{
  404. width: 300px;
  405. height: 203px;
  406. padding-top: 100px;
  407. }
  408. .nodata{
  409. text-align: center;
  410. }
  411. .nodataTitle{
  412. font-size: 16px;
  413. padding-top: 16px;
  414. font-weight: 400;
  415. color: #999999;
  416. }
  417. .c999{
  418. color: #999999;
  419. }
  420. </style>