zhangwei
2025-12-23 58f8f8dcc6b0a86eb7ed3d4b8acb7778614a0213
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<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-[#696969] content">
            <div class="chuany-flex chuany-flex-wrap chuany-justify-between " style="margin: 0 auto;">
                <div v-for="(item, index) in images" :key="index" class="chuany-paddingbottom-20">
                    <div class="flex chuany-flex-wrap justify-center ml-6" :class="item.url.includes('1')?'w-[372.37px] h-[419.91px]':'w-[372.37px] h-[320px]'">
                        <el-image :src="item.url" :preview-src-list="[item.url]" fit="cover" :class="item.url.includes('small')||'w-[290px]'"
                            ></el-image>
                        <p class="font-['Source_Han_Sans_SC'] text-center mt-3 ">{{ item.name }}</p>
                    </div>
                </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 yingyezhizhao from '@/static/img/smallyingyezhizhao.png'
import dengji from '@/static/img/smalldengji.png'
import chuban from '@/static/img/smallchuban.png'
import dianzi from '@/static/img/smalldianzi.png'
import shifan from '@/static/img/smallshifan.png'
import shouxin from '@/static/img/smallshouxin.png'
import zz1biaozhi from '@/static/img/zz1biaozhi.png'
import shengchan from '@/static/img/shengchan1.png'
import ertong from '@/static/img/ertong1.png'
import zhiliang from '@/static/img/zhiliang1.png'
import huanjing from '@/static/img/huanjing1.png'
import jiankang from '@/static/img/jiankang1.png'
import youmo from '@/static/img/youmo1.png'
import jingshi from '@/static/img/jingshi1.png'
import yinshua from '@/static/img/yinshua1.png'
const images = ref([{
    url: yingyezhizhao,
    name: "企业营业执照"
}, {
    url: dengji,
    name: "企业集团登记证"
}, 
 {
    url: chuban,
    name: "出版物印刷许可证"
},{
    url: shifan,
    name: "四川省诚信守法示范企业"
},{
    url: dianzi,
    name: "成都市创新型电子商务企业"
},{
    url: shouxin,
    name: "“守合同重信用”企业公示证明"
},{
    url: zz1biaozhi,
    name: "中国环境标志产品认证证书"
}, {
    url: shengchan,
    name: "安全生产标准化证书"
}, {
    url: ertong,
    name: "儿童青少年学习用品近视防控卫生要求认证"
}, 
{
    url: zhiliang,
    name: "质量管理体系认证证书"
}, 
{
    url: huanjing,
    name: "环境管理体系认证证书"
}, 
{
    url: jiankang,
    name: "职业健康安全管理体系认证证书"
}, 
{
    url: youmo,
    name: "防近视油墨及其制备方法发明专利证书"
}, 
{
    url: jingshi,
    name: "预防近视的书写纸发明专利证书"
}, 
{
    url: yinshua,
    name: "电子印刷计算器发明专利证书"
}, 
])
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/qualification.png') center/cover no-repeat;
}
</style>