adata-ui 0.1.28 → 0.1.29
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 +25 -15
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.umd.js +25 -15
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +1 -1
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Header/Header.vue +1 -1
- package/src/components/Header/Profile.vue +2 -2
- package/src/configs/profileDropDown.js +12 -0
package/package.json
CHANGED
|
@@ -295,9 +295,9 @@ export default {
|
|
|
295
295
|
}
|
|
296
296
|
if(this.activeTabKey === 'counterparty' && window && window.innerWidth > 850) {
|
|
297
297
|
this.chosenElem = this.listDropDown.find(el => el.name === 'Контрагенты');
|
|
298
|
-
} else if (this.activeTabKey === 'tenders') {
|
|
298
|
+
} else if (this.activeTabKey === 'tenders' && window && window.innerWidth > 850) {
|
|
299
299
|
this.chosenElem = this.listDropDown.find(el => el.name === 'Тендеры');
|
|
300
|
-
} else if (this.activeTabKey === 'work') {
|
|
300
|
+
} else if (this.activeTabKey === 'work' && window && window.innerWidth > 850) {
|
|
301
301
|
this.chosenElem = this.listDropDown.find(el => el.name === 'Работа');
|
|
302
302
|
}
|
|
303
303
|
this.chosenElem.opened = true;
|
|
@@ -98,4 +98,16 @@ export const profileDropDown = [
|
|
|
98
98
|
],
|
|
99
99
|
disabled: false
|
|
100
100
|
},
|
|
101
|
+
{
|
|
102
|
+
id: 8,
|
|
103
|
+
name: "Штрафы",
|
|
104
|
+
url: 'https://avto.adata.kz',
|
|
105
|
+
key: 'fines'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: 9,
|
|
109
|
+
name: "Маркетинг",
|
|
110
|
+
url: 'https://marketing.adata.kz',
|
|
111
|
+
key: 'marketing'
|
|
112
|
+
}
|
|
101
113
|
];
|