zhangwei
2025-12-23 2fba5f9629b217fcda168fcd945b214002d3c410
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
92
93
94
95
<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>川印集团始创于1999年,至今已有27年印刷从事历史。川印集团具有各种印刷资质、认证和“涉密文件资料”和“国家统一考试试卷”两个国家秘密载体印制资质,自有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>