index.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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)">查看更多></view>
  48. </view>
  49. <view class="mainwzbox" v-if="item.children.length>0">
  50. <view class="mainwzline" v-for="(wz,wzindex) in item.children" @click="goDetail2(wz,item)" 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. goList(item){
  89. console.log(item)
  90. uni.navigateTo({
  91. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  92. })
  93. },
  94. goDetail(item){
  95. console.log(item)
  96. uni.navigateTo({
  97. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  98. })
  99. },
  100. goDetail2(wz,item){
  101. /* console.log(item)
  102. console.log(wz) */
  103. uni.navigateTo({
  104. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  105. })
  106. },
  107. gotoTop(){
  108. uni.pageScrollTo({
  109.    scrollTop: 0, duration: 300
  110. });
  111. },
  112. swpBtnRight(){
  113. var length=this.recommendList.length
  114. var num=Math.ceil(length/2)
  115. if(this.swpIndex<num){
  116. this.swpIndex++
  117. }
  118. },
  119. swpBtnLeft(){
  120. if(this.swpIndex==0){
  121. }else{
  122. this.swpIndex--
  123. }
  124. },
  125. getindexData(){
  126. uni.showLoading({
  127. title: '加载中'
  128. })
  129. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  130. uni.hideLoading();
  131. this.indexData = res.data;
  132. this.recommendList=this.indexData.recommendList
  133. })
  134. },
  135. mainMore(item){
  136. console.log(item)
  137. uni.navigateTo({
  138. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  139. })
  140. }
  141. }
  142. }
  143. </script>
  144. <style scoped>
  145. .swiperBox{
  146. height: 356px;
  147. background: #F3F8FF;
  148. width: 100%;
  149. }
  150. .swiperCont{
  151. width: 1200px;
  152. margin: 0 auto;
  153. position: relative;
  154. }
  155. .tuijImg{
  156. width: 24px;height: 24px;
  157. }
  158. .tuijbox{
  159. display: flex;padding-top: 44px;padding-bottom: 30px;
  160. }
  161. .tuijTitle{
  162. font-size: 24px;
  163. font-family: PingFangSC-Medium, PingFang SC;
  164. font-weight: 500;
  165. color: #111111;
  166. padding-left: 7px;
  167. line-height: 24px;
  168. }
  169. .swpImgleft{
  170. width: 44px;
  171. height: 44px;
  172. position: absolute;
  173. top: 175px;
  174. left: -60px;
  175. cursor: pointer;
  176. }
  177. .swpImgright{
  178. width: 44px;
  179. height: 44px;
  180. position: absolute;
  181. top: 175px;
  182. right: -60px;
  183. cursor: pointer;
  184. }
  185. .swiper-item{
  186. width: 576px;
  187. height: 183px;
  188. background: #FFFFFF;
  189. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  190. border-radius: 9px;
  191. margin-top: 14px;
  192. position: relative;
  193. cursor: pointer;
  194. }
  195. .swiper-item:hover{
  196. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  197. }
  198. .swpCont{
  199. display: flex;
  200. height: 210px;
  201. justify-content: space-between;
  202. }
  203. .swpimg{
  204. width: 276px;
  205. height: 184px;
  206. }
  207. .swpimgBox{
  208. width: 276px;
  209. height: 184px;
  210. position: absolute;
  211. left: 0;
  212. top: -14px;
  213. }
  214. .swpBr{
  215. width: 276px;
  216. height: 184px;
  217. border-radius: 10px;
  218. overflow: hidden;
  219. }
  220. .swiper{
  221. height: 200px;
  222. }
  223. .swpTitleBox{
  224. padding-left: 296px;
  225. display: flex;
  226. flex-direction: column;
  227. justify-content: space-between;
  228. height: 160px;
  229. padding-top: 10px;
  230. }
  231. .swpTitle{
  232. width: 260px;
  233. height: 44px;
  234. font-size: 16px;
  235. font-weight: 500;
  236. color: #3C3C3C;
  237. line-height: 22px;
  238. text-overflow: -o-ellipsis-lastline;
  239. overflow: hidden;
  240. text-overflow: ellipsis;
  241. display: -webkit-box;
  242. -webkit-line-clamp: 2;
  243. line-clamp: 2;
  244. -webkit-box-orient: vertical;
  245. }
  246. .swpTitleBox:hover .swpTitle{
  247. color: #FF4F00;
  248. }
  249. .categoryName{
  250. line-height: 24px;
  251. width: 84px;
  252. height: 24px;
  253. background: rgba(63, 144, 247, 0.1);
  254. border-radius: 14px;
  255. font-size: 12px;
  256. color: #3F90F7;
  257. text-align: center;
  258. white-space: nowrap;
  259. overflow: hidden;
  260. text-overflow: ellipsis;
  261. }
  262. .mainCont{
  263. width: 1200px;
  264. margin: 0 auto;
  265. }
  266. .mainline{
  267. padding-top: 48px;
  268. }
  269. .mainlineTop{
  270. display: flex;
  271. justify-content: space-between;
  272. }
  273. .mainlineTopleft{
  274. display: flex;
  275. }
  276. .mainlineTitle{
  277. font-size: 24px;
  278. font-weight: 500;
  279. color: #111111;
  280. line-height: 33px;
  281. }
  282. .mainlinecount{
  283. font-size: 14px;
  284. font-weight: 400;
  285. color: #999999;
  286. line-height: 33px;
  287. padding-left: 16px;
  288. }
  289. .mainlineMore{
  290. font-size: 14px;
  291. color: #333333;
  292. }
  293. .mainwzbox{
  294. display: flex;
  295. padding-top: 30px;
  296. }
  297. .mainwzImg{
  298. width: 276px;
  299. height: 184px;
  300. }
  301. .mainwzImgBox{
  302. border-radius: 8px;
  303. overflow: hidden;
  304. height: 184px;
  305. border: 1px solid #eeeeee;
  306. }
  307. .mainwzline{
  308. width: 276px;
  309. height: 260px;
  310. background: #FFFFFF;
  311. }
  312. .mainwzlineR{
  313. margin-right: 32px;
  314. }
  315. .wztitle{
  316. width: 250px;
  317. font-size: 15px;
  318. color: #333333;
  319. line-height: 22px;
  320. height: 44px;
  321. text-overflow: -o-ellipsis-lastline;
  322. overflow: hidden;
  323. text-overflow: ellipsis;
  324. display: -webkit-box;
  325. -webkit-line-clamp: 2;
  326. line-clamp: 2;
  327. -webkit-box-orient: vertical;
  328. padding:0 13px ;
  329. padding-top: 16px;
  330. font-weight: 600;
  331. }
  332. .mainwzline:hover{
  333. background: #FFFFFF;
  334. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  335. border-radius: 6px;
  336. cursor: pointer;
  337. }
  338. .mainwzline:hover .wztitle{
  339. color: #FF4F00;
  340. }
  341. .mainlineMore:hover{
  342. color: #FF4F00;
  343. cursor: pointer;
  344. }
  345. .gotopImg{
  346. width: 60px;
  347. height: 60px;
  348. }
  349. .gotop{
  350. position: fixed;
  351. right:15vh ;
  352. bottom: 100px;
  353. cursor: pointer;
  354. }
  355. </style>