adata-ui 3.1.46 → 3.1.48
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/module.json +1 -1
- package/dist/runtime/components/header/ProductMenu.vue +34 -24
- package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +29 -20
- package/dist/runtime/i18n/i18n.config.d.ts +51 -3
- package/dist/runtime/icons/akimat.vue +20 -0
- package/dist/runtime/icons/akimat.vue.d.ts +2 -0
- package/dist/runtime/icons/currency/tenge.vue +9 -0
- package/dist/runtime/icons/currency/tenge.vue.d.ts +2 -0
- package/dist/runtime/icons/file/excel-icon.vue +14 -0
- package/dist/runtime/icons/file/excel-icon.vue.d.ts +2 -0
- package/dist/runtime/lang/en.js +19 -3
- package/dist/runtime/lang/kk.js +20 -4
- package/dist/runtime/lang/ru.d.ts +17 -1
- package/dist/runtime/lang/ru.js +19 -3
- package/dist/runtime/shared/constants/pages.d.ts +5 -0
- package/dist/runtime/shared/constants/pages.js +5 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -34,6 +34,10 @@ import IMapPaper from "#icons/map-paper.vue";
|
|
|
34
34
|
import IMapPinRect from "#icons/map-pin-rect.vue";
|
|
35
35
|
import ChartBar from "#icons/chartBar.vue";
|
|
36
36
|
import Bank from "#icons/bank.vue";
|
|
37
|
+
import IAkimat from "#icons/akimat.vue";
|
|
38
|
+
import ICurrencyTenge from "#icons/currency/tenge.vue";
|
|
39
|
+
import IWarningTriangle from "#icons/warning-triangle.vue";
|
|
40
|
+
import IFileExcelIcon from "#icons/file/excel-icon.vue";
|
|
37
41
|
const props = defineProps({
|
|
38
42
|
animation: { type: String, required: false, default: "next" },
|
|
39
43
|
index: { type: Number, required: false, default: 0 },
|
|
@@ -133,34 +137,40 @@ const filteredItems = computed(() => [
|
|
|
133
137
|
to: `https://tender.${mode}.kz`,
|
|
134
138
|
items: [
|
|
135
139
|
{
|
|
136
|
-
title: t("header.products.tenders.items.
|
|
137
|
-
subtitle: t("header.products.tenders.items.
|
|
138
|
-
icon:
|
|
139
|
-
to: `https://zakupki.${mode}.kz` + PAGES.tender.
|
|
140
|
+
title: t("header.products.tenders.items.customers.title"),
|
|
141
|
+
subtitle: t("header.products.tenders.items.customers.subtitle"),
|
|
142
|
+
icon: IUsers,
|
|
143
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.customers
|
|
140
144
|
},
|
|
141
145
|
{
|
|
142
146
|
title: t("header.products.tenders.items.akimat.title"),
|
|
143
147
|
subtitle: t("header.products.tenders.items.akimat.subtitle"),
|
|
144
|
-
icon:
|
|
145
|
-
to: `https://zakupki.${mode}.kz` + PAGES.tender.
|
|
148
|
+
icon: IAkimat,
|
|
149
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.analytics
|
|
146
150
|
},
|
|
147
151
|
{
|
|
148
|
-
title: t("header.products.tenders.items.
|
|
149
|
-
subtitle: t("header.products.tenders.items.
|
|
150
|
-
icon:
|
|
151
|
-
to: `https://
|
|
152
|
+
title: t("header.products.tenders.items.tru.title"),
|
|
153
|
+
subtitle: t("header.products.tenders.items.tru.subtitle"),
|
|
154
|
+
icon: IWarningTriangle,
|
|
155
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.tru
|
|
152
156
|
},
|
|
153
157
|
{
|
|
154
|
-
title: t("header.products.tenders.items.
|
|
155
|
-
subtitle: t("header.products.tenders.items.
|
|
156
|
-
icon:
|
|
157
|
-
to: `https://
|
|
158
|
+
title: t("header.products.tenders.items.price.title"),
|
|
159
|
+
subtitle: t("header.products.tenders.items.price.subtitle"),
|
|
160
|
+
icon: ICurrencyTenge,
|
|
161
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.price
|
|
158
162
|
},
|
|
159
163
|
{
|
|
160
|
-
title: t("header.products.tenders.items.
|
|
161
|
-
subtitle: t("header.products.tenders.items.
|
|
162
|
-
icon:
|
|
163
|
-
to: `https://
|
|
164
|
+
title: t("header.products.tenders.items.constructor.title"),
|
|
165
|
+
subtitle: t("header.products.tenders.items.constructor.subtitle"),
|
|
166
|
+
icon: IFileExcelIcon,
|
|
167
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.constructor
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
title: t("header.products.tenders.items.monitoring.title"),
|
|
171
|
+
subtitle: t("header.products.tenders.items.monitoring.subtitle"),
|
|
172
|
+
icon: ISearch,
|
|
173
|
+
to: `https://tender.${mode}.kz`
|
|
164
174
|
}
|
|
165
175
|
]
|
|
166
176
|
},
|
|
@@ -169,12 +179,12 @@ const filteredItems = computed(() => [
|
|
|
169
179
|
name: t("header.products.analytics.label"),
|
|
170
180
|
icon: IArrowGraphUp,
|
|
171
181
|
items: [
|
|
172
|
-
{
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
},
|
|
182
|
+
// {
|
|
183
|
+
// title: t('header.products.analytics.items.procurement.title'),
|
|
184
|
+
// subtitle: t('header.products.analytics.items.procurement.subtitle'),
|
|
185
|
+
// icon: IClipboardText,
|
|
186
|
+
// to: `https://analytics-new.${mode}.kz` + PAGES.analytics.analysis,
|
|
187
|
+
// },
|
|
178
188
|
{
|
|
179
189
|
title: t("header.products.analytics.items.activity.title"),
|
|
180
190
|
subtitle: t("header.products.analytics.items.activity.subtitle"),
|
|
@@ -27,6 +27,10 @@ import { ref, useI18n, useAppConfig, watch } from "#imports";
|
|
|
27
27
|
import { useCurrentModule } from "../../composables/projectState";
|
|
28
28
|
import ChartBar from "#icons/chartBar.vue";
|
|
29
29
|
import Bank from "#icons/bank.vue";
|
|
30
|
+
import IAkimat from "#icons/akimat.vue";
|
|
31
|
+
import IWarningTriangle from "#icons/warning-triangle.vue";
|
|
32
|
+
import ICurrencyTenge from "#icons/currency/tenge.vue";
|
|
33
|
+
import IFileExcelIcon from "#icons/file/excel-icon.vue";
|
|
30
34
|
const tab = ref(useCurrentModule().value);
|
|
31
35
|
const { t } = useI18n();
|
|
32
36
|
const appConfig = useAppConfig();
|
|
@@ -127,29 +131,34 @@ const sideLinks = {
|
|
|
127
131
|
],
|
|
128
132
|
tenders: [
|
|
129
133
|
{
|
|
130
|
-
icon:
|
|
131
|
-
label:
|
|
132
|
-
link: `https://zakupki.${mode}.kz` + PAGES.tender.
|
|
134
|
+
icon: IUsers,
|
|
135
|
+
label: "header.products.tenders.items.customers.title",
|
|
136
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.customers
|
|
133
137
|
},
|
|
134
138
|
{
|
|
135
|
-
icon:
|
|
136
|
-
label:
|
|
137
|
-
link: `https://zakupki.${mode}.kz` + PAGES.tender.
|
|
139
|
+
icon: IAkimat,
|
|
140
|
+
label: "header.products.tenders.items.akimat.title",
|
|
141
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.analytics
|
|
138
142
|
},
|
|
139
143
|
{
|
|
140
|
-
icon:
|
|
141
|
-
label: "header.products.tenders.items.
|
|
142
|
-
link: `https://tender.${mode}.kz` + PAGES.tender.
|
|
144
|
+
icon: IWarningTriangle,
|
|
145
|
+
label: "header.products.tenders.items.tru.title",
|
|
146
|
+
link: `https://tender.${mode}.kz` + PAGES.tender.tru
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
|
-
icon:
|
|
146
|
-
label: "header.products.tenders.items.
|
|
147
|
-
link: `https://tender.${mode}.kz` + PAGES.tender.
|
|
149
|
+
icon: ICurrencyTenge,
|
|
150
|
+
label: "header.products.tenders.items.price.title",
|
|
151
|
+
link: `https://tender.${mode}.kz` + PAGES.tender.price
|
|
148
152
|
},
|
|
149
153
|
{
|
|
150
|
-
icon:
|
|
151
|
-
label: "header.products.tenders.items.
|
|
152
|
-
link: `https://tender.${mode}.kz` + PAGES.tender.
|
|
154
|
+
icon: IFileExcelIcon,
|
|
155
|
+
label: "header.products.tenders.items.constructor.title",
|
|
156
|
+
link: `https://tender.${mode}.kz` + PAGES.tender.constructor
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
icon: ISearch,
|
|
160
|
+
label: "header.products.tenders.items.monitoring.title",
|
|
161
|
+
link: `https://tender.${mode}.kz`
|
|
153
162
|
}
|
|
154
163
|
],
|
|
155
164
|
fines: [
|
|
@@ -175,11 +184,11 @@ const sideLinks = {
|
|
|
175
184
|
// label: 'header.products.analytics.items.clients.title',
|
|
176
185
|
// link: myLayer.analyticsUrl + PAGES.analytics.clients
|
|
177
186
|
// },
|
|
178
|
-
{
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
},
|
|
187
|
+
// {
|
|
188
|
+
// icon: IReceipt,
|
|
189
|
+
// label: 'header.products.analytics.items.procurement.title',
|
|
190
|
+
// link: `https://analytics-new.${mode}.kz` + PAGES.analytics.main
|
|
191
|
+
// },
|
|
183
192
|
{
|
|
184
193
|
icon: IArrowGraphUp,
|
|
185
194
|
label: "header.products.analytics.items.activity.title",
|
|
@@ -122,7 +122,7 @@ declare const _default: {
|
|
|
122
122
|
tenders: {
|
|
123
123
|
label: string;
|
|
124
124
|
items: {
|
|
125
|
-
|
|
125
|
+
customers: {
|
|
126
126
|
title: string;
|
|
127
127
|
subtitle: string;
|
|
128
128
|
};
|
|
@@ -130,6 +130,22 @@ declare const _default: {
|
|
|
130
130
|
title: string;
|
|
131
131
|
subtitle: string;
|
|
132
132
|
};
|
|
133
|
+
tru: {
|
|
134
|
+
title: string;
|
|
135
|
+
subtitle: string;
|
|
136
|
+
};
|
|
137
|
+
price: {
|
|
138
|
+
title: string;
|
|
139
|
+
subtitle: string;
|
|
140
|
+
};
|
|
141
|
+
constructor: {
|
|
142
|
+
title: string;
|
|
143
|
+
subtitle: string;
|
|
144
|
+
};
|
|
145
|
+
monitoring: {
|
|
146
|
+
title: string;
|
|
147
|
+
subtitle: string;
|
|
148
|
+
};
|
|
133
149
|
tenders: {
|
|
134
150
|
title: string;
|
|
135
151
|
subtitle: string;
|
|
@@ -811,7 +827,7 @@ declare const _default: {
|
|
|
811
827
|
tenders: {
|
|
812
828
|
label: string;
|
|
813
829
|
items: {
|
|
814
|
-
|
|
830
|
+
customers: {
|
|
815
831
|
title: string;
|
|
816
832
|
subtitle: string;
|
|
817
833
|
};
|
|
@@ -819,6 +835,22 @@ declare const _default: {
|
|
|
819
835
|
title: string;
|
|
820
836
|
subtitle: string;
|
|
821
837
|
};
|
|
838
|
+
tru: {
|
|
839
|
+
title: string;
|
|
840
|
+
subtitle: string;
|
|
841
|
+
};
|
|
842
|
+
price: {
|
|
843
|
+
title: string;
|
|
844
|
+
subtitle: string;
|
|
845
|
+
};
|
|
846
|
+
constructor: {
|
|
847
|
+
title: string;
|
|
848
|
+
subtitle: string;
|
|
849
|
+
};
|
|
850
|
+
monitoring: {
|
|
851
|
+
title: string;
|
|
852
|
+
subtitle: string;
|
|
853
|
+
};
|
|
822
854
|
tenders: {
|
|
823
855
|
title: string;
|
|
824
856
|
subtitle: string;
|
|
@@ -1500,7 +1532,7 @@ declare const _default: {
|
|
|
1500
1532
|
tenders: {
|
|
1501
1533
|
label: string;
|
|
1502
1534
|
items: {
|
|
1503
|
-
|
|
1535
|
+
customers: {
|
|
1504
1536
|
title: string;
|
|
1505
1537
|
subtitle: string;
|
|
1506
1538
|
};
|
|
@@ -1508,6 +1540,22 @@ declare const _default: {
|
|
|
1508
1540
|
title: string;
|
|
1509
1541
|
subtitle: string;
|
|
1510
1542
|
};
|
|
1543
|
+
tru: {
|
|
1544
|
+
title: string;
|
|
1545
|
+
subtitle: string;
|
|
1546
|
+
};
|
|
1547
|
+
price: {
|
|
1548
|
+
title: string;
|
|
1549
|
+
subtitle: string;
|
|
1550
|
+
};
|
|
1551
|
+
constructor: {
|
|
1552
|
+
title: string;
|
|
1553
|
+
subtitle: string;
|
|
1554
|
+
};
|
|
1555
|
+
monitoring: {
|
|
1556
|
+
title: string;
|
|
1557
|
+
subtitle: string;
|
|
1558
|
+
};
|
|
1511
1559
|
tenders: {
|
|
1512
1560
|
title: string;
|
|
1513
1561
|
subtitle: string;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<g clip-path="url(#clip0_287_13679)">
|
|
5
|
+
<path d="M19.6002 10.0712H4.40303C3.68304 10.0712 3.37447 9.28688 3.94018 8.91402L11.5387 3.9383C11.679 3.85577 11.8388 3.81226 12.0016 3.81226C12.1644 3.81226 12.3242 3.85577 12.4645 3.9383L20.063 8.91402C20.6288 9.28688 20.3202 10.0712 19.6002 10.0712Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M19.7139 17.1428H4.28537C3.93033 17.1428 3.64252 17.4306 3.64252 17.7856V19.7142C3.64252 20.0692 3.93033 20.357 4.28537 20.357H19.7139C20.0689 20.357 20.3568 20.0692 20.3568 19.7142V17.7856C20.3568 17.4306 20.0689 17.1428 19.7139 17.1428Z" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M5.57111 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M9.8551 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M14.1442 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M18.4282 10.0713V17.1427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="clip0_287_13679">
|
|
14
|
+
<rect width="18" height="18" fill="white" transform="translate(3.00134 3)"/>
|
|
15
|
+
</clipPath>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
18
|
+
</template>
|
|
19
|
+
<script setup lang="ts">
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<path d="M6.85714 5.50375C6.85714 4.83104 7.40248 4.28571 8.07519 4.28571H16.1955C16.8682 4.28571 17.4135 4.83104 17.4135 5.50375C17.4135 6.17646 16.8682 6.7218 16.1955 6.7218H8.07519C7.40248 6.7218 6.85714 6.17646 6.85714 5.50375Z" fill="currentColor"/>
|
|
5
|
+
<path d="M6.85714 11.072C6.85714 10.3993 7.40248 9.85394 8.07519 9.85394H16.1955C16.8682 9.85394 17.4135 10.3993 17.4135 11.072C17.4135 11.7447 16.8682 12.29 16.1955 12.29H13.3534V18.4962C13.3534 19.1689 12.8081 19.7143 12.1353 19.7143C11.4626 19.7143 10.9173 19.1689 10.9173 18.4962V12.29H8.07519C7.40248 12.29 6.85714 11.7447 6.85714 11.072Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
7
|
+
</template>
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
</script>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
<template>
|
|
4
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
+
<path d="M11.3574 15.2141V20.357H13.9288" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M4.92883 15.2141L8.14312 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M8.14312 15.2141L4.92883 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M19.0717 16.0713C18.8951 15.5719 18.3458 15.2141 17.786 15.2141C17.1026 15.2141 16.5002 15.768 16.5002 16.4514C16.5002 16.9836 16.8624 17.4475 17.3788 17.5766L18.1052 17.7582C18.6732 17.9002 19.0717 18.4105 19.0717 18.996V19.0713C19.0717 19.7814 18.4961 20.357 17.786 20.357C17.2262 20.357 16.6768 19.9992 16.5002 19.4998" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M4.92883 12.6427V4.92841C4.92883 4.58742 5.0643 4.2604 5.30541 4.01928C5.54653 3.77816 5.87355 3.6427 6.21455 3.6427H14.5717L19.0717 8.1427V12.6427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M14.5717 3.80341V8.14269H18.9109" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
</svg>
|
|
12
|
+
</template>
|
|
13
|
+
<script setup lang="ts">
|
|
14
|
+
</script>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/dist/runtime/lang/en.js
CHANGED
|
@@ -116,14 +116,30 @@ const EnLocale = {
|
|
|
116
116
|
tenders: {
|
|
117
117
|
label: "Procurement",
|
|
118
118
|
items: {
|
|
119
|
-
|
|
120
|
-
title: "
|
|
121
|
-
subtitle: "
|
|
119
|
+
customers: {
|
|
120
|
+
title: "Participant Analysis",
|
|
121
|
+
subtitle: "Ratings and profiles of participants: specialization, deals and prices, market share and dynamics"
|
|
122
122
|
},
|
|
123
123
|
akimat: {
|
|
124
124
|
title: "Akimat. Reports",
|
|
125
125
|
subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
|
|
126
126
|
},
|
|
127
|
+
tru: {
|
|
128
|
+
title: "Goods, Works and Services Analysis",
|
|
129
|
+
subtitle: "Procurement trends: thematic search, market by items, prices and volumes, total budget and leaders"
|
|
130
|
+
},
|
|
131
|
+
price: {
|
|
132
|
+
title: "Price Analysis",
|
|
133
|
+
subtitle: "Tracking prices for goods, works, and services with smart search and accurate selection for budgeting, margin calculation, and deviation detection"
|
|
134
|
+
},
|
|
135
|
+
constructor: {
|
|
136
|
+
title: "Report Builder",
|
|
137
|
+
subtitle: "Flexible creation and fast export of detailed reports"
|
|
138
|
+
},
|
|
139
|
+
monitoring: {
|
|
140
|
+
title: "Procurement Monitoring",
|
|
141
|
+
subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
|
|
142
|
+
},
|
|
127
143
|
tenders: {
|
|
128
144
|
title: "Tender search",
|
|
129
145
|
subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
|
package/dist/runtime/lang/kk.js
CHANGED
|
@@ -116,13 +116,29 @@ const KkLocale = {
|
|
|
116
116
|
tenders: {
|
|
117
117
|
label: "\u0421\u0430\u0442\u044B\u043F \u0430\u043B\u0443\u043B\u0430\u0440",
|
|
118
118
|
items: {
|
|
119
|
-
|
|
120
|
-
title: "\
|
|
121
|
-
subtitle: "
|
|
119
|
+
customers: {
|
|
120
|
+
title: "\u049A\u0430\u0442\u044B\u0441\u0443\u0448\u044B\u043B\u0430\u0440\u0434\u044B \u0442\u0430\u043B\u0434\u0430\u0443",
|
|
121
|
+
subtitle: "\u049A\u0430\u0442\u044B\u0441\u0443\u0448\u044B\u043B\u0430\u0440\u0434\u044B\u04A3 \u0440\u0435\u0439\u0442\u0438\u043D\u0433\u0442\u0435\u0440\u0456 \u043C\u0435\u043D \u043F\u0440\u043E\u0444\u0438\u043B\u044C\u0434\u0435\u0440\u0456: \u043C\u0430\u043C\u0430\u043D\u0434\u0430\u043D\u0443, \u043C\u04D9\u043C\u0456\u043B\u0435\u043B\u0435\u0440 \u043C\u0435\u043D \u0431\u0430\u0493\u0430\u043B\u0430\u0440, \u043D\u0430\u0440\u044B\u049B\u0442\u0430\u0493\u044B \u04AF\u043B\u0435\u0441\u0456 \u043C\u0435\u043D \u0441\u0435\u0440\u043F\u0456\u043D\u0456"
|
|
122
122
|
},
|
|
123
123
|
akimat: {
|
|
124
124
|
title: "\u04D8\u043A\u0456\u043C\u0434\u0456\u043A. \u0415\u0441\u0435\u043F\u0442\u0435\u0440",
|
|
125
|
-
subtitle: "
|
|
125
|
+
subtitle: "\u0421\u0430\u0442\u044B\u043F \u0430\u043B\u0443\u043B\u0430\u0440 \u0442\u0443\u0440\u0430\u043B\u044B \u0430\u049B\u043F\u0430\u0440\u0430\u0442, \u049B\u044B\u0437\u044B\u0493\u0443\u0448\u044B\u043B\u044B\u0493\u044B\u04A3\u044B\u0437\u0493\u0430 \u043D\u0435\u043C\u0435\u0441\u0435 \u049B\u044B\u0437\u043C\u0435\u0442 \u0431\u0430\u0493\u044B\u0442\u044B\u04A3\u044B\u0437\u0493\u0430 \u0441\u04D9\u0439\u043A\u0435\u0441 \u043A\u0435\u043B\u0435\u0442\u0456\u043D \u043B\u043E\u0442\u0442\u0430\u0440\u0434\u044B \u0456\u0437\u0434\u0435\u0443 \u04AF\u0448\u0456\u043D \u043A\u0456\u043B\u0442 \u0441\u04E9\u0437\u0434\u0435\u0440 \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u0456\u0437\u0434\u0435\u0443\u0434\u0456 \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u044B\u04A3\u044B\u0437"
|
|
126
|
+
},
|
|
127
|
+
tru: {
|
|
128
|
+
title: "\u0422\u0411\u0416 \u0442\u0430\u043B\u0434\u0430\u0443\u044B",
|
|
129
|
+
subtitle: "\u0421\u0430\u0442\u044B\u043F \u0430\u043B\u0443 \u04AF\u0440\u0434\u0456\u0441\u0442\u0435\u0440\u0456: \u0442\u0430\u049B\u044B\u0440\u044B\u043F\u0442\u044B\u049B \u0456\u0437\u0434\u0435\u0443, \u043F\u043E\u0437\u0438\u0446\u0438\u044F\u043B\u0430\u0440 \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u043D\u0430\u0440\u044B\u049B, \u0431\u0430\u0493\u0430\u043B\u0430\u0440 \u043C\u0435\u043D \u043A\u04E9\u043B\u0435\u043C\u0434\u0435\u0440, \u0436\u0430\u043B\u043F\u044B \u0431\u044E\u0434\u0436\u0435\u0442 \u043F\u0435\u043D \u043A\u04E9\u0448\u0431\u0430\u0441\u0448\u044B\u043B\u0430\u0440"
|
|
130
|
+
},
|
|
131
|
+
price: {
|
|
132
|
+
title: "\u0411\u0430\u0493\u0430\u043B\u0430\u0440\u0434\u044B \u0442\u0430\u043B\u0434\u0430\u0443",
|
|
133
|
+
subtitle: "\u0422\u0430\u0443\u0430\u0440\u043B\u0430\u0440, \u0436\u04B1\u043C\u044B\u0441\u0442\u0430\u0440 \u043C\u0435\u043D \u049B\u044B\u0437\u043C\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04A3 \u0431\u0430\u0493\u0430\u043B\u0430\u0440\u044B\u043D \u0431\u0430\u049B\u044B\u043B\u0430\u0443 \u2014 \u0431\u044E\u0434\u0436\u0435\u0442\u0442\u0456, \u043C\u0430\u0440\u0436\u0430\u043D\u044B \u0435\u0441\u0435\u043F\u0442\u0435\u0443 \u0436\u04D9\u043D\u0435 \u0430\u0443\u044B\u0442\u049B\u0443\u043B\u0430\u0440\u0434\u044B \u0430\u043D\u044B\u049B\u0442\u0430\u0443 \u04AF\u0448\u0456\u043D \u0430\u049B\u044B\u043B\u0434\u044B \u0456\u0437\u0434\u0435\u0443 \u0436\u04D9\u043D\u0435 \u0434\u04D9\u043B \u0456\u0440\u0456\u043A\u0442\u0435\u0443"
|
|
134
|
+
},
|
|
135
|
+
constructor: {
|
|
136
|
+
title: "\u0415\u0441\u0435\u043F\u0442\u0435\u0440 \u043A\u043E\u043D\u0441\u0442\u0440\u0443\u043A\u0442\u043E\u0440\u044B",
|
|
137
|
+
subtitle: "\u0418\u043A\u0435\u043C\u0434\u0456 \u049B\u0430\u043B\u044B\u043F\u0442\u0430\u0441\u0442\u044B\u0440\u0443 \u0436\u04D9\u043D\u0435 \u0435\u0433\u0436\u0435\u0439-\u0442\u0435\u0433\u0436\u0435\u0439\u043B\u0456 \u0435\u0441\u0435\u043F\u0442\u0435\u0440\u0434\u0456 \u0442\u0435\u0437 \u0436\u04AF\u043A\u0442\u0435\u0443"
|
|
138
|
+
},
|
|
139
|
+
monitoring: {
|
|
140
|
+
title: "\u0421\u0430\u0442\u044B\u043F \u0430\u043B\u0443\u043B\u0430\u0440\u0434\u044B \u043C\u043E\u043D\u0438\u0442\u043E\u0440\u0438\u043D\u0433\u0456",
|
|
141
|
+
subtitle: "\u0421\u0430\u0442\u044B\u043F \u0430\u043B\u0443\u043B\u0430\u0440 \u0442\u0443\u0440\u0430\u043B\u044B \u0430\u049B\u043F\u0430\u0440\u0430\u0442, \u049B\u044B\u0437\u044B\u0493\u0443\u0448\u044B\u043B\u044B\u0493\u044B\u04A3\u044B\u0437\u0493\u0430 \u043D\u0435\u043C\u0435\u0441\u0435 \u049B\u044B\u0437\u043C\u0435\u0442 \u0431\u0430\u0493\u044B\u0442\u044B\u04A3\u044B\u0437\u0493\u0430 \u0441\u04D9\u0439\u043A\u0435\u0441 \u043A\u0435\u043B\u0435\u0442\u0456\u043D \u043B\u043E\u0442\u0442\u0430\u0440\u0434\u044B \u0456\u0437\u0434\u0435\u0443 \u04AF\u0448\u0456\u043D \u043A\u0456\u043B\u0442 \u0441\u04E9\u0437\u0434\u0435\u0440 \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u0456\u0437\u0434\u0435\u0443\u0434\u0456 \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u044B\u04A3\u044B\u0437"
|
|
126
142
|
},
|
|
127
143
|
tenders: {
|
|
128
144
|
title: "\u0422\u0435\u043D\u0434\u0435\u0440\u043B\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443",
|
|
@@ -116,7 +116,7 @@ declare const RuLocale: {
|
|
|
116
116
|
tenders: {
|
|
117
117
|
label: string;
|
|
118
118
|
items: {
|
|
119
|
-
|
|
119
|
+
customers: {
|
|
120
120
|
title: string;
|
|
121
121
|
subtitle: string;
|
|
122
122
|
};
|
|
@@ -124,6 +124,22 @@ declare const RuLocale: {
|
|
|
124
124
|
title: string;
|
|
125
125
|
subtitle: string;
|
|
126
126
|
};
|
|
127
|
+
tru: {
|
|
128
|
+
title: string;
|
|
129
|
+
subtitle: string;
|
|
130
|
+
};
|
|
131
|
+
price: {
|
|
132
|
+
title: string;
|
|
133
|
+
subtitle: string;
|
|
134
|
+
};
|
|
135
|
+
constructor: {
|
|
136
|
+
title: string;
|
|
137
|
+
subtitle: string;
|
|
138
|
+
};
|
|
139
|
+
monitoring: {
|
|
140
|
+
title: string;
|
|
141
|
+
subtitle: string;
|
|
142
|
+
};
|
|
127
143
|
tenders: {
|
|
128
144
|
title: string;
|
|
129
145
|
subtitle: string;
|
package/dist/runtime/lang/ru.js
CHANGED
|
@@ -110,14 +110,30 @@ const RuLocale = {
|
|
|
110
110
|
tenders: {
|
|
111
111
|
label: "\u0417\u0430\u043A\u0443\u043F\u043A\u0438",
|
|
112
112
|
items: {
|
|
113
|
-
|
|
114
|
-
title: "\
|
|
115
|
-
subtitle: "
|
|
113
|
+
customers: {
|
|
114
|
+
title: "\u0410\u043D\u0430\u043B\u0438\u0437 \u0443\u0447\u0430\u0441\u0442\u043D\u0438\u043A\u043E\u0432",
|
|
115
|
+
subtitle: "\u0420\u0435\u0439\u0442\u0438\u043D\u0433\u0438 \u0438 \u043F\u0440\u043E\u0444\u0438\u043B\u0438 \u0443\u0447\u0430\u0441\u0442\u043D\u0438\u043A\u043E\u0432: \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F, \u0441\u0434\u0435\u043B\u043A\u0438 \u0438 \u0446\u0435\u043D\u044B, \u0434\u043E\u043B\u044F \u0438 \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0430 \u043D\u0430 \u0440\u044B\u043D\u043A\u0435"
|
|
116
116
|
},
|
|
117
117
|
akimat: {
|
|
118
118
|
title: "\u0410\u043A\u0438\u043C\u0430\u0442. \u041E\u0442\u0447\u0451\u0442\u044B",
|
|
119
119
|
subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
|
|
120
120
|
},
|
|
121
|
+
tru: {
|
|
122
|
+
title: "\u0410\u043D\u0430\u043B\u0438\u0437 \u0422\u0420\u0423",
|
|
123
|
+
subtitle: "\u0422\u0440\u0435\u043D\u0434\u044B \u0437\u0430\u043A\u0443\u043F\u043E\u043A: \u0442\u0435\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u043F\u043E\u0438\u0441\u043A, \u0440\u044B\u043D\u043E\u043A \u043F\u043E \u043F\u043E\u0437\u0438\u0446\u0438\u044F\u043C, \u0446\u0435\u043D\u044B \u0438 \u043E\u0431\u044A\u0451\u043C\u044B, \u043E\u0431\u0449\u0438\u0439 \u0431\u044E\u0434\u0436\u0435\u0442 \u0438 \u043B\u0438\u0434\u0435\u0440\u044B"
|
|
124
|
+
},
|
|
125
|
+
price: {
|
|
126
|
+
title: "\u0410\u043D\u0430\u043B\u0438\u0437 \u0446\u0435\u043D",
|
|
127
|
+
subtitle: "\u041E\u0442\u0441\u043B\u0435\u0436\u0438\u0432\u0430\u043D\u0438\u0435 \u0446\u0435\u043D \u043D\u0430 \u0442\u043E\u0432\u0430\u0440\u044B, \u0440\u0430\u0431\u043E\u0442\u044B \u0438 \u0443\u0441\u043B\u0443\u0433\u0438 \u0441 \u0443\u043C\u043D\u044B\u043C \u043F\u043E\u0438\u0441\u043A\u043E\u043C \u0438 \u0442\u043E\u0447\u043D\u044B\u043C \u043F\u043E\u0434\u0431\u043E\u0440\u043E\u043C \u0434\u043B\u044F \u0440\u0430\u0441\u0447\u0451\u0442\u0430 \u0431\u044E\u0434\u0436\u0435\u0442\u0430, \u043C\u0430\u0440\u0436\u0438 \u0438 \u0432\u044B\u044F\u0432\u043B\u0435\u043D\u0438\u044F \u043E\u0442\u043A\u043B\u043E\u043D\u0435\u043D\u0438\u0439"
|
|
128
|
+
},
|
|
129
|
+
constructor: {
|
|
130
|
+
title: "\u041A\u043E\u043D\u0441\u0442\u0440\u0443\u043A\u0442\u043E\u0440 \u043E\u0442\u0447\u0451\u0442\u043E\u0432",
|
|
131
|
+
subtitle: "\u0413\u0438\u0431\u043A\u043E\u0435 \u0444\u043E\u0440\u043C\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0438 \u0431\u044B\u0441\u0442\u0440\u0430\u044F \u0432\u044B\u0433\u0440\u0443\u0437\u043A\u0430 \u0434\u0435\u0442\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043E\u0442\u0447\u0451\u0442\u043E\u0432"
|
|
132
|
+
},
|
|
133
|
+
monitoring: {
|
|
134
|
+
title: "\u041C\u043E\u043D\u0438\u0442\u043E\u0440\u0438\u043D\u0433 \u0437\u0430\u043A\u0443\u043F\u043E\u043A",
|
|
135
|
+
subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
|
|
136
|
+
},
|
|
121
137
|
tenders: {
|
|
122
138
|
title: "\u041F\u043E\u0438\u0441\u043A \u0442\u0435\u043D\u0434\u0435\u0440\u043E\u0432",
|
|
123
139
|
subtitle: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0437\u0430\u043A\u0443\u043F\u043A\u0430\u0445, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u043F\u043E\u0438\u0441\u043A, \u043F\u043E \u043A\u043B\u044E\u0447\u0435\u0432\u044B\u043C \u0441\u043B\u043E\u0432\u0430\u043C, \u0434\u043B\u044F \u043F\u043E\u0438\u0441\u043A\u0430 \u043B\u043E\u0442\u043E\u0432, \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0445 \u0432\u0430\u0448\u0438\u043C \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0430\u043C \u0438\u043B\u0438 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0443 \u0432\u0430\u0448\u0435\u0439 \u0434\u0435\u044F\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438"
|
|
@@ -37,6 +37,11 @@ export const PAGES = {
|
|
|
37
37
|
vacancy: "/vacancy"
|
|
38
38
|
},
|
|
39
39
|
tender: {
|
|
40
|
+
customers: "/main/analytics/customers",
|
|
41
|
+
analytics: "/main/eoz/analytics",
|
|
42
|
+
tru: "/main/analytics/tru-dynamic-procurement",
|
|
43
|
+
price: "/main/price-analysis",
|
|
44
|
+
constructor: "/main/reporting/constructor",
|
|
40
45
|
monitoring: "/",
|
|
41
46
|
akimat: "/akimat",
|
|
42
47
|
main: "/",
|