index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. <template>
  2. <div class="index-wrap">
  3. <div class="banner">
  4. <img
  5. v-if="!bannerList.length"
  6. src="@/assets/img/index-banner.png"
  7. alt=""
  8. />
  9. <el-carousel class="banner-container">
  10. <el-carousel-item v-for="item in bannerList" :key="item.id">
  11. <img :src="item.cover" @click="toDetail(item)" />
  12. </el-carousel-item>
  13. </el-carousel>
  14. </div>
  15. <div class="content">
  16. <div class="search" @click="toSearch">
  17. <div class="search-content">
  18. <div class="hot">
  19. <img src="@/assets/icon/resoubang.png" />
  20. <span>热搜榜</span>
  21. </div>
  22. <div class="search-btn">搜索</div>
  23. </div>
  24. </div>
  25. <div class="card-box">
  26. <div
  27. v-for="item in card_list"
  28. :class="'card card-' + item.span"
  29. :style="
  30. item.backgroundImage
  31. ? {
  32. backgroundImage: `url(${item.backgroundImage})`,
  33. }
  34. : { background: item.background }
  35. "
  36. >
  37. <div v-if="item.title == 'app介绍'" class="card-app">
  38. <div class="card-app-info">
  39. <div class="card-title">APP介绍</div>
  40. <div class="card-app-info-app">
  41. 搞一下汽车电子APP集视频、图文、资料、问答、新闻、供应商、需求、活动、招聘、商品和热搜为一体。随时随地掌握前沿技术、解决问题需求、获取信息热点,让您更轻松地找到所需内容。
  42. </div>
  43. </div>
  44. <div class="card-app-qrcode">
  45. <div class="card-app-qrcode-title">APP下载</div>
  46. <img
  47. src="@/assets/img/index-qrcode.png"
  48. class="card-app-qrcode-img"
  49. alt=""
  50. />
  51. </div>
  52. </div>
  53. <div v-else-if="item.title == '搞一下问答'" class="card-wenda">
  54. <div class="card-wenda-search">
  55. <div class="card-wenda-search-title">搞一下问答</div>
  56. <div class="card-wenda-search-tips">搜索你想要的答案</div>
  57. <div class="card-wenda-search-ipt">
  58. <GradientBorder
  59. borderWidth="1px"
  60. borderRadius="50px"
  61. :backgroundColor="item.background"
  62. >
  63. <div class="card-wenda-search-ipt-content">
  64. <input type="text" placeholder="输入你想搜索的内容" />
  65. <button @click="forumSearch">搜索</button>
  66. </div>
  67. </GradientBorder>
  68. </div>
  69. </div>
  70. </div>
  71. <div v-else class="card-content" @click="toModule(item)">
  72. <img class="card-content-icon" :src="item.icon" alt="" />
  73. <img class="card-line" :src="item.line" alt="" />
  74. <div class="card-title">{{ item.title }}</div>
  75. <div class="card-content-jumpBtn">
  76. <GradientBorder borderWidth="1px" borderRadius="30px">
  77. <div class="card-content-jumpBtn-content">
  78. <span>GO</span>
  79. <img src="@/assets/icon/jump.png" alt="" />
  80. </div>
  81. </GradientBorder>
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </template>
  89. <script>
  90. import GradientBorder from "@/components/module/gradient-border.vue";
  91. import { ExpediteService } from "@/common/service";
  92. export default {
  93. components: { GradientBorder },
  94. data() {
  95. return {
  96. card: [
  97. {
  98. title: "app介绍",
  99. background: "#f1f4fc",
  100. span: 3,
  101. href: "",
  102. },
  103. {
  104. title: "视频",
  105. name: "shipin",
  106. span: 1,
  107. href: "/video",
  108. },
  109. {
  110. title: "图文",
  111. name: "tuwen",
  112. span: 1,
  113. href: "/image-text",
  114. },
  115. {
  116. title: "资料",
  117. name: "ziliao",
  118. span: 1,
  119. href: "/information",
  120. },
  121. {
  122. title: "搞一下问答",
  123. name: "wenda",
  124. span: 3,
  125. href: "",
  126. },
  127. {
  128. title: "新闻",
  129. name: "xinwen",
  130. span: 1,
  131. href: "",
  132. },
  133. {
  134. title: "供应商",
  135. name: "gongyingshang",
  136. span: 1,
  137. href: "",
  138. },
  139. {
  140. title: "活动",
  141. name: "huodong",
  142. span: 1,
  143. href: "",
  144. },
  145. {
  146. title: "招聘",
  147. name: "zhaopin",
  148. span: 1,
  149. href: "",
  150. },
  151. {
  152. title: "项目需求",
  153. name: "xiangmuxuqiu",
  154. span: 1,
  155. href: "",
  156. },
  157. {
  158. title: "商品",
  159. name: "shangpin",
  160. span: 1,
  161. href: "",
  162. },
  163. ],
  164. bannerList: [],
  165. };
  166. },
  167. computed: {
  168. card_list() {
  169. return this.card.map((item) => {
  170. return item.name
  171. ? {
  172. ...item,
  173. backgroundImage: require(`@/assets/img/home/${item.name}.png`),
  174. icon:
  175. item.name == "wenda"
  176. ? ""
  177. : require(`@/assets/img/home/${item.name}_icon.png`),
  178. line:
  179. item.name == "wenda"
  180. ? ""
  181. : require(`@/assets/img/home/${item.name}_line.png`),
  182. }
  183. : item;
  184. });
  185. },
  186. },
  187. mounted() {
  188. this.getBannerList();
  189. },
  190. methods: {
  191. // 获取轮播图
  192. getBannerList() {
  193. if (!localStorage.getItem("user_info")) return;
  194. ExpediteService.getBanner({ is_pc: 1, num: 5 }).then(({ data }) => {
  195. this.bannerList = data.list;
  196. this.bannerList = data.list;
  197. });
  198. },
  199. // 轮播图跳转详情
  200. toDetail(item) {
  201. let detailDict = {
  202. video: {
  203. link: "/video-details",
  204. first_id: "id",
  205. second_id: "videoArrId",
  206. },
  207. article: {
  208. link: "/image-text-details",
  209. first_id: "id",
  210. second_id: "item_id",
  211. },
  212. datum: {
  213. link: "/information-details",
  214. first_id: "id",
  215. second_id: "url_id",
  216. },
  217. };
  218. let place = detailDict[item.place],
  219. query = {};
  220. if (!place) return;
  221. query[place.first_id] = item.first_id;
  222. query[place.second_id] = item.second_id;
  223. this.$router.push({
  224. path: place.link,
  225. query,
  226. });
  227. },
  228. // 跳转搜索
  229. toSearch() {
  230. this.$router.push("/search");
  231. },
  232. // 跳转模块
  233. toModule(item) {
  234. if (item.href) {
  235. this.$router.push(item.href);
  236. } else {
  237. this.$message.info("敬请期待");
  238. }
  239. },
  240. // 问答搜索
  241. forumSearch() {
  242. this.$message.info("敬请期待");
  243. },
  244. },
  245. };
  246. </script>
  247. <style lang="scss">
  248. $width: $body-width-100;
  249. .index-wrap {
  250. user-select: none;
  251. .banner {
  252. width: $width;
  253. min-width: $body-width-min;
  254. height: calc(#{$width} * 0.3);
  255. .banner-container {
  256. height: 100%;
  257. .el-carousel__container {
  258. height: 100%;
  259. }
  260. }
  261. img {
  262. width: 100%;
  263. height: 100%;
  264. object-fit: cover;
  265. }
  266. }
  267. .content {
  268. $content-width-min: 900px;
  269. width: calc(#{$width} * 0.8);
  270. min-width: $content-width-min;
  271. margin: 100px auto 0;
  272. .search {
  273. width: 100%;
  274. height: 72px;
  275. background: linear-gradient(
  276. 270deg,
  277. rgba(50, 226, 226, 1),
  278. rgba(59, 89, 248, 1),
  279. rgba(255, 153, 145, 1)
  280. );
  281. border-radius: 72px;
  282. display: flex;
  283. justify-content: center;
  284. align-items: center;
  285. .search-content {
  286. width: calc(100% - 4px);
  287. height: 68px;
  288. background-color: white;
  289. border-radius: 68px;
  290. display: flex;
  291. justify-content: flex-end;
  292. align-items: center;
  293. position: relative;
  294. .search-btn {
  295. background: linear-gradient(to right, #38bbe8, #32e2e2);
  296. height: 60px;
  297. width: 120px;
  298. text-align: center;
  299. line-height: 60px;
  300. color: white;
  301. font-size: 18px;
  302. border-radius: 60px;
  303. margin: 4px;
  304. }
  305. .hot {
  306. position: absolute;
  307. right: 150px;
  308. font-size: 14px;
  309. font-weight: 400;
  310. color: #ff7b15;
  311. display: flex;
  312. align-items: center;
  313. user-select: none;
  314. img {
  315. width: 18px;
  316. height: 18px;
  317. }
  318. }
  319. }
  320. }
  321. .card-box {
  322. width: calc(#{$width} * 0.8);
  323. min-width: $content-width-min;
  324. display: flex;
  325. flex-wrap: wrap;
  326. justify-content: space-between;
  327. .card {
  328. margin: 10px 0;
  329. border-radius: 15px;
  330. background-size: 100% 100%;
  331. .card-title {
  332. font-size: 32px;
  333. display: inline;
  334. }
  335. }
  336. .card-3 {
  337. min-width: $content-width-min;
  338. width: calc(#{$width} * 0.8);
  339. min-height: 400px;
  340. height: calc(#{$width} * 0.3);
  341. display: flex;
  342. justify-content: center;
  343. align-items: center;
  344. .card-app {
  345. width: calc(#{$width} * 0.8 * 0.7);
  346. min-width: 750px;
  347. height: calc(#{$width} * 0.8 * 0.3);
  348. min-height: 300px;
  349. display: flex;
  350. justify-content: space-between;
  351. align-items: center;
  352. .card-app-info {
  353. min-width: 400px;
  354. height: 100%;
  355. width: 55%;
  356. display: flex;
  357. flex-direction: column;
  358. justify-content: center;
  359. .card-app-info-app {
  360. font-size: 16px;
  361. font-weight: 400;
  362. color: #666666;
  363. line-height: 20px;
  364. margin-top: 30px;
  365. }
  366. }
  367. .card-app-qrcode {
  368. height: 100%;
  369. min-height: 300px;
  370. width: 35%;
  371. min-width: 240px;
  372. border-radius: 15px;
  373. background-color: white;
  374. display: flex;
  375. flex-direction: column;
  376. align-items: center;
  377. justify-content: center;
  378. .card-app-qrcode-title {
  379. font-size: 30px;
  380. margin-bottom: 20px;
  381. }
  382. .card-app-qrcode-img {
  383. min-height: 200px;
  384. height: calc(#{$width} * 0.8 * 0.3 * 0.6);
  385. min-width: 200px;
  386. width: calc(#{$width} * 0.8 * 0.3 * 0.6);
  387. }
  388. }
  389. }
  390. .card-wenda {
  391. width: 100%;
  392. height: 100%;
  393. display: flex;
  394. justify-content: space-between;
  395. align-items: center;
  396. position: relative;
  397. .card-wenda-search {
  398. width: calc(#{$width} * 0.8 * 0.8 * 0.6);
  399. min-width: 500px;
  400. height: calc(#{$width} * 0.8 * 0.8 * 0.3);
  401. min-height: 300px;
  402. position: absolute;
  403. right: 5%;
  404. top: 15%;
  405. display: flex;
  406. flex-direction: column;
  407. align-items: flex-start;
  408. justify-content: space-around;
  409. .card-wenda-search-title {
  410. font-size: 40px;
  411. }
  412. .card-wenda-search-tips {
  413. font-size: 20px;
  414. font-weight: 400;
  415. color: #666666;
  416. }
  417. .card-wenda-search-ipt {
  418. width: 100%;
  419. height: 20%;
  420. .card-wenda-search-ipt-content {
  421. width: 100%;
  422. height: 100%;
  423. display: flex;
  424. align-items: center;
  425. justify-content: flex-end;
  426. input {
  427. border: none;
  428. outline: none;
  429. height: calc(100% - 2px);
  430. width: 65%;
  431. background: transparent;
  432. font-size: 24px;
  433. }
  434. input::-webkit-input-placeholder {
  435. font-size: 24px;
  436. }
  437. button {
  438. border: none;
  439. outline: none;
  440. height: calc(100% + 2px);
  441. width: 27%;
  442. background: linear-gradient(to right, #38bbe8, #32e2e2);
  443. color: white;
  444. border-top-right-radius: 50px;
  445. border-bottom-right-radius: 50px;
  446. font-size: 24px;
  447. }
  448. }
  449. }
  450. }
  451. }
  452. }
  453. .card-1 {
  454. min-width: 280px;
  455. width: calc(#{$width} * 0.8 * 0.3);
  456. min-height: 400px;
  457. height: calc(#{$width} * 0.3);
  458. position: relative;
  459. .card-content {
  460. padding-top: 15%;
  461. height: 75%;
  462. width: 100%;
  463. display: flex;
  464. flex-direction: column;
  465. justify-content: space-around;
  466. align-items: center;
  467. .card-content-icon {
  468. min-width: 100px;
  469. width: calc(#{$width} * 0.8 * 0.3 * 0.3);
  470. min-height: 100px;
  471. width: calc(#{$width} * 0.8 * 0.3 * 0.3);
  472. }
  473. .card-content-line {
  474. min-width: 120px;
  475. width: calc(#{$width} * 0.8 * 0.3 * 0.4);
  476. min-height: 18px;
  477. width: calc(#{$width} * 0.8 * 0.3 * 0.06);
  478. }
  479. .card-content-jumpBtn {
  480. min-width: 120px;
  481. width: calc(#{$width} * 0.8 * 0.3 * 0.4);
  482. min-height: 30px;
  483. height: calc(#{$width} * 0.8 * 0.3 * 0.1);
  484. .card-content-jumpBtn-content {
  485. width: 60%;
  486. height: 100%;
  487. margin: 0 auto;
  488. display: flex;
  489. justify-content: space-around;
  490. align-items: center;
  491. font-size: 18px;
  492. span {
  493. transform: translate(0, 2px);
  494. }
  495. img {
  496. height: 12px;
  497. width: 12px;
  498. transform: translate(0, 1px);
  499. }
  500. }
  501. }
  502. }
  503. }
  504. }
  505. }
  506. }
  507. @media (min-width: 2560px) {
  508. .card-3 {
  509. width: 30%;
  510. height: 20vw;
  511. }
  512. .card-1 {
  513. width: 30%;
  514. height: 20vw;
  515. }
  516. .banner {
  517. img {
  518. height: 30vw;
  519. }
  520. }
  521. }
  522. </style>