index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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. ExpediteService.getBanner({ is_pc: 1, num: 5 }).then(({ data }) => {
  194. this.bannerList = data.list;
  195. this.bannerList = data.list;
  196. });
  197. },
  198. // 轮播图跳转详情
  199. toDetail(item) {
  200. let detailDict = {
  201. video: {
  202. link: "/video-detail",
  203. first_id: "id",
  204. second_id: "videoArrId",
  205. },
  206. article: {
  207. link: "/image-text-detail",
  208. first_id: "article_id",
  209. second_id: "id",
  210. },
  211. datum: {
  212. link: "/information-detail",
  213. first_id: "datum_id",
  214. second_id: "id",
  215. },
  216. };
  217. let place = detailDict[item.place],
  218. query = {};
  219. if (!place) return;
  220. query[place.first_id] = item.first_id;
  221. query[place.second_id] = item.second_id;
  222. this.$router.push({
  223. path: place.link,
  224. query,
  225. });
  226. },
  227. // 跳转搜索
  228. toSearch() {
  229. this.$router.push("/search");
  230. },
  231. // 跳转模块
  232. toModule(item) {
  233. if (item.href) {
  234. this.$router.push(item.href);
  235. } else {
  236. this.$message.info("敬请期待");
  237. }
  238. },
  239. // 问答搜索
  240. forumSearch() {
  241. this.$message.info("敬请期待");
  242. },
  243. },
  244. };
  245. </script>
  246. <style lang="scss">
  247. $width: $body-width-100;
  248. .index-wrap {
  249. user-select: none;
  250. .banner {
  251. width: $width;
  252. min-width: $body-width-min;
  253. height: calc(#{$width} * 0.3);
  254. .banner-container {
  255. height: 100%;
  256. .el-carousel__container {
  257. height: 100%;
  258. }
  259. }
  260. img {
  261. width: 100%;
  262. height: 100%;
  263. object-fit: cover;
  264. }
  265. }
  266. .content {
  267. $content-width-min: 900px;
  268. width: calc(#{$width} * 0.8);
  269. min-width: $content-width-min;
  270. margin: 100px auto 0;
  271. .search {
  272. width: 100%;
  273. height: 72px;
  274. background: linear-gradient(
  275. 270deg,
  276. rgba(50, 226, 226, 1),
  277. rgba(59, 89, 248, 1),
  278. rgba(255, 153, 145, 1)
  279. );
  280. border-radius: 72px;
  281. display: flex;
  282. justify-content: center;
  283. align-items: center;
  284. .search-content {
  285. width: calc(100% - 4px);
  286. height: 68px;
  287. background-color: white;
  288. border-radius: 68px;
  289. display: flex;
  290. justify-content: flex-end;
  291. align-items: center;
  292. position: relative;
  293. .search-btn {
  294. background: linear-gradient(to right, #38bbe8, #32e2e2);
  295. height: 60px;
  296. width: 120px;
  297. text-align: center;
  298. line-height: 60px;
  299. color: white;
  300. font-size: 18px;
  301. border-radius: 60px;
  302. margin: 4px;
  303. }
  304. .hot {
  305. position: absolute;
  306. right: 150px;
  307. font-size: 14px;
  308. font-weight: 400;
  309. color: #ff7b15;
  310. display: flex;
  311. align-items: center;
  312. user-select: none;
  313. img {
  314. width: 18px;
  315. height: 18px;
  316. }
  317. }
  318. }
  319. }
  320. .card-box {
  321. width: calc(#{$width} * 0.8);
  322. min-width: $content-width-min;
  323. display: flex;
  324. flex-wrap: wrap;
  325. justify-content: space-between;
  326. .card {
  327. margin: 10px 0;
  328. border-radius: 15px;
  329. background-size: 100% 100%;
  330. .card-title {
  331. font-size: 32px;
  332. display: inline;
  333. }
  334. }
  335. .card-3 {
  336. min-width: $content-width-min;
  337. width: calc(#{$width} * 0.8);
  338. min-height: 400px;
  339. height: calc(#{$width} * 0.3);
  340. display: flex;
  341. justify-content: center;
  342. align-items: center;
  343. .card-app {
  344. width: calc(#{$width} * 0.8 * 0.7);
  345. min-width: 750px;
  346. height: calc(#{$width} * 0.8 * 0.3);
  347. min-height: 300px;
  348. display: flex;
  349. justify-content: space-between;
  350. align-items: center;
  351. .card-app-info {
  352. min-width: 400px;
  353. height: 100%;
  354. width: 55%;
  355. display: flex;
  356. flex-direction: column;
  357. justify-content: center;
  358. .card-app-info-app {
  359. font-size: 16px;
  360. font-weight: 400;
  361. color: #666666;
  362. line-height: 20px;
  363. margin-top: 30px;
  364. }
  365. }
  366. .card-app-qrcode {
  367. height: 100%;
  368. min-height: 300px;
  369. width: 35%;
  370. min-width: 240px;
  371. border-radius: 15px;
  372. background-color: white;
  373. display: flex;
  374. flex-direction: column;
  375. align-items: center;
  376. justify-content: center;
  377. .card-app-qrcode-title {
  378. font-size: 30px;
  379. margin-bottom: 20px;
  380. }
  381. .card-app-qrcode-img {
  382. min-height: 200px;
  383. height: calc(#{$width} * 0.8 * 0.3 * 0.6);
  384. min-width: 200px;
  385. width: calc(#{$width} * 0.8 * 0.3 * 0.6);
  386. }
  387. }
  388. }
  389. .card-wenda {
  390. width: 100%;
  391. height: 100%;
  392. display: flex;
  393. justify-content: space-between;
  394. align-items: center;
  395. position: relative;
  396. .card-wenda-search {
  397. width: calc(#{$width} * 0.8 * 0.8 * 0.6);
  398. min-width: 500px;
  399. height: calc(#{$width} * 0.8 * 0.8 * 0.3);
  400. min-height: 300px;
  401. position: absolute;
  402. right: 5%;
  403. top: 15%;
  404. display: flex;
  405. flex-direction: column;
  406. align-items: flex-start;
  407. justify-content: space-around;
  408. .card-wenda-search-title {
  409. font-size: 40px;
  410. }
  411. .card-wenda-search-tips {
  412. font-size: 20px;
  413. font-weight: 400;
  414. color: #666666;
  415. }
  416. .card-wenda-search-ipt {
  417. width: 100%;
  418. height: 20%;
  419. .card-wenda-search-ipt-content {
  420. width: 100%;
  421. height: 100%;
  422. display: flex;
  423. align-items: center;
  424. justify-content: flex-end;
  425. input {
  426. border: none;
  427. outline: none;
  428. height: calc(100% - 2px);
  429. width: 65%;
  430. background: transparent;
  431. font-size: 24px;
  432. }
  433. input::-webkit-input-placeholder {
  434. font-size: 24px;
  435. }
  436. button {
  437. border: none;
  438. outline: none;
  439. height: calc(100% + 2px);
  440. width: 27%;
  441. background: linear-gradient(to right, #38bbe8, #32e2e2);
  442. color: white;
  443. border-top-right-radius: 50px;
  444. border-bottom-right-radius: 50px;
  445. font-size: 24px;
  446. }
  447. }
  448. }
  449. }
  450. }
  451. }
  452. .card-1 {
  453. min-width: 280px;
  454. width: calc(#{$width} * 0.8 * 0.3);
  455. min-height: 400px;
  456. height: calc(#{$width} * 0.3);
  457. position: relative;
  458. .card-content {
  459. padding-top: 15%;
  460. height: 75%;
  461. width: 100%;
  462. display: flex;
  463. flex-direction: column;
  464. justify-content: space-around;
  465. align-items: center;
  466. .card-content-icon {
  467. min-width: 100px;
  468. width: calc(#{$width} * 0.8 * 0.3 * 0.3);
  469. min-height: 100px;
  470. width: calc(#{$width} * 0.8 * 0.3 * 0.3);
  471. }
  472. .card-content-line {
  473. min-width: 120px;
  474. width: calc(#{$width} * 0.8 * 0.3 * 0.4);
  475. min-height: 18px;
  476. width: calc(#{$width} * 0.8 * 0.3 * 0.06);
  477. }
  478. .card-content-jumpBtn {
  479. min-width: 120px;
  480. width: calc(#{$width} * 0.8 * 0.3 * 0.4);
  481. min-height: 30px;
  482. height: calc(#{$width} * 0.8 * 0.3 * 0.1);
  483. .card-content-jumpBtn-content {
  484. width: 60%;
  485. height: 100%;
  486. margin: 0 auto;
  487. display: flex;
  488. justify-content: space-around;
  489. align-items: center;
  490. font-size: 18px;
  491. span {
  492. transform: translate(0, 2px);
  493. }
  494. img {
  495. height: 12px;
  496. width: 12px;
  497. transform: translate(0, 1px);
  498. }
  499. }
  500. }
  501. }
  502. }
  503. }
  504. }
  505. }
  506. @media (min-width: 2560px) {
  507. .card-3 {
  508. width: 30%;
  509. height: 20vw;
  510. }
  511. .card-1 {
  512. width: 30%;
  513. height: 20vw;
  514. }
  515. .banner {
  516. img {
  517. height: 30vw;
  518. }
  519. }
  520. }
  521. </style>