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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -159,7 +159,7 @@ export default {
159
159
  id: 5,
160
160
  name: "Маркетинг",
161
161
  url: 'https://marketing.adata.kz',
162
- key: 'fines'
162
+ key: 'marketing'
163
163
  }
164
164
  ],
165
165
  isOpen: false
@@ -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
  ];