|
@@ -13,25 +13,52 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div v-else class="box">
|
|
|
- <div
|
|
|
- class="imgbox"
|
|
|
- :style="{ background: 'url(' + item.background_image + ')' }"
|
|
|
- v-for="(item, idx) in list"
|
|
|
- :key="idx"
|
|
|
- >
|
|
|
- <div class="bo" @mouseover="changeBackground">
|
|
|
- <img class="logo" :src="item.logo" alt="" />
|
|
|
- <div class="name">{{ item.company_name }}</div>
|
|
|
- <div class="content">{{ item.content }}</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <el-carousel indicator-position="none" :autoplay="false">
|
|
|
+ <el-carousel-item v-for="(child, index) in newlist.list" :key="index">
|
|
|
+ <div class="" style="display: flex; align-items: center">
|
|
|
+ <div
|
|
|
+ class="imgbox"
|
|
|
+ :style="{
|
|
|
+ background: 'url(' + item.background_image + ')',
|
|
|
+ backgroundSize: 'cover',
|
|
|
+ }"
|
|
|
+ v-for="(item, idx) in child"
|
|
|
+ :key="idx"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="bo"
|
|
|
+ @mouseover="changeBackground(idx)"
|
|
|
+ @mouseleave="leave"
|
|
|
+ >
|
|
|
+ <img class="logo" :src="item.logo" alt="" />
|
|
|
+ <div class="name">{{ item.company_name }}</div>
|
|
|
+ <div class="content">{{ item.content }}</div>
|
|
|
+ <div
|
|
|
+ v-if="over == 1 && ind == idx"
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div class="btntitle" @click="apply">
|
|
|
+ {{ item.button_title }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-carousel-item>
|
|
|
+ </el-carousel>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <forma :dialogTableVisible2="dialogTableVisible2" @clos="close"></forma>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
import { useRouter } from "vue-router";
|
|
|
-import { onMounted, ref } from "vue";
|
|
|
+import { onMounted, reactive, ref, watch } from "vue";
|
|
|
+import forma from "../components/Form/from.vue";
|
|
|
onMounted(() => {});
|
|
|
const props = defineProps({
|
|
|
title: {
|
|
@@ -47,10 +74,89 @@ const props = defineProps({
|
|
|
default: "",
|
|
|
},
|
|
|
});
|
|
|
-const changeBackground = () => {};
|
|
|
+//是否登录
|
|
|
+const is_login = ref(false);
|
|
|
+if (localStorage.getItem("access_token")) {
|
|
|
+ is_login.value = true;
|
|
|
+} else {
|
|
|
+ is_login.value = false;
|
|
|
+}
|
|
|
+const dialogTableVisible2 = ref(false);
|
|
|
+//申请
|
|
|
+const apply = () => {
|
|
|
+ if (is_login.value) {
|
|
|
+ dialogTableVisible2.value = true;
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ message: "请先登录",
|
|
|
+ type: "error",
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const ind = ref("");
|
|
|
+const over = ref(0);
|
|
|
+const changeBackground = (index) => {
|
|
|
+ over.value = 1;
|
|
|
+ ind.value = index;
|
|
|
+};
|
|
|
+const leave = () => {
|
|
|
+ over.value = 0;
|
|
|
+};
|
|
|
+
|
|
|
+//关闭
|
|
|
+const close = () => {
|
|
|
+ dialogTableVisible2.value = false;
|
|
|
+};
|
|
|
+
|
|
|
+const newlist = reactive({
|
|
|
+ list: [],
|
|
|
+});
|
|
|
+const chong = () => {
|
|
|
+ var result = [];
|
|
|
+ for (var i = 0; i < props.list.length; i += 2) {
|
|
|
+ result.push(props.list.slice(i, i + 2));
|
|
|
+ newlist.list = result;
|
|
|
+ // result = [];
|
|
|
+ }
|
|
|
+ console.log(newlist.list, 1);
|
|
|
+};
|
|
|
+watch(
|
|
|
+ () => props.list,
|
|
|
+ (newVal) => {
|
|
|
+ if (props.list.length > 0) {
|
|
|
+ chong();
|
|
|
+ }
|
|
|
+ }
|
|
|
+);
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.btntitle {
|
|
|
+ width: 428px;
|
|
|
+ height: 56px;
|
|
|
+ background: #0d0fff;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 56px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+ // position: absolute;
|
|
|
+ // bottom: 40px;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-top: 60px;
|
|
|
+}
|
|
|
+:deep(.el-carousel--horizontal) {
|
|
|
+ height: 600px !important;
|
|
|
+ width: 1200px !important;
|
|
|
+}
|
|
|
+:deep(.el-carousel__item) {
|
|
|
+ overflow: visible !important;
|
|
|
+}
|
|
|
+
|
|
|
.content {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
@@ -76,7 +182,7 @@ const changeBackground = () => {};
|
|
|
height: 60px;
|
|
|
}
|
|
|
.bo {
|
|
|
- width: 580px;
|
|
|
+ // width: 580px;
|
|
|
height: 320px;
|
|
|
background: linear-gradient(
|
|
|
180deg,
|
|
@@ -88,12 +194,12 @@ const changeBackground = () => {};
|
|
|
backdrop-filter: blur(10px);
|
|
|
position: absolute;
|
|
|
bottom: 0px;
|
|
|
- left: 0;
|
|
|
+ left: 32px;
|
|
|
padding: 30px 40px;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
.bo:hover {
|
|
|
- width: 580px;
|
|
|
+ // width: 580px;
|
|
|
height: 600px;
|
|
|
background: linear-gradient(
|
|
|
180deg,
|
|
@@ -104,6 +210,8 @@ const changeBackground = () => {};
|
|
|
border-radius: 14px;
|
|
|
backdrop-filter: blur(10px);
|
|
|
transition: all 0.6s;
|
|
|
+ padding: 30px 40px;
|
|
|
+ box-sizing: border-box;
|
|
|
transform: translateY(-0%); /* 使用transform进行微调 */
|
|
|
}
|
|
|
.imgbox {
|