adata-ui 0.3.9 → 0.3.12
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/README.md +7 -7
- package/babel.config.js +5 -5
- package/dist/adata-ui.common.js +49 -5546
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +49 -5546
- 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/package-lock.json +1 -1
- package/package.json +1 -1
- package/public/index.html +17 -17
- package/src/App.vue +9 -4
- package/src/assets/_text_field.scss +0 -1
- package/src/components/ErrorPages/BadGateway.vue +2 -1
- package/src/components/ErrorPages/InternalServerError.vue +229 -223
- package/src/components/ErrorPages/NotFound.vue +1 -1
- package/src/components/Footer/Footer.vue +42 -9
- package/src/components/Header/Header.vue +2 -7
- package/src/components/index.js +10 -10
- package/src/configs/profileDropDown.js +1 -1
|
@@ -896,7 +896,7 @@
|
|
|
896
896
|
<h3 class="title">404</h3>
|
|
897
897
|
<p class="title-bottom">Запрашиваемая страница не найдена</p>
|
|
898
898
|
<p class="text">Похоже вы допустили опечатку, набирая адрес, или воспользовались неисправной ссылкой.</p>
|
|
899
|
-
<p class="text"
|
|
899
|
+
<p class="text">Чтобы найти нужную информацию, воспользуйтесь формой поиска на главной странице.</p>
|
|
900
900
|
</div>
|
|
901
901
|
<div class="error__info__button">
|
|
902
902
|
<a-button variant="yellow" size="sm" nuxt-url="/">Перейти на главную</a-button>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<footer class="a-footer" :class="[{'paddinged': hasBottomMenu}]">
|
|
3
3
|
<div class="a-footer__top">
|
|
4
4
|
<div class="nav">
|
|
5
|
-
<a class="
|
|
5
|
+
<a class="adata-logo" href="https://adata.kz">
|
|
6
6
|
<svg fill="#2C3E50" xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
viewBox="0 0 166 48" version="1.1">
|
|
8
8
|
<path
|
|
@@ -64,12 +64,20 @@
|
|
|
64
64
|
<a href="https://adata.kz/vacancy" class="nav__item nav__link">
|
|
65
65
|
Вакансии
|
|
66
66
|
</a>
|
|
67
|
+
<a href="https://pk.adata.kz/counterparty" class="nav__item nav__link desktop">
|
|
68
|
+
Каталог предприятий
|
|
69
|
+
</a>
|
|
67
70
|
<a href="https://adata.kz/contacts" class="nav__item nav__link">
|
|
68
71
|
Контакты
|
|
69
72
|
</a>
|
|
70
73
|
</div>
|
|
71
74
|
</div>
|
|
72
|
-
<div class="a-footer__bottom"
|
|
75
|
+
<div class="a-footer__bottom">
|
|
76
|
+
<span>2022 © ТОО "Alldata"</span>
|
|
77
|
+
<a href="https://pk.adata.kz/counterparty" class="a-footer__bottom__link mobile">
|
|
78
|
+
Каталог предприятий
|
|
79
|
+
</a>
|
|
80
|
+
</div>
|
|
73
81
|
</footer>
|
|
74
82
|
</template>
|
|
75
83
|
|
|
@@ -115,10 +123,7 @@ a {
|
|
|
115
123
|
}
|
|
116
124
|
|
|
117
125
|
&__top {
|
|
118
|
-
|
|
119
|
-
justify-content: space-between;
|
|
120
|
-
max-width: 900px;
|
|
121
|
-
width: 100%;
|
|
126
|
+
|
|
122
127
|
margin: 0 auto;
|
|
123
128
|
padding: 20px 24px;
|
|
124
129
|
@media(max-width: 1025px) {
|
|
@@ -137,11 +142,13 @@ a {
|
|
|
137
142
|
}
|
|
138
143
|
}
|
|
139
144
|
|
|
145
|
+
|
|
140
146
|
.nav {
|
|
141
147
|
width: 100%;
|
|
142
148
|
display: flex;
|
|
143
|
-
justify-content:
|
|
149
|
+
justify-content: center;
|
|
144
150
|
align-items: center;
|
|
151
|
+
gap: 16px;
|
|
145
152
|
@media(max-width: 1025px) {
|
|
146
153
|
display: grid;
|
|
147
154
|
grid-template-columns: 0.7fr 1fr;
|
|
@@ -156,6 +163,13 @@ a {
|
|
|
156
163
|
font-size: 12px;
|
|
157
164
|
}
|
|
158
165
|
|
|
166
|
+
}
|
|
167
|
+
.desktop {
|
|
168
|
+
display: block;
|
|
169
|
+
@media(max-width: 1025px) {
|
|
170
|
+
display: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
159
173
|
&:hover {
|
|
160
174
|
color: #9da3ac;
|
|
161
175
|
}
|
|
@@ -240,6 +254,8 @@ a {
|
|
|
240
254
|
background: #EFEFF0;
|
|
241
255
|
border: none;
|
|
242
256
|
border-top: 1px solid #bdc7ce;
|
|
257
|
+
display: grid;
|
|
258
|
+
gap: 8px;
|
|
243
259
|
}
|
|
244
260
|
|
|
245
261
|
span {
|
|
@@ -247,11 +263,27 @@ a {
|
|
|
247
263
|
line-height: 12px;
|
|
248
264
|
color: #71757a;
|
|
249
265
|
@media(max-width: 1025px) {
|
|
250
|
-
font-size:
|
|
251
|
-
line-height:
|
|
266
|
+
font-size: 12px;
|
|
267
|
+
line-height: 20px;
|
|
268
|
+
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&__link {
|
|
273
|
+
font-size: 12px;
|
|
274
|
+
line-height: 20px;
|
|
275
|
+
color: #71757a;
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
}
|
|
279
|
+
.mobile {
|
|
280
|
+
display: none;
|
|
281
|
+
@media(max-width: 1025px) {
|
|
282
|
+
display: block;
|
|
252
283
|
}
|
|
253
284
|
}
|
|
254
285
|
}
|
|
286
|
+
|
|
255
287
|
}
|
|
256
288
|
|
|
257
289
|
.mobile-head-wrapper {
|
|
@@ -259,4 +291,5 @@ a {
|
|
|
259
291
|
justify-content: space-between;
|
|
260
292
|
align-items: center;
|
|
261
293
|
}
|
|
294
|
+
|
|
262
295
|
</style>
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
{{ item.name }}
|
|
50
50
|
</a>
|
|
51
51
|
</div>
|
|
52
|
-
<div v-show="hasSearchField
|
|
53
|
-
<div
|
|
52
|
+
<div v-show="hasSearchField" class="mobile-search">
|
|
53
|
+
<div @click="$emit('search')" class="search-input">
|
|
54
54
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
55
55
|
<path d="M14 13.9995L10.5967 10.596" stroke="#2C3E50" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
56
56
|
<circle cx="7" cy="7" r="5" stroke="#2C3E50" stroke-linecap="round" stroke-linejoin="round"/>
|
|
@@ -1124,7 +1124,6 @@ export default {
|
|
|
1124
1124
|
@media (max-width: 1025px) {
|
|
1125
1125
|
display: flex;
|
|
1126
1126
|
align-items: center;
|
|
1127
|
-
justify-content: flex-end;
|
|
1128
1127
|
gap: 8px;
|
|
1129
1128
|
width: 100%;
|
|
1130
1129
|
}
|
|
@@ -1142,10 +1141,6 @@ export default {
|
|
|
1142
1141
|
line-height: 20px;
|
|
1143
1142
|
cursor: pointer;
|
|
1144
1143
|
}
|
|
1145
|
-
a {
|
|
1146
|
-
height: 100%;
|
|
1147
|
-
max-height: 100%;
|
|
1148
|
-
}
|
|
1149
1144
|
.favorite-btn {
|
|
1150
1145
|
background: rgba(189, 199, 206, 0.2);
|
|
1151
1146
|
display: flex;
|
package/src/components/index.js
CHANGED
|
@@ -12,11 +12,11 @@ import ASearchTextField from "./SearchTextField/SearchTextField";
|
|
|
12
12
|
import AMailTo from "./MailTo/MailTo";
|
|
13
13
|
import ATable from "./Table/ATable";
|
|
14
14
|
import ALoader from "./Loader/Loader";
|
|
15
|
-
import ABadGateway from "./ErrorPages/BadGateway";
|
|
16
|
-
import AForbidden from "./ErrorPages/Forbidden";
|
|
17
|
-
import AInternalServerError from "./ErrorPages/InternalServerError";
|
|
18
|
-
import ANotFound from "./ErrorPages/NotFound";
|
|
19
|
-
import AUnavailable from "./ErrorPages/Unavailable";
|
|
15
|
+
// import ABadGateway from "./ErrorPages/BadGateway";
|
|
16
|
+
// import AForbidden from "./ErrorPages/Forbidden";
|
|
17
|
+
// import AInternalServerError from "./ErrorPages/InternalServerError";
|
|
18
|
+
// import ANotFound from "./ErrorPages/NotFound";
|
|
19
|
+
// import AUnavailable from "./ErrorPages/Unavailable";
|
|
20
20
|
|
|
21
21
|
const Components = {
|
|
22
22
|
ACheckbox,
|
|
@@ -32,11 +32,11 @@ const Components = {
|
|
|
32
32
|
ATable,
|
|
33
33
|
ALoader,
|
|
34
34
|
ACheckboxMenu,
|
|
35
|
-
ABadGateway,
|
|
36
|
-
AForbidden,
|
|
37
|
-
AInternalServerError,
|
|
38
|
-
ANotFound,
|
|
39
|
-
AUnavailable,
|
|
35
|
+
// ABadGateway,
|
|
36
|
+
// AForbidden,
|
|
37
|
+
// AInternalServerError,
|
|
38
|
+
// ANotFound,
|
|
39
|
+
// AUnavailable,
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
Object.keys(Components).forEach((name) => {
|
|
@@ -20,7 +20,7 @@ export const profileDropDown = [
|
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
id: 3,
|
|
23
|
-
name: "
|
|
23
|
+
name: "История платежей",
|
|
24
24
|
dev: "https://adtdev.kz/profile?tab=payments",
|
|
25
25
|
staging: "https://adada.kz/profile?tab=payments",
|
|
26
26
|
prod: "https://adata.kz/profile?tab=payments",
|