-
zhangwei
2025-12-22 96bd45d3013d0d84ee62ae1bcf8bee217035b384
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
<template>
  <div class="content chuany-font14">
    <div class="chuany-flex chuany-justify-between chuany-align-center chuany-paddingtop-20">
      <div>
        <div>  <span class="chuany-font22">客服热线</span>  </div>
        <div class="chuany-margintop-14 chuany-flex chuany-align-center chuany-justify-center chuany-font26" style="color: #8C8C8C;">
          <!-- <img :src="phoneicon"  alt=""> -->
          <el-image style="width: 31px; height: 31px;padding: 5px 5px 0 0;" :src="phoneicon" ></el-image>
          <div  class="chuany-marginright-34 ">028-83333222</div>
          <div>028-83333226</div>
        </div>
      </div>
 
      <div>
        <p class="chuany-font22">关注我们:</p>
        <div class="chuany-margintop-14">
          <el-popover placement="top" width="280" trigger="click">
            <template #reference>
              <el-image style="width: 63px; height: 63px;margin-right: 15px;" :src="qrcode1" class="cursor-pointer"></el-image>
            </template>
            <el-image style="width: 250px; height: 250px;" :src="qrcode1plus" ></el-image>
          </el-popover>
          <el-popover placement="top" width="280" trigger="click">
            <template #reference>
              <el-image style="width: 63px; height: 63px;margin-right: 15px;" :src="qrcode2" class="cursor-pointer"></el-image>
            </template>
            <el-image style="width: 250px; height: 250px;" :src="qrcode2plus"></el-image>
          </el-popover>
          <el-popover placement="top" width="280" trigger="click">
            <template #reference>
              <el-image style="width: 63px; height: 63px;" :src="qrcode3" class="cursor-pointer"></el-image>
            </template>
            <el-image style="width: 250px; height: 250px;" :src="qrcode3plus" ></el-image>
          </el-popover>
          
        </div>
      </div>
    </div>
    <el-divider/>
    <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>
  </div>
</template>
 
 
<script  setup>
const { $route, $message, $meth } = getCurrentInstance().appContext.config.globalProperties
import $store from "@/store/index.js";
import { logout } from '@/api/login.js';
import logo from '@/static/img/logo.png'
import { Phone } from '@element-plus/icons-vue'
import qrcode1 from '@/assets/qrcode1.png'
import qrcode2 from '@/assets/qrcode2.png'
import qrcode1plus from '@/assets/qrcode1-plus.png'
import qrcode2plus from '@/assets/qrcode2-plus.png'
import qrcode3plus from '@/assets/qrcode3-plus.png'
import qrcode3 from '@/assets/qrcode3.png'
import phoneicon from '@/assets/phone-icon.png'
const goLink = ()=>{
  window.open('https://beian.miit.gov.cn/#/Integrated/index','_blank')
}
</script>
<style scoped>
.golink{
  cursor: pointer;
}
.el-divider{
  color:#8C8C8C;
  border-top: solid 1px #8C8C8C ;
}
 
</style>