<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">
|
<div class="chuany-padding30 text-2xl text-[#696969]">
|
<div class="content font-['Source_Han_Sans_SC'] font-normal text-[20px] leading-[38px] tracking-[4%] text-justify capitalize" style=" text-indent: 40px;">
|
<div class="mt-16 mb-16">
|
<p>川印文化集团股份有限公司简称“川印集团”,于2015年4月经成都市工商行政管理局批准成立,工厂位于成都市蒲江县寿安工业区,距离成都市区60KM、40分钟车程。</p>
|
<p>川印集团具有“涉密文件资料”和“国家统一考试试卷”两个国家秘密载体印制资质,自有3个全封闭式现代化标准涉密印制车间,工厂面积10028㎡。</p>
|
<p>
|
川印集团拥有进口柯达全自动数字制版机、海德堡全开四色印刷机、海德堡全开八色印刷机、对开双面印刷机、对开双面双色轮转印刷机、八色标签印刷机、MBO全自动折页机、阿斯特全自动锁线机、马天尼全自动胶装联动生产线、全自动骑马钉联动生产线、全自动书封面勒口机、全自动塑封机、全自动粘信封机、全自动数纸机、烫金机、压痕机等全系列全新世界顶尖印前、印刷和印后设备,是西南地区设备最先进、最齐全的印刷企业。
|
</p>
|
<p>川印集团专业从事中考试卷、职业资格考试试卷、公务员(事业单位)考试试卷、自主招生考试试卷、高校结业考试试卷等国家统一考试试卷印制,文件、资料、汇编、军事地图等涉密文件资料印制业务。</p>
|
<p>
|
川印集团实行现代企业管理制度,制定了一整套保密印制管理控制体系,严格按照ISO9001质量管理体系、安全生产标准化、职业健康标准化、中国环境标志产品认证标准组织生产管理,结合顶尖的印件设备和优秀的人力资源,确保涉密印制订单“零”失误。
|
</p>
|
<p>川印集团政府采购招投标经验丰富,各种资质、认证齐全,可以为客户提供采购需求编制、采购咨询、履约验收等服务和支持,是广大招生考试、教育研究单位、教务部门、政府机关、军队涉密文件资料印制和涉密考试试卷印制的最佳合作伙伴!
|
</p>
|
</div>
|
<el-image class="h-[100%] w-[100%] mb-16" :src="contentimg"></el-image>
|
</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";
|
|
const data = reactive({
|
activeName: "1",
|
gettab4: {}
|
})
|
|
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>
|