AppBottom.vue
3.46 KB
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<template>
<div class="footAll">
<div class="box" style="max-width: 90%">
<el-row align="middle" justify="space-between">
<el-col :span="18">
<div class="text-center copyright pd10">{{ languageLibrary[language].a }}
<!-- <a href="https://beian.miit.gov.cn/" target="_blank">ICP备案号:苏ICP备2023054420号-2</a>-->
</div>
</el-col>
<el-col :span="6">
<div>
<img alt="" src="@/assets/pc/logo.png">
</div>
</el-col>
</el-row>
</div>
</div>
</template>
<script setup>
import {useStorage} from "@vueuse/core/index";
import {useRouter} from "vue-router";
import {ElMessage} from "element-plus";
const router = useRouter()
const language = useStorage('language', 1)
const languageLibrary = [{
a:'版权所有@ LONG POKER INC. ALL RIGHT RESERVED',
},{
a:'COPYRIGHT @ LONG POKER INC. ALL RIGHT RESERVED',
},{
a:'저작권 @ LONG POKER INC. All Rights Reserved.',
},{
a:'著作権 © LONG POKER INC. All Rights Reserved.',
},{
a:'Bản quyền thuộc về @ LONG POKER INC.-Giữ toàn bản quyền.',
}]
const goHelp = () => {
router.push({
path: `/news/list/20000100`,
query: {
kindName: language.value === 0 ? '操作指引' : 'Video Guide'
}
})
}
const goHelpZH = () => {
// ElMessage.success('已下载文件')
router.push({
name: 'guide',
query: {
index: 8
}
})
}
const goAround = () => {
//周边活动
router.push({path: `/about/wuDao`, query: {activeIndex: '2'}})
}
</script>
<style lang="scss" scoped>
.kf {
width: 45px;
margin: auto;
height: auto;
//animation: pop 2s infinite;
}
.fixed-right {
position: fixed;
right: 0;
top: 65%;
z-index: 9;
.mlb {
background: #fff;
border-radius: 10px 0 0 10px;
box-shadow: 0 2px 8px #aaa;
padding: 10px 8px;
text-align: center;
cursor: pointer;
div {
text-transform: uppercase;
}
div:first-child {
border-bottom: 0.5px solid #eee;
//padding: 0 0 10px;margin-bottom: 10px;
}
div:hover {
.gradient-text {
font-weight: bold;
}
}
}
}
.footAll {
//background: #E0E3E5;
background: #1f2644;
padding: 36px 0 5px;
p {
font-size: 14px;
opacity: 0.88;
color: #4C5359;
}
ul {
list-style: none;
li {
line-height: 30px;
font-size: 14px;
opacity: 1;
color: #fff;
a {
margin-left: 15px;
&:hover {
text-decoration: underline;
}
}
}
}
img {
height: 60px;
margin-bottom: 20px;
}
}
.copyright {
font-size: 14px;
//opacity: 0.88;
color: #fff;
}
.gradient-text {
font-family: FZJunHeiS-B-GB;
font-weight: 600;
font-size: 17px;
background: linear-gradient(0deg, #8226FC 0%, #483BEB 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@media (max-width: 500px) {
.forWei {
display: none;
}
.footAll {
padding: 10px 0;
ul {
li {
font-size: 10px;
line-height: 1.4;
}
}
img {
height: 36px;
margin-bottom: 0;
}
p {
font-size: 10px;
line-height: 1.4;
}
.copyright {
font-size: 10px;
line-height: 1.4;
}
}
}
.ffoot {
display: inline-flex;
img {
width: 20px;
height: 20px;
display: inline-block;
position: relative;
top: 4px;
margin-right: 4px;
}
}
</style>