index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. <template>
  2. <view class="content">
  3. <pcNav :data="'index'"></pcNav>
  4. <view style="height: 72px;"></view>
  5. <view class="swiperBox">
  6. <view class="swiperCont">
  7. <view class="tuijbox">
  8. <image src="../../static/pcimg/icon_tuijian@2x.png" mode="" class="tuijImg"></image>
  9. <span class="tuijTitle">推荐文章</span>
  10. </view>
  11. <swiper class="swiper" :autoplay="false" :circular="true" :current="swpIndex">
  12. <swiper-item v-for="(item,index) in recommendList" v-if="(index+1)%2!=0">
  13. <view class="swpCont">
  14. <view class="swiper-item" @click="goDetail(item)">
  15. <view class="swpimgBox swpBr">
  16. <image :src="item.logoImg" mode="" class="swpimg"></image>
  17. </view>
  18. <view class="swpTitleBox">
  19. <view class="swpTitle">{{item.title}}</view>
  20. <view class="categoryName" @click.stop="goList(item)">{{item.categoryName}}</view>
  21. </view>
  22. </view>
  23. <view class="swiper-item" v-if="(index+1)<recommendList.length" @click="goDetail(item)">
  24. <view class="swpimgBox swpBr">
  25. <image :src="recommendList[index+1].logoImg" mode="" class="swpimg"></image>
  26. </view>
  27. <view class="swpTitleBox">
  28. <view class="swpTitle">{{recommendList[index+1].title}}</view>
  29. <view class="categoryName">{{recommendList[index+1].categoryName}}</view>
  30. </view>
  31. </view>
  32. </view>
  33. </swiper-item>
  34. </swiper>
  35. <image src="../../static/pcimg/icon_arrow_zuo_sel@2x.png" mode="" class="swpImgleft" @click="swpBtnLeft"></image>
  36. <image src="../../static/pcimg/legtspx.png" mode="" class="swpImgright" @click="swpBtnRight"></image>
  37. </view>
  38. </view>
  39. <view class="main">
  40. <view class="mainCont">
  41. <view class="mainline" v-for="(item,index) in indexData.categoryList">
  42. <view class="mainlineTop">
  43. <view class="mainlineTopleft">
  44. <view class="mainlineTitle">{{item.name}}</view>
  45. <view class="mainlinecount">共{{item.count}}篇文章</view>
  46. </view>
  47. <view class="mainlineMore" @click="mainMore(item)">查看更多
  48. <image src="../../static/pcimg/icon_list_arrow_def@2x.png" mode="" class="linegdImg1"></image>
  49. <image src="../../static/pcimg/icon_list_arrow_sel@2x.png" mode="" class="linegdImg2"></image>
  50. </view>
  51. </view>
  52. <view class="mainwzbox" v-if="item.children.length>0">
  53. <view class="mainwzline" v-for="(wz,wzindex) in item.children" @click="goDetail2(wz,item)" v-if="wzindex<4" :class="{'mainwzlineR':wzindex!=3}">
  54. <view class="mainwzImgBox">
  55. <img :src="wz.logoImg" alt="" class="mainwzImg">
  56. </view>
  57. <view class="wztitle">{{wz.title}}</view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="gotop" @click="gotoTop">
  64. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  65. </view>
  66. <!-- <view>
  67. <a class="table-btn" href="http://phone.66km.cn:8088/marketing/training/940C4BF0A2E04542A1A1AD244EAFB6E2.xlsx" target='_blank'>下载入口</a>
  68. </view> -->
  69. </view>
  70. </template>
  71. <script>
  72. import pcNav from '../../components/pcNav/pcNav.vue'
  73. export default {
  74. components: {
  75. pcNav,
  76. },
  77. data() {
  78. return {
  79. title: 'Hello',
  80. allCategory:[],
  81. navMoret:false,
  82. swpIndex:0,
  83. indexData:'',
  84. recommendList:[],
  85. }
  86. },
  87. onLoad() {
  88. this.getindexData()
  89. },
  90. methods: {
  91. goList(item){
  92. console.log(item)
  93. uni.navigateTo({
  94. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  95. })
  96. },
  97. goDetail(item){
  98. console.log(item)
  99. uni.navigateTo({
  100. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  101. })
  102. },
  103. goDetail2(wz,item){
  104. /* console.log(item)
  105. console.log(wz) */
  106. uni.navigateTo({
  107. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  108. })
  109. },
  110. gotoTop(){
  111. uni.pageScrollTo({
  112.    scrollTop: 0, duration: 300
  113. });
  114. },
  115. swpBtnRight(){
  116. var length=this.recommendList.length
  117. var num=Math.ceil(length/2)
  118. if(this.swpIndex<num){
  119. this.swpIndex++
  120. }
  121. },
  122. swpBtnLeft(){
  123. if(this.swpIndex==0){
  124. }else{
  125. this.swpIndex--
  126. }
  127. },
  128. getindexData(){
  129. uni.showLoading({
  130. title: '加载中'
  131. })
  132. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  133. uni.hideLoading();
  134. this.indexData = res.data;
  135. this.recommendList=this.indexData.recommendList
  136. })
  137. },
  138. mainMore(item){
  139. console.log(item)
  140. uni.navigateTo({
  141. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  142. })
  143. }
  144. }
  145. }
  146. </script>
  147. <style scoped>
  148. .swiperBox{
  149. height: 356px;
  150. background: #F3F8FF;
  151. width: 100%;
  152. }
  153. .swiperCont{
  154. width: 1232px;
  155. margin: 0 auto;
  156. position: relative;
  157. }
  158. .tuijImg{
  159. width: 24px;height: 24px;
  160. }
  161. .tuijbox{
  162. display: flex;padding-top: 44px;padding-bottom: 30px;
  163. }
  164. .tuijTitle{
  165. font-size: 24px;
  166. font-family: PingFangSC-Medium, PingFang SC;
  167. font-weight: 500;
  168. color: #111111;
  169. padding-left: 7px;
  170. line-height: 24px;
  171. }
  172. .swpImgleft{
  173. width: 44px;
  174. height: 44px;
  175. position: absolute;
  176. top: 175px;
  177. left: -60px;
  178. cursor: pointer;
  179. }
  180. .swpImgright{
  181. width: 44px;
  182. height: 44px;
  183. position: absolute;
  184. top: 175px;
  185. right: -60px;
  186. cursor: pointer;
  187. }
  188. .swiper-item{
  189. width: 576px;
  190. height: 183px;
  191. background: #FFFFFF;
  192. margin-left: 16px;
  193. margin-right: 16px;
  194. border-radius: 9px;
  195. margin-top: 14px;
  196. position: relative;
  197. cursor: pointer;
  198. }
  199. .swiper-item:hover{
  200. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  201. }
  202. .swpCont{
  203. display: flex;
  204. height: 210px;
  205. justify-content: space-between;
  206. }
  207. .swpimg{
  208. width: 276px;
  209. height: 184px;
  210. }
  211. .swpimgBox{
  212. width: 276px;
  213. height: 184px;
  214. position: absolute;
  215. left: 0;
  216. top: -14px;
  217. }
  218. .swpBr{
  219. width: 276px;
  220. height: 184px;
  221. border-radius: 10px;
  222. overflow: hidden;
  223. }
  224. .swiper{
  225. height: 220px;
  226. }
  227. .swpTitleBox{
  228. padding-left: 296px;
  229. display: flex;
  230. flex-direction: column;
  231. justify-content: space-between;
  232. height: 160px;
  233. padding-top: 10px;
  234. }
  235. .swpTitle{
  236. width: 260px;
  237. height: 44px;
  238. font-size: 16px;
  239. font-weight: 500;
  240. color: #3C3C3C;
  241. line-height: 22px;
  242. text-overflow: -o-ellipsis-lastline;
  243. overflow: hidden;
  244. text-overflow: ellipsis;
  245. display: -webkit-box;
  246. -webkit-line-clamp: 2;
  247. line-clamp: 2;
  248. -webkit-box-orient: vertical;
  249. }
  250. .swpTitleBox:hover .swpTitle{
  251. color: #FF4F00;
  252. }
  253. .categoryName{
  254. line-height: 24px;
  255. width: 84px;
  256. height: 24px;
  257. background: rgba(63, 144, 247, 0.1);
  258. border-radius: 14px;
  259. font-size: 12px;
  260. color: #3F90F7;
  261. text-align: center;
  262. white-space: nowrap;
  263. overflow: hidden;
  264. text-overflow: ellipsis;
  265. }
  266. .mainCont{
  267. width: 1200px;
  268. margin: 0 auto;
  269. }
  270. .mainline{
  271. padding-top: 48px;
  272. }
  273. .mainlineTop{
  274. display: flex;
  275. justify-content: space-between;
  276. }
  277. .mainlineTopleft{
  278. display: flex;
  279. }
  280. .mainlineTitle{
  281. font-size: 20px;
  282. font-weight: 500;
  283. color: #111111;
  284. line-height: 33px;
  285. }
  286. .mainlinecount{
  287. font-size: 14px;
  288. font-weight: 400;
  289. color: #999999;
  290. line-height: 33px;
  291. padding-left: 16px;
  292. }
  293. .mainlineMore{
  294. font-size: 14px;
  295. color: #333333;
  296. }
  297. .mainwzbox{
  298. display: flex;
  299. padding-top: 30px;
  300. }
  301. .mainwzImg{
  302. width: 276px;
  303. height: 184px;
  304. }
  305. .mainwzImgBox{
  306. border-radius: 8px;
  307. overflow: hidden;
  308. height: 184px;
  309. border: 1px solid #eeeeee;
  310. }
  311. .mainwzline{
  312. width: 276px;
  313. height: 260px;
  314. background: #FFFFFF;
  315. }
  316. .mainwzlineR{
  317. margin-right: 32px;
  318. }
  319. .wztitle{
  320. width: 250px;
  321. font-size: 15px;
  322. color: #333333;
  323. line-height: 22px;
  324. height: 44px;
  325. text-overflow: -o-ellipsis-lastline;
  326. overflow: hidden;
  327. text-overflow: ellipsis;
  328. display: -webkit-box;
  329. -webkit-line-clamp: 2;
  330. line-clamp: 2;
  331. -webkit-box-orient: vertical;
  332. padding:0 13px ;
  333. padding-top: 16px;
  334. font-weight: 600;
  335. }
  336. .mainwzline:hover{
  337. background: #FFFFFF;
  338. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  339. border-radius: 6px;
  340. cursor: pointer;
  341. }
  342. .mainwzline:hover .wztitle{
  343. color: #FF4F00;
  344. }
  345. .mainlineMore:hover{
  346. color: #FF4F00;
  347. cursor: pointer;
  348. }
  349. .gotopImg{
  350. width: 60px;
  351. height: 60px;
  352. }
  353. .gotop{
  354. position: fixed;
  355. right:15vh ;
  356. bottom: 100px;
  357. cursor: pointer;
  358. }
  359. .linegdImg1{
  360. width: 6px;
  361. height: 10px;
  362. margin-top: 5px;
  363. margin-left: 4px;
  364. }
  365. .linegdImg2{
  366. width: 6px;
  367. height: 10px;
  368. display: none;
  369. margin-top: 5px;
  370. margin-left: 4px;
  371. }
  372. .mainlineMore{
  373. display: flex;
  374. }
  375. .mainlineMore:hover .linegdImg1{
  376. display: none;
  377. }
  378. .mainlineMore:hover .linegdImg2{
  379. display: block;
  380. }
  381. </style>