-
zhangwei
2025-12-19 71ae6f580c5746a93aab3e3b26122491f4c93875
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<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-[30%] 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-[32px] 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>