File tree Expand file tree Collapse file tree
packages/frontend-usagers/src/pages/eig Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6868 <div
6969 class =" fr-fieldset__element fr-fieldset__element--inline fr-col-12 fr-col-md-3 fr-col-lg-2"
7070 >
71- <RangeDatePicker
72- v-model =" searchState.dateRange"
73- label =" Date de l'eig"
74- />
71+ <div class =" fr-input-group" >
72+ EIG entre le :
73+ <DsfrInputGroup
74+ v-model =" searchState.dateRange.start"
75+ type =" date"
76+ label =" Date de début"
77+ />
78+ </div >
79+ <div class =" fr-input-group" >
80+ et le :
81+ <DsfrInputGroup
82+ v-model =" searchState.dateRange.end"
83+ type =" date"
84+ label =" Date de fin"
85+ />
86+ </div >
7587 </div >
7688 </div >
7789 </form >
@@ -118,7 +130,6 @@ import EigStatusBadge from "@vao/shared-ui/src/components/eig/EigStatusBadge.vue
118130import {
119131 eigModel ,
120132 EigTypeListe ,
121- RangeDatePicker ,
122133 TableWithBackendPagination ,
123134 ValidationModal ,
124135} from " @vao/shared-ui" ;
@@ -152,7 +163,7 @@ const searchState = reactive({
152163 statut: null ,
153164 idFonctionnelle: null ,
154165 type: null ,
155- dateRange: null ,
166+ dateRange: { start : new Date (), end : new Date () } ,
156167});
157168
158169const paginateResults = async (sortValue , limitValue , currentPageValue ) => {
You can’t perform that action at this time.
0 commit comments