File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ q-page
3333 q-btn( flat icon ="mdi-refresh" @click ="refresh" color ="primary" )
3434 q-tooltip.text-body2 ( transition-show ="scale" transition-hide ="scale" ) Rafraichir
3535 q-btn( icon ="mdi-plus" color ="primary" @click ="$router.push('/tickets/create')" ) Créer
36+
3637 template( v-slot:body-cell-actions ="props" )
3738 q-td( :props ="props" )
3839 q-btn-group( flat rounded )
3940 q-btn( icon ="mdi-eye" color ="primary" @click ="goToTicket(props.row)" size ="sm" flat )
4041 q-tooltip.text-body2 ( transition-show ="scale" transition-hide ="scale" ) Afficher le ticket
4142 q-btn( icon ="mdi-delete" color ="primary" @click ="deleteTickets" size ="sm" flat )
4243 q-tooltip.text-body2 ( transition-show ="scale" transition-hide ="scale" ) Supprimer le ticket
44+
4345 template( v-slot:body-cell-states ="props" )
4446 q-td( :props ="props" )
4547 q-icon( :name ="getLifeStep(props.row.lifestep).icon" : color= "getLifeStep(props.row.lifestep).color" size ="xs" ) .q-mx-xs
6870<script lang="ts" setup>
6971import { ref , provide } from " vue" ;
7072import { useHttpApi } from " ~/composables/useHttpApi" ;
71- import { computed , useDayjs , onMounted , onBeforeMount } from " #imports" ;
73+ import { computed , useDayjs , onMounted } from " #imports" ;
7274import { useRoute , useRouter } from " nuxt/app" ;
7375import type { QTableProps } from " quasar" ;
7476import type { components } from ' #build/types/service-api'
You can’t perform that action at this time.
0 commit comments