<template>
|
<div>
|
<el-container style="min-height:100vh;height:100%">
|
<el-header class="flex justify-between items-center mx-10">
|
<el-image :src="logo" style="width:192px;height:27px" />
|
<p @click="goIndex" class="cursor-pointer">首页</p>
|
</el-header>
|
<el-main style="padding:0;" class="mainbg" >
|
<div class="content flex flex-wrap justify-between pt-16">
|
<div v-for="(item,index) in arrayList" @click="goWeb(item.link)" class="relative mt-6 cursor-pointer w-[28%] h-[20%]" style="margin: 0 auto;">
|
<el-image style="width: 100%; height: 100%" :src="item.url"></el-image>
|
<p class="absolute inset-0 whitespace-pre-line font-['Source_Han_Sans_CN_VF'] font-medium text-[30px] leading-[50px] tracking-[-5%] capitalize p-10 pl-14">{{ item.name }}</p>
|
</div>
|
</div>
|
</el-main>
|
<el-footer height="100%" class="coreshop-bg-black">
|
<div class="chuany-text-center chuany-font14" style="padding:20px 0;color: #E4E4E4;">
|
<p class="chuany-margintop-8 golink" @click="goLink">蜀ICP备10206670号-3 川B2-20120108</p>
|
<p class="chuany-margintop-8">版权所有 © 2005-2011 川印文化集团股份有限公司(www.cyin.cn)All Rights Reserved</p>
|
</div>
|
</el-footer>
|
</el-container>
|
</div>
|
</template>
|
|
|
<script setup>
|
const { $route, $meth } = getCurrentInstance().appContext.config.globalProperties
|
|
import logo from '@/static/img/logo.png'
|
import login1 from '@/static/img/login1.png'
|
import login2 from '@/static/img/login2.png'
|
import login3 from '@/static/img/login3.png'
|
import login4 from '@/static/img/login4.png'
|
import login5 from '@/static/img/login5.png'
|
import login6 from '@/static/img/login6.png'
|
|
const arrayList = [
|
{
|
name:'政采招标信息网',
|
url:login1,
|
link:'http://zc.51zhengcai.com/login'
|
},
|
{
|
name:'政采咨询网',
|
url:login2,
|
link:'https://51zhengcai.com/login'
|
},
|
{
|
name:'政采招投标咨询',
|
url:login3,
|
link:'https://oa.51zhengcai.com/'
|
},
|
{
|
name:'印刷在线\n交易平台',
|
url:login4,
|
link:'http://erp.cyin.cn/login.html'
|
},
|
{
|
name:'百分兵法',
|
url:login5,
|
link:'http://scyin.com'
|
},
|
{
|
name:'百分兵法\n订单管理系统',
|
url:login6,
|
link:'http://ycmht.51zhengcai.com:9010/#/user/login'
|
}
|
]
|
|
const goLink = ()=>{
|
window.open('https://beian.miit.gov.cn/#/Integrated/index','_blank')
|
}
|
|
const goWeb = (linkstr)=>{
|
window.open(linkstr,'_blank')
|
}
|
|
const goIndex = () => {
|
// sessionStorage.setItem("redirectPath", $meth.circularSafeStringify($route))
|
// console.log($route);
|
$meth.gourl("/")
|
}
|
</script>
|
<style scoped lang="scss">
|
.mainbg {
|
background:
|
|
url('@/static/img/mainbg.png') center/cover no-repeat;
|
}
|
</style>
|