adata-ui 0.3.93 → 0.3.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adata-ui.common.js +476 -27
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +476 -27
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/dist/img/expand-window.39c851da.svg +3 -0
- package/dist/img/linkedIn.607d9542.svg +13 -0
- package/dist/img/location.807c7100.svg +4 -0
- package/dist/img/mail.e4826575.svg +3 -0
- package/dist/img/phone.ae6c1746.svg +3 -0
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/src/App.vue +3 -0
- package/src/assets/expand-window.svg +3 -0
- package/src/assets/linkedIn.svg +13 -0
- package/src/assets/location.svg +4 -0
- package/src/assets/mail.svg +3 -0
- package/src/assets/phone.svg +3 -0
- package/src/components/index.js +2 -0
- package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +221 -0
- package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +421 -0
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
|
|
3
|
+
import FooterAccordion from "@/components/newComponents/FooterRedesign/FooterAccordion.vue";
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
name: "FooterRedesign",
|
|
7
|
+
components: {FooterAccordion},
|
|
8
|
+
data() {
|
|
9
|
+
return {
|
|
10
|
+
main: {
|
|
11
|
+
dev: "adtdev.kz",
|
|
12
|
+
prod: "adata.kz",
|
|
13
|
+
staging: "adada.kz",
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
computed: {
|
|
18
|
+
environment() {
|
|
19
|
+
return this.main[this.mode];
|
|
20
|
+
},
|
|
21
|
+
services() {
|
|
22
|
+
return {
|
|
23
|
+
title: 'Сервисы',
|
|
24
|
+
link: `https://${this.environment}/all-services`,
|
|
25
|
+
items: [
|
|
26
|
+
[
|
|
27
|
+
{
|
|
28
|
+
title: 'Контрагенты',
|
|
29
|
+
link: `https://pk.${this.environment}`
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
title: 'Штрафы',
|
|
33
|
+
link: `https://avto.${this.environment}`
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
title: 'Работа',
|
|
37
|
+
link: `https://work.${this.environment}`
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
title: 'Аналитика',
|
|
41
|
+
link: `https://analytics-new.${this.environment}`
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
title: 'Тендеры',
|
|
45
|
+
link: `https://tender.${this.environment}`
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
{
|
|
50
|
+
title: 'Комплаенс',
|
|
51
|
+
link: `https://compliance.${this.environment}`,
|
|
52
|
+
isNew: true
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
title: 'ЭДО',
|
|
56
|
+
link: `https://edo.${this.environment}`,
|
|
57
|
+
isNew: true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
title: 'ВЭД',
|
|
61
|
+
link: `https://fea.${this.environment}`,
|
|
62
|
+
isNew: true
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
useful() {
|
|
69
|
+
return {
|
|
70
|
+
title: 'Полезное',
|
|
71
|
+
link: `https://${this.environment}/useful/terms-of-usage`,
|
|
72
|
+
items: [
|
|
73
|
+
{
|
|
74
|
+
title: 'Описание API',
|
|
75
|
+
link: `https://${this.environment}/api-description`
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
title: 'Пользовательское соглашение',
|
|
79
|
+
link: `https://${this.environment}/user-agreements`
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
title: 'Политика конфиденциальности',
|
|
83
|
+
link: `https://${this.environment}/privacy-policy`
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
title: 'Вакансии',
|
|
87
|
+
link: `https://${this.environment}/vacancy`
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
title: 'Каталог предприятий',
|
|
91
|
+
link: `https://pk.${this.environment}/counterparty`
|
|
92
|
+
},
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
</script>
|
|
100
|
+
|
|
101
|
+
<template>
|
|
102
|
+
<footer class="footer">
|
|
103
|
+
<div class="container">
|
|
104
|
+
<div class="container__web">
|
|
105
|
+
<div class="socials-desktop">
|
|
106
|
+
<span class="logo" />
|
|
107
|
+
|
|
108
|
+
<p class="socials-text">
|
|
109
|
+
Единое решение для деловых задач
|
|
110
|
+
</p>
|
|
111
|
+
|
|
112
|
+
<div class="socials-list">
|
|
113
|
+
<a href="" class="linkedIn"/>
|
|
114
|
+
<a href="https://www.youtube.com/channel/UCPkbtgwgTZbMJXjmTi3R8Uw/featured" class="youtube"/>
|
|
115
|
+
<a href="https://www.instagram.com/adata.kz/?igshid=253i4qxg3els" class="instagram"/>
|
|
116
|
+
<a href="https://t.me/adatakz_official" class="telegram"/>
|
|
117
|
+
<a href="https://www.facebook.com/adata.kz" class="facebook"/>
|
|
118
|
+
<a href="https://www.tiktok.com/@adata.kz?lang=ru-RU" class="tiktok"/>
|
|
119
|
+
</div>
|
|
120
|
+
</div>
|
|
121
|
+
|
|
122
|
+
<p class="footer__copyright">
|
|
123
|
+
{{ new Date().getFullYear() }} © ТОО "Alldata"
|
|
124
|
+
</p>
|
|
125
|
+
</div>
|
|
126
|
+
|
|
127
|
+
<div class="footer__items">
|
|
128
|
+
<div class="main-items">
|
|
129
|
+
<footer-accordion
|
|
130
|
+
:label="services.title"
|
|
131
|
+
:link="services.link"
|
|
132
|
+
:content="services.items"
|
|
133
|
+
/>
|
|
134
|
+
<footer-accordion
|
|
135
|
+
:label="useful.title"
|
|
136
|
+
:link="useful.link"
|
|
137
|
+
:content="[useful.items]"
|
|
138
|
+
/>
|
|
139
|
+
</div>
|
|
140
|
+
|
|
141
|
+
<div class="contacts">
|
|
142
|
+
<a
|
|
143
|
+
class="contacts-header"
|
|
144
|
+
:href="`https://${this.environment}/contacts`"
|
|
145
|
+
>
|
|
146
|
+
Контакты
|
|
147
|
+
</a>
|
|
148
|
+
|
|
149
|
+
<div class="contacts-items">
|
|
150
|
+
<div class="contacts-item">
|
|
151
|
+
<a
|
|
152
|
+
class="contacts-link"
|
|
153
|
+
href="https://go.2gis.com/30j2f"
|
|
154
|
+
>
|
|
155
|
+
<span class="contacts-icon icon-location" />
|
|
156
|
+
<p class="contacts-title">Казахстан, г. Алматы, ул.Ходжанова, 79</p>
|
|
157
|
+
</a>
|
|
158
|
+
</div>
|
|
159
|
+
|
|
160
|
+
<div class="contacts-item">
|
|
161
|
+
<a
|
|
162
|
+
class="contacts-link"
|
|
163
|
+
href="tel:+77471203467"
|
|
164
|
+
>
|
|
165
|
+
<span class="contacts-icon icon-phone" />
|
|
166
|
+
<p class="contacts-title">+7 (747) 120 34 67</p>
|
|
167
|
+
</a>
|
|
168
|
+
</div>
|
|
169
|
+
|
|
170
|
+
<div class="contacts-item">
|
|
171
|
+
<a
|
|
172
|
+
class="contacts-link"
|
|
173
|
+
href="mailto:info@adata.kz"
|
|
174
|
+
>
|
|
175
|
+
<span class="contacts-icon icon-mail" />
|
|
176
|
+
<p class="contacts-title">info@adata.kz</p>
|
|
177
|
+
</a>
|
|
178
|
+
</div>
|
|
179
|
+
|
|
180
|
+
<div class="contacts-item">
|
|
181
|
+
<a
|
|
182
|
+
class="contacts-link"
|
|
183
|
+
href="https://api.whatsapp.com/send?phone=77712289041"
|
|
184
|
+
>
|
|
185
|
+
<p class="contacts-title">Перейти в чат с поддержкой</p>
|
|
186
|
+
<span class="contacts-icon icon-expand-window" />
|
|
187
|
+
</a>
|
|
188
|
+
</div>
|
|
189
|
+
</div>
|
|
190
|
+
|
|
191
|
+
</div>
|
|
192
|
+
</div>
|
|
193
|
+
|
|
194
|
+
<div class="socials-mobile">
|
|
195
|
+
<a href="" class="linkedIn"/>
|
|
196
|
+
<a href="https://www.youtube.com/channel/UCPkbtgwgTZbMJXjmTi3R8Uw/featured" class="youtube"/>
|
|
197
|
+
<a href="https://www.instagram.com/adata.kz/?igshid=253i4qxg3els" class="instagram"/>
|
|
198
|
+
<a href="https://t.me/adatakz_official" class="telegram"/>
|
|
199
|
+
<a href="https://www.facebook.com/adata.kz" class="facebook"/>
|
|
200
|
+
<a href="https://www.tiktok.com/@adata.kz?lang=ru-RU" class="tiktok"/>
|
|
201
|
+
</div>
|
|
202
|
+
|
|
203
|
+
<p class="copyright-mobile">
|
|
204
|
+
{{ new Date().getFullYear() }} © ТОО "Alldata"
|
|
205
|
+
</p>
|
|
206
|
+
</div>
|
|
207
|
+
</footer>
|
|
208
|
+
</template>
|
|
209
|
+
|
|
210
|
+
<style lang="scss" scoped>
|
|
211
|
+
.footer {
|
|
212
|
+
background: #2C3E50;
|
|
213
|
+
border-top-left-radius: 24px;
|
|
214
|
+
border-top-right-radius: 24px;
|
|
215
|
+
padding: 16px 0;
|
|
216
|
+
@media (min-width: 1180px) {
|
|
217
|
+
padding: 20px 0;
|
|
218
|
+
}
|
|
219
|
+
&__copyright {
|
|
220
|
+
display: none;
|
|
221
|
+
font-size: 10px;
|
|
222
|
+
@media (min-width: 1180px) {
|
|
223
|
+
display: block;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
&__items {
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
gap: 24px;
|
|
230
|
+
@media (min-width: 1180px) {
|
|
231
|
+
flex-direction: row;
|
|
232
|
+
gap: 75px;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.container {
|
|
238
|
+
color: white;
|
|
239
|
+
display: flex;
|
|
240
|
+
width: 100%;
|
|
241
|
+
flex-direction: column;
|
|
242
|
+
justify-content: space-between;
|
|
243
|
+
gap: 32px;
|
|
244
|
+
max-width: 1180px;
|
|
245
|
+
margin: 0 calc((100vw - 1180px)/2);
|
|
246
|
+
padding: 40px 20px 20px;
|
|
247
|
+
@media (min-width: 1180px) {
|
|
248
|
+
flex-direction: row;
|
|
249
|
+
}
|
|
250
|
+
@media (max-width: 1140px) {
|
|
251
|
+
margin: 0 auto;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
&__web {
|
|
255
|
+
display: flex;
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
gap: 32px;
|
|
258
|
+
justify-content: space-between;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.main-items {
|
|
263
|
+
display: flex;
|
|
264
|
+
gap: 18px;
|
|
265
|
+
flex-direction: column;
|
|
266
|
+
@media (min-width: 1180px) {
|
|
267
|
+
flex-direction: row;
|
|
268
|
+
gap: 75px;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.copyright-mobile {
|
|
273
|
+
display: block;
|
|
274
|
+
font-size: 10px;
|
|
275
|
+
@media (min-width: 1180px) {
|
|
276
|
+
display: none;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.logo {
|
|
281
|
+
display: inline-block;
|
|
282
|
+
width: 90px;
|
|
283
|
+
height: 26px;
|
|
284
|
+
background-image: url("~@/assets/logo-white-desktop.svg");
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.socials-desktop {
|
|
288
|
+
display: flex;
|
|
289
|
+
flex-direction: column;
|
|
290
|
+
gap: 16px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.socials-mobile {
|
|
294
|
+
display: flex;
|
|
295
|
+
gap: 32px;
|
|
296
|
+
flex-wrap: wrap;
|
|
297
|
+
@media (min-width: 1180px) {
|
|
298
|
+
display: none;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.socials-text {
|
|
303
|
+
font-size: 14px;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.socials-list {
|
|
307
|
+
display: none;
|
|
308
|
+
@media (min-width: 1180px) {
|
|
309
|
+
display: flex;
|
|
310
|
+
gap: 32px;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.contacts {
|
|
315
|
+
display: flex;
|
|
316
|
+
flex-direction: column;
|
|
317
|
+
gap: 8px;
|
|
318
|
+
align-items: start;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.contacts-header {
|
|
322
|
+
font-size: 14px;
|
|
323
|
+
font-weight: 600;
|
|
324
|
+
padding-bottom: 12px;
|
|
325
|
+
padding-right: 16px;
|
|
326
|
+
cursor: pointer;
|
|
327
|
+
border-bottom: 0.5px solid white;
|
|
328
|
+
color: white;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.contacts-items {
|
|
332
|
+
display: flex;
|
|
333
|
+
flex-direction: column;
|
|
334
|
+
gap: 12px;
|
|
335
|
+
@media (min-width: 1180px) {
|
|
336
|
+
gap: 8px;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.contacts-item {
|
|
341
|
+
display: flex;
|
|
342
|
+
align-items: center;
|
|
343
|
+
gap: 8px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.contacts-link {
|
|
347
|
+
display: flex;
|
|
348
|
+
font-size: 12px;
|
|
349
|
+
font-weight: 500;
|
|
350
|
+
gap: 8px;
|
|
351
|
+
align-items: center;
|
|
352
|
+
cursor: pointer;
|
|
353
|
+
color: white;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.icon-location {
|
|
357
|
+
width: 16px;
|
|
358
|
+
height: 16px;
|
|
359
|
+
background-image: url('~@/assets/location.svg');
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.icon-phone {
|
|
363
|
+
width: 16px;
|
|
364
|
+
height: 16px;
|
|
365
|
+
background-image: url('~@/assets/phone.svg');
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.icon-mail {
|
|
369
|
+
width: 16px;
|
|
370
|
+
height: 16px;
|
|
371
|
+
background-image: url('~@/assets/mail.svg');
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.icon-expand-window {
|
|
375
|
+
width: 16px;
|
|
376
|
+
height: 16px;
|
|
377
|
+
background-image: url('~@/assets/expand-window.svg');
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.linkedIn {
|
|
381
|
+
width: 28px;
|
|
382
|
+
height: 28px;
|
|
383
|
+
background-image: url('~@/assets/linkedIn.svg');
|
|
384
|
+
cursor: pointer;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.youtube {
|
|
388
|
+
width: 28px;
|
|
389
|
+
height: 28px;
|
|
390
|
+
background-image: url('~@/assets/youtube.svg');
|
|
391
|
+
cursor: pointer;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.instagram {
|
|
395
|
+
width: 28px;
|
|
396
|
+
height: 28px;
|
|
397
|
+
background-image: url('~@/assets/instagram.svg');
|
|
398
|
+
cursor: pointer;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.telegram {
|
|
402
|
+
width: 28px;
|
|
403
|
+
height: 28px;
|
|
404
|
+
background-image: url('~@/assets/telegram.svg');
|
|
405
|
+
cursor: pointer;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.facebook {
|
|
409
|
+
width: 28px;
|
|
410
|
+
height: 28px;
|
|
411
|
+
background-image: url('~@/assets/facebook.svg');
|
|
412
|
+
cursor: pointer;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.tiktok {
|
|
416
|
+
width: 28px;
|
|
417
|
+
height: 28px;
|
|
418
|
+
background-image: url('~@/assets/tiktok.svg');
|
|
419
|
+
cursor: pointer;
|
|
420
|
+
}
|
|
421
|
+
</style>
|