change locale and z-index add filter

This commit is contained in:
Vladimir 2026-06-18 14:16:45 +03:00
parent f0c6475e34
commit 7da7167000
4 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,7 @@ NODE_ENV=development
VITE_API_URL=https://joywork.ru
VITE_LARAVEL_URL=https://api.joywork.ru
VITE_LARAVEL_API_URL=https://joywork.ru
VITE_DEV_SESSION_ID=javn7fjr5pjv9q075krd89k641
VITE_DEV_SESSION_ID=2filmq03r23tr675l2a2tjkof1
VITE_DEV_REQUISITION_ID=1481170

View File

@ -14,6 +14,7 @@
"axios": "^1.16.1",
"dayjs": "^1.11.19",
"primeicons": "^7.0.0",
"primelocale": "^2.4.0",
"primevue": "^4.5.5",
"vue": "^3.5.34",
"vue-router": "^5.0.7"

View File

@ -80,7 +80,7 @@ const handleSelect = () => {
justify-content: center;
align-items: center;
position: fixed;
z-index: 1;
z-index: 100001;
left: 0;
top: 0;
width: 100%;

View File

@ -8,6 +8,7 @@ import ToastService from 'primevue/toastservice'
import ConfirmationService from 'primevue/confirmationservice'
import Aura from '@primeuix/themes/aura'
import { ru } from 'primelocale/js/ru.js'
import InputText from 'primevue/inputtext'
import Select from 'primevue/select'
@ -35,7 +36,9 @@ app.use(PrimeVue, {
}
},
locale: {
emptyMessage: 'Нет доступных вариантов'
...ru,
emptyMessage: 'Нет доступных вариантов',
dateFormat: 'dd.mm.yy'
}
})