123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <template>
- <div class="index-wrap">
- <div class="banner">
- <img
- v-if="!bannerList.length"
- src="@/assets/img/index-banner.png"
- alt=""
- />
- <el-carousel class="banner-container">
- <el-carousel-item v-for="item in bannerList" :key="item.id">
- <img :src="item.cover" @click="toDetail(item)" />
- </el-carousel-item>
- </el-carousel>
- </div>
- <div class="content">
- <div class="search" @click="toSearch">
- <div class="search-content">
- <div class="hot">
- <img src="@/assets/icon/resoubang.png" />
- <span>热搜榜</span>
- </div>
- <div class="search-btn">搜索</div>
- </div>
- </div>
- <div class="card-box">
- <div
- v-for="item in card_list"
- :class="'card card-' + item.span"
- :style="
- item.backgroundImage
- ? {
- backgroundImage: `url(${item.backgroundImage})`,
- }
- : { background: item.background }
- "
- >
- <div v-if="item.title == 'app介绍'" class="card-app">
- <div class="card-app-info">
- <div class="card-title">APP介绍</div>
- <div class="card-app-info-app">
- 搞一下汽车电子APP集视频、图文、资料、问答、新闻、供应商、需求、活动、招聘、商品和热搜为一体。随时随地掌握前沿技术、解决问题需求、获取信息热点,让您更轻松地找到所需内容。
- </div>
- </div>
- <div class="card-app-qrcode">
- <div class="card-app-qrcode-title">APP下载</div>
- <img
- src="@/assets/img/index-qrcode.png"
- class="card-app-qrcode-img"
- alt=""
- />
- </div>
- </div>
- <div v-else-if="item.title == '搞一下问答'" class="card-wenda">
- <div class="card-wenda-search">
- <div class="card-wenda-search-title">搞一下问答</div>
- <div class="card-wenda-search-tips">搜索你想要的答案</div>
- <div class="card-wenda-search-ipt">
- <GradientBorder
- borderWidth="1px"
- borderRadius="50px"
- :backgroundColor="item.background"
- >
- <div class="card-wenda-search-ipt-content">
- <input type="text" placeholder="输入你想搜索的内容" />
- <button @click="forumSearch">搜索</button>
- </div>
- </GradientBorder>
- </div>
- </div>
- </div>
- <div v-else class="card-content" @click="toModule(item)">
- <img class="card-content-icon" :src="item.icon" alt="" />
- <img class="card-line" :src="item.line" alt="" />
- <div class="card-title">{{ item.title }}</div>
- <div class="card-content-jumpBtn">
- <GradientBorder borderWidth="1px" borderRadius="30px">
- <div class="card-content-jumpBtn-content">
- <span>GO</span>
- <img src="@/assets/icon/jump.png" alt="" />
- </div>
- </GradientBorder>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import GradientBorder from "@/components/module/gradient-border.vue";
- import { ExpediteService } from "@/common/service";
- export default {
- components: { GradientBorder },
- data() {
- return {
- card: [
- {
- title: "app介绍",
- background: "#f1f4fc",
- span: 3,
- href: "",
- },
- {
- title: "视频",
- name: "shipin",
- span: 1,
- href: "/video",
- },
- {
- title: "图文",
- name: "tuwen",
- span: 1,
- href: "/image-text",
- },
- {
- title: "资料",
- name: "ziliao",
- span: 1,
- href: "/information",
- },
- {
- title: "搞一下问答",
- name: "wenda",
- span: 3,
- href: "",
- },
- {
- title: "新闻",
- name: "xinwen",
- span: 1,
- href: "",
- },
- {
- title: "供应商",
- name: "gongyingshang",
- span: 1,
- href: "",
- },
- {
- title: "活动",
- name: "huodong",
- span: 1,
- href: "",
- },
- {
- title: "招聘",
- name: "zhaopin",
- span: 1,
- href: "",
- },
- {
- title: "项目需求",
- name: "xiangmuxuqiu",
- span: 1,
- href: "",
- },
- {
- title: "商品",
- name: "shangpin",
- span: 1,
- href: "",
- },
- ],
- bannerList: [],
- };
- },
- computed: {
- card_list() {
- return this.card.map((item) => {
- return item.name
- ? {
- ...item,
- backgroundImage: require(`@/assets/img/home/${item.name}.png`),
- icon:
- item.name == "wenda"
- ? ""
- : require(`@/assets/img/home/${item.name}_icon.png`),
- line:
- item.name == "wenda"
- ? ""
- : require(`@/assets/img/home/${item.name}_line.png`),
- }
- : item;
- });
- },
- },
- mounted() {
- this.getBannerList();
- },
- methods: {
- // 获取轮播图
- getBannerList() {
- ExpediteService.getBanner({ is_pc: 1, num: 5 }).then(({ data }) => {
- this.bannerList = data.list;
- this.bannerList = data.list;
- });
- },
- // 轮播图跳转详情
- toDetail(item) {
- let detailDict = {
- video: {
- link: "/video-detail",
- first_id: "id",
- second_id: "videoArrId",
- },
- article: {
- link: "/image-text-detail",
- first_id: "article_id",
- second_id: "id",
- },
- datum: {
- link: "/information-detail",
- first_id: "datum_id",
- second_id: "id",
- },
- };
- let place = detailDict[item.place],
- query = {};
- if (!place) return;
- query[place.first_id] = item.first_id;
- query[place.second_id] = item.second_id;
- this.$router.push({
- path: place.link,
- query,
- });
- },
- // 跳转搜索
- toSearch() {
- this.$router.push("/search");
- },
- // 跳转模块
- toModule(item) {
- if (item.href) {
- this.$router.push(item.href);
- } else {
- this.$message.info("敬请期待");
- }
- },
- // 问答搜索
- forumSearch() {
- this.$message.info("敬请期待");
- },
- },
- };
- </script>
- <style lang="scss">
- $width: $body-width-100;
- .index-wrap {
- user-select: none;
- .banner {
- width: $width;
- min-width: $body-width-min;
- height: calc(#{$width} * 0.3);
- .banner-container {
- height: 100%;
- .el-carousel__container {
- height: 100%;
- }
- }
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .content {
- $content-width-min: 900px;
- width: calc(#{$width} * 0.8);
- min-width: $content-width-min;
- margin: 100px auto 0;
- .search {
- width: 100%;
- height: 72px;
- background: linear-gradient(
- 270deg,
- rgba(50, 226, 226, 1),
- rgba(59, 89, 248, 1),
- rgba(255, 153, 145, 1)
- );
- border-radius: 72px;
- display: flex;
- justify-content: center;
- align-items: center;
- .search-content {
- width: calc(100% - 4px);
- height: 68px;
- background-color: white;
- border-radius: 68px;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- position: relative;
- .search-btn {
- background: linear-gradient(to right, #38bbe8, #32e2e2);
- height: 60px;
- width: 120px;
- text-align: center;
- line-height: 60px;
- color: white;
- font-size: 18px;
- border-radius: 60px;
- margin: 4px;
- }
- .hot {
- position: absolute;
- right: 150px;
- font-size: 14px;
- font-weight: 400;
- color: #ff7b15;
- display: flex;
- align-items: center;
- user-select: none;
- img {
- width: 18px;
- height: 18px;
- }
- }
- }
- }
- .card-box {
- width: calc(#{$width} * 0.8);
- min-width: $content-width-min;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .card {
- margin: 10px 0;
- border-radius: 15px;
- background-size: 100% 100%;
- .card-title {
- font-size: 32px;
- display: inline;
- }
- }
- .card-3 {
- min-width: $content-width-min;
- width: calc(#{$width} * 0.8);
- min-height: 400px;
- height: calc(#{$width} * 0.3);
- display: flex;
- justify-content: center;
- align-items: center;
- .card-app {
- width: calc(#{$width} * 0.8 * 0.7);
- min-width: 750px;
- height: calc(#{$width} * 0.8 * 0.3);
- min-height: 300px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .card-app-info {
- min-width: 400px;
- height: 100%;
- width: 55%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- .card-app-info-app {
- font-size: 16px;
- font-weight: 400;
- color: #666666;
- line-height: 20px;
- margin-top: 30px;
- }
- }
- .card-app-qrcode {
- height: 100%;
- min-height: 300px;
- width: 35%;
- min-width: 240px;
- border-radius: 15px;
- background-color: white;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .card-app-qrcode-title {
- font-size: 30px;
- margin-bottom: 20px;
- }
- .card-app-qrcode-img {
- min-height: 200px;
- height: calc(#{$width} * 0.8 * 0.3 * 0.6);
- min-width: 200px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.6);
- }
- }
- }
- .card-wenda {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- .card-wenda-search {
- width: calc(#{$width} * 0.8 * 0.8 * 0.6);
- min-width: 500px;
- height: calc(#{$width} * 0.8 * 0.8 * 0.3);
- min-height: 300px;
- position: absolute;
- right: 5%;
- top: 15%;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-around;
- .card-wenda-search-title {
- font-size: 40px;
- }
- .card-wenda-search-tips {
- font-size: 20px;
- font-weight: 400;
- color: #666666;
- }
- .card-wenda-search-ipt {
- width: 100%;
- height: 20%;
- .card-wenda-search-ipt-content {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- input {
- border: none;
- outline: none;
- height: calc(100% - 2px);
- width: 65%;
- background: transparent;
- font-size: 24px;
- }
- input::-webkit-input-placeholder {
- font-size: 24px;
- }
- button {
- border: none;
- outline: none;
- height: calc(100% + 2px);
- width: 27%;
- background: linear-gradient(to right, #38bbe8, #32e2e2);
- color: white;
- border-top-right-radius: 50px;
- border-bottom-right-radius: 50px;
- font-size: 24px;
- }
- }
- }
- }
- }
- }
- .card-1 {
- min-width: 280px;
- width: calc(#{$width} * 0.8 * 0.3);
- min-height: 400px;
- height: calc(#{$width} * 0.3);
- position: relative;
- .card-content {
- padding-top: 15%;
- height: 75%;
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- .card-content-icon {
- min-width: 100px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.3);
- min-height: 100px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.3);
- }
- .card-content-line {
- min-width: 120px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.4);
- min-height: 18px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.06);
- }
- .card-content-jumpBtn {
- min-width: 120px;
- width: calc(#{$width} * 0.8 * 0.3 * 0.4);
- min-height: 30px;
- height: calc(#{$width} * 0.8 * 0.3 * 0.1);
- .card-content-jumpBtn-content {
- width: 60%;
- height: 100%;
- margin: 0 auto;
- display: flex;
- justify-content: space-around;
- align-items: center;
- font-size: 18px;
- span {
- transform: translate(0, 2px);
- }
- img {
- height: 12px;
- width: 12px;
- transform: translate(0, 1px);
- }
- }
- }
- }
- }
- }
- }
- }
- @media (min-width: 2560px) {
- .card-3 {
- width: 30%;
- height: 20vw;
- }
- .card-1 {
- width: 30%;
- height: 20vw;
- }
- .banner {
- img {
- height: 30vw;
- }
- }
- }
- </style>
|