index.vue 7.3 KB

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