-
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<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 pt-10 pb-20 ">
    <div v-for="(item,index) in images" :key="index">
      <p class="font-['Source_Han_Sans_CN_VF'] font-bold text-[40px] leading-[50px] tracking-[10%] text-center align-middle capitalize pt-10" style="color:#000;">{{item.name}}</p>
      <p class="font-['Source_Han_Sans_SC'] font-normal text-[20px] leading-[38px] tracking-[20%] text-center capitalize text-[#696969] p-10" >{{ item.text }}</p>
      <div class="content flex flex-between flex-wrap" >
        <el-image :src="url" v-for="(url,index) in item.urls" :key="index"  style="width: 585.75px; height: 423.79px" class=" content mt-12 mr-auto"></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";
import shijuan1 from '@/static/img/shijuan1.png'
import shijuan2 from '@/static/img/shijuan2.png'
import shijuan3 from '@/static/img/shijuan3.png'
import shijuan4 from '@/static/img/shijuan4.png'
import shijuan5 from '@/static/img/shijuan5.png'
import shijuan6 from '@/static/img/shijuan6.png'
import shijuan7 from '@/static/img/shijuan7.png'
import shijuan8 from '@/static/img/shijuan8.png'
const data = reactive({
  activeName: "1",
  gettab4: {}
})
const images = ref([{
    urls: [shijuan1,shijuan2],
    name: "中考试卷",
    text:'印制规范严谨,确保安全保密,用心服务教学测评'
}, {
    urls: [shijuan3,shijuan4,shijuan5,shijuan6],
    name: "中小学期末检测试卷",
    text:'印制规范严谨,确保安全保密,用心服务教学测评'
}, 
{
    urls: [shijuan7,shijuan8],
    name: "高校试卷",
    text:'印制规范严谨,确保安全保密,用心服务教学测评'
},
])
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>