<template>
|
<div class="bannerbg chuany-width100 h-[450px] flex items-center">
|
<div class="content text-white font-['Source_Han_Sans_SC'] font-bold text-[50px] leading-[80px] tracking-[11%] capitalize ">
|
<p class="pb-3">川印集团——</p>
|
<p>专注品质,成就卓越</p>
|
</div>
|
</div>
|
<div class="w-100 chuany-font14 chuany-text-black coreshop-bg-white pt-10 pb-20">
|
<div v-for="(item,index) in images" :key="index">
|
<p class="font-['Source_Han_Sans_CN_VF'] font-bold text-[40px] leading-[50px] tracking-[10%] text-center align-middle capitalize pt-10" style="color:#000;">{{item.name}}</p>
|
<p class="font-['Source_Han_Sans_SC'] font-normal text-[20px] leading-[38px] tracking-[20%] text-center capitalize text-[#696969] p-10" >{{ item.text }}</p>
|
<!-- <div class="content flex flex-between flex-wrap" >
|
<el-image :src="url" v-for="(url,index) in item.urls" :key="index" style="width: 385.51px; height: 459.32px" class=" content mt-2 mr-auto mx-6"></el-image>
|
</div> -->
|
<div class="content flex flex-between flex-wrap justify-between ">
|
<div class="w-[30%] flex flex-wrap justify-center shadow-[0_4px_12px_rgba(208,208,208,0.2)] mb-8" v-for="(url,index) in item.urls">
|
<el-image :src="url.imagUrl" :key="index" style="width: 385.51px; height: 366.99px" :class="index==0?'bg-[#d4d4d4]':''"></el-image>
|
<span class="font-medium text-base leading-[22px] align-middle capitalize font-['Source_Han_Sans_SC'] text-[#000] m-8">{{ url.value }}</span>
|
</div>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script setup>
|
import usbanner from '@/static/img/usbanner.png'
|
import contentimg from '@/static/img/content-img.png'
|
const { $meth } = getCurrentInstance().appContext.config.globalProperties
|
import { articleInfo } from '@/api/text.js'
|
const { $route } = getCurrentInstance().appContext.config.globalProperties
|
import $store from "@/store/index.js";
|
import enrollment1 from '@/static/img/enrollment1.png'
|
import enrollment2 from '@/static/img/enrollment2.png'
|
import enrollment3 from '@/static/img/enrollment3.png'
|
import enrollment4 from '@/static/img/enrollment4.png'
|
import enrollment5 from '@/static/img/enrollment5.png'
|
import enrollment6 from '@/static/img/enrollment6.png'
|
import enrollment7 from '@/static/img/enrollment7.png'
|
import enrollment8 from '@/static/img/enrollment8.png'
|
import enrollment9 from '@/static/img/enrollment9.png'
|
const data = reactive({
|
activeName: "1",
|
gettab4: {}
|
})
|
const images = ref([{
|
// urls: [enrollment1,enrollment2,enrollment3,enrollment4,enrollment5,enrollment6,enrollment7,enrollment8,enrollment9],
|
urls: [
|
{imagUrl:enrollment1,value:'招生简章'},
|
{imagUrl:enrollment2,value:'报考指南'},
|
{imagUrl:enrollment3,value:'招生简章'},
|
{imagUrl:enrollment4,value:'就业资料'},
|
{imagUrl:enrollment5,value:'录取通知书'},
|
{imagUrl:enrollment6,value:'倒计时挂历'},
|
{imagUrl:enrollment7,value:'校徽'},
|
{imagUrl:enrollment8,value:'学生证'},
|
{imagUrl:enrollment9,value:'毕业证'},
|
],
|
name: "招生资料",
|
text:'信息清晰呈现,流程精准指引,为医患沟通提供专业载体'
|
}
|
])
|
const ImgaeData = [
|
{imagUrl:enrollment1,value:'招生简章'},
|
{imagUrl:enrollment2,value:'报考指南'},
|
{imagUrl:enrollment3,value:'招生简章'},
|
{imagUrl:enrollment4,value:'就业资料'},
|
{imagUrl:enrollment5,value:'录取通知书'},
|
{imagUrl:enrollment6,value:'倒计时挂历'},
|
{imagUrl:enrollment7,value:'校徽'},
|
{imagUrl:enrollment8,value:'学生证'},
|
{imagUrl:enrollment9,value:'毕业证'},
|
]
|
onMounted(() => {
|
|
articleInfos(1)
|
});
|
const handleClick = (el) => {//tab切换
|
console.log("el:", el.props.name)
|
data.gettab4 = {}
|
if (el.props.name == 1 || el.props.name == 4) {
|
articleInfos(el.props.name)
|
}
|
|
}
|
const articleInfos = (el) => {
|
articleInfo({ id: el }).then(res => {
|
if (res.status == true) {
|
data.gettab4 = res.data.contentBody
|
|
//
|
} else {
|
$message({
|
message: res.msg,
|
grouping: true,
|
type: 'error',
|
})
|
}
|
})
|
|
}
|
</script>
|
<style scoped>
|
.demo-tabs>.el-tabs__content {
|
padding: 32px;
|
color: #6b778c;
|
font-size: 32px;
|
font-weight: 600;
|
}
|
|
.jianjietab p {
|
margin-top: 15px;
|
margin-bottom: 15px;
|
line-height: 2.5em;
|
}
|
|
.phonetab {
|
padding: 100px;
|
}
|
|
.bannerbg {
|
background:
|
linear-gradient(90deg, #0e61ce 10%, rgba(108, 160, 255, 0.5) 100%),
|
url('@/static/img/usbanner.png') center/cover no-repeat;
|
}
|
</style>
|