shared-ritm 1.3.28 → 1.3.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.
Files changed (58) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +8736 -8788
  3. package/dist/shared-ritm.umd.js +324 -324
  4. package/dist/types/api/services/ComentsServise.d.ts +10 -0
  5. package/dist/types/api/services/GanttService.d.ts +1 -0
  6. package/dist/types/api/services/PhotoService.d.ts +51 -38
  7. package/dist/types/api/services/RepairsService.d.ts +1 -1
  8. package/dist/types/api/settings/ApiService.d.ts +1 -1
  9. package/dist/types/api/types/Api_Users.d.ts +43 -0
  10. package/package.json +64 -64
  11. package/src/App.vue +2461 -2461
  12. package/src/api/services/BrigadesService.ts +32 -32
  13. package/src/api/services/ControlsService.ts +96 -96
  14. package/src/api/services/EquipmentService.ts +29 -29
  15. package/src/api/services/GanttService.ts +6 -0
  16. package/src/api/services/InstrumentsService.ts +68 -68
  17. package/src/api/services/MetricsService.ts +123 -123
  18. package/src/api/services/ModulesService.ts +27 -27
  19. package/src/api/services/ProjectsService.ts +83 -83
  20. package/src/api/services/RepairsService.ts +111 -111
  21. package/src/api/services/ScheduleService.ts +69 -69
  22. package/src/api/services/SearchService.ts +22 -22
  23. package/src/api/services/UserService.ts +119 -119
  24. package/src/api/services/VideoService.ts +108 -108
  25. package/src/api/settings/ApiService.ts +124 -124
  26. package/src/api/types/Api_Auth.ts +105 -105
  27. package/src/api/types/Api_Brigades.ts +36 -36
  28. package/src/api/types/Api_Controls.ts +111 -111
  29. package/src/api/types/Api_Equipment.ts +3 -3
  30. package/src/api/types/Api_Instruments.ts +156 -156
  31. package/src/api/types/Api_Metrics.ts +5 -5
  32. package/src/api/types/Api_Modules.ts +21 -21
  33. package/src/api/types/Api_Projects.ts +62 -62
  34. package/src/api/types/Api_Repairs.ts +186 -186
  35. package/src/api/types/Api_Schedule.ts +64 -64
  36. package/src/api/types/Api_Search.ts +80 -80
  37. package/src/api/types/Api_Tasks.ts +372 -372
  38. package/src/api/types/Api_User.ts +146 -146
  39. package/src/api/types/Api_Video.ts +198 -198
  40. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  41. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  42. package/src/common/app-input-new/AppInputNew.vue +179 -179
  43. package/src/common/app-layout/AppLayout.vue +84 -84
  44. package/src/common/app-modal/index.vue +96 -96
  45. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  46. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  47. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  48. package/src/common/app-table/AppTable.vue +313 -313
  49. package/src/common/app-table/AppTableLayout.vue +137 -137
  50. package/src/common/app-table/components/ModalSelect.vue +298 -298
  51. package/src/common/app-table/components/TableModal.vue +23 -4
  52. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  53. package/src/common/app-table/controllers/useColumnSelector.ts +12 -1
  54. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  55. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  56. package/src/index.ts +131 -131
  57. package/src/styles/variables.sass +12 -12
  58. package/src/utils/files.ts +19 -19
@@ -1,313 +1,313 @@
1
- <template>
2
- <div class="flex flex-col" style="height: 100%; min-height: 100%">
3
- <q-table
4
- v-model:selected="selected"
5
- :rows="rows.value"
6
- :columns="columns"
7
- row-key="id"
8
- flat
9
- bordered
10
- hide-bottom
11
- class="full-width"
12
- :rows-per-page-options="[0]"
13
- :selection="props.enableMultiSelect ? 'multiple' : 'none'"
14
- style="height: 100%"
15
- :table-row-style-fn="tableRowStyleFn"
16
- @row-click="rowClick"
17
- >
18
- <template #header-selection="scope">
19
- <q-toggle v-model="scope.selected" />
20
- </template>
21
-
22
- <template #body-selection="scope">
23
- <q-toggle v-model="scope.selected" />
24
- </template>
25
-
26
- <template #body-cell-index="cellProps">
27
- <q-td :props="cellProps" class="text-center" :class="{ 'q-td--no-hover': noHover }">
28
- {{ getIndex(cellProps.rowIndex) }}
29
- </q-td>
30
- </template>
31
-
32
- <template v-for="col in columns" :key="col.name" #[`header-cell-${col.name}`]="propsSlot">
33
- <q-th
34
- :props="propsSlot"
35
- :class="{ 'cursor-pointer': col.filterType, fixed: col.name === 'fixed' }"
36
- :style="col.style"
37
- >
38
- <div
39
- v-if="col.filterType"
40
- class="row items-center no-wrap"
41
- @click.stop="emit('open-filter-menu', col.name, !filterMenus.value[col.name])"
42
- >
43
- <filter-icon class="q-mr-xs" />
44
- <span>{{ col.label }}</span>
45
- <div
46
- v-if="['multi', 'single'].includes(col.filterType) && columnFilters.value[col.name]?.length"
47
- class="label-length"
48
- >
49
- - {{ col.filterType === 'multi' ? columnFilters.value[col.name]?.length : 1 }}
50
- </div>
51
- </div>
52
- <div v-else>{{ col.label }}</div>
53
-
54
- <q-menu
55
- v-if="col.filterType"
56
- :model-value="filterMenus.value[col.name]"
57
- fit
58
- max-height="300px"
59
- class="filter-menu"
60
- @update:model-value="isOpen => emit('open-filter-menu', col.name, isOpen)"
61
- >
62
- <div class="filter-content">
63
- <q-input v-model="localSearches[col.name]" dense outlined placeholder="Поиск" class="q-mb-sm" clearable />
64
- <q-scroll-area style="height: 200px">
65
- <q-list style="min-width: 200px">
66
- <q-item v-for="option in filteredOptions[col.name]" :key="`${col.name}-${option.id}`" tag="label">
67
- <q-item-section avatar>
68
- <q-checkbox
69
- v-if="col.filterType === 'multi'"
70
- dense
71
- :model-value="
72
- Array.isArray(columnFilters.value[col.name]) &&
73
- columnFilters.value[col.name]?.includes(option.name)
74
- "
75
- @update:model-value="() => emit('toggle-filter-value', col.name, option.name)"
76
- />
77
- <q-radio
78
- v-else
79
- dense
80
- :model-value="columnFilters.value[col.name]"
81
- :val="option.name"
82
- @update:model-value="emit('toggle-filter-value', col.name, $event)"
83
- />
84
- </q-item-section>
85
- <q-item-section>{{ option.name }}</q-item-section>
86
- </q-item>
87
- <div v-if="!filteredOptions[col.name]?.length" class="no-data">Нет данных</div>
88
- </q-list>
89
- </q-scroll-area>
90
-
91
- <div class="filter-footer">
92
- <q-btn color="negative" flat dense label="Сбросить фильтр" @click="emit('clear-filter', col.name)" />
93
- </div>
94
- </div>
95
- </q-menu>
96
- </q-th>
97
- </template>
98
-
99
- <template #body-cell="cellProps">
100
- <q-td
101
- :props="cellProps"
102
- :class="{
103
- 'q-td--no-hover': noHover || cellProps.col.name === 'fixed',
104
- fixed: cellProps.col.name === 'fixed',
105
- }"
106
- >
107
- <q-badge
108
- v-if="cellProps.col.badge && typeof cellProps.value === 'boolean'"
109
- :color="
110
- cellProps.col.badge.colorTrue && cellProps.value
111
- ? cellProps.col.badge.colorTrue
112
- : cellProps.col.badge.colorFalse && !cellProps.value
113
- ? cellProps.col.badge.colorFalse
114
- : cellProps.value
115
- ? 'green'
116
- : 'red'
117
- "
118
- outline
119
- class="text-bold"
120
- >
121
- {{ cellProps.value ? cellProps.col.badge.true ?? 'Да' : cellProps.col.badge.false ?? 'Нет' }}
122
- </q-badge>
123
- <span v-else-if="cellProps.col.html" v-html="cellProps.value"></span>
124
- <slot
125
- v-else-if="hasSlot(cellProps.col.name)"
126
- :name="cellProps.col.name"
127
- :cellProps="cellProps"
128
- :class="{ fixed__btns: cellProps.col.name === 'fixed' }"
129
- />
130
- <span v-else :title="cellProps.value">{{ cellProps.value }}</span>
131
- </q-td>
132
- </template>
133
- </q-table>
134
- </div>
135
- </template>
136
- <script setup lang="ts">
137
- import { defineProps, defineEmits, ref, computed, watch, Slots } from 'vue'
138
- import type { Ref } from 'vue'
139
- import FilterIcon from '@/icons/components/table-filter-icon.vue'
140
-
141
- interface FilterOption {
142
- id: string
143
- name: string
144
- }
145
-
146
- interface TableEmits {
147
- 'toggle-filter-value': [colName: string, value: string]
148
- 'clear-filter': [colName: string]
149
- 'open-filter-menu': [colName: string, isOpen: boolean]
150
- 'row-click': [row: Record<string, any>]
151
- 'update:selectedRows': [rows: any[]] // синтаксис defineEmits для эмита с именованными параметрами
152
- edit: [row: Record<string, any>]
153
- }
154
-
155
- const props = defineProps<{
156
- rows: Ref<any[]>
157
- columns: any[]
158
- columnFilters: Ref<Record<string, string | string[] | undefined>>
159
- filterMenus: Ref<Record<string, boolean>>
160
- filtersOptions: Record<string, FilterOption[]>
161
- meta: Ref<{ currentPage: number; perPage: number }>
162
- enableMultiSelect?: boolean
163
- noHover?: boolean
164
- hidePagination?: boolean
165
- selectedRows: any[]
166
- tableRowStyleFn?: (row: Record<string, any>) => string
167
- slots?: Slots
168
- }>()
169
- const emit = defineEmits<TableEmits>()
170
-
171
- const localSearches = ref<Record<string, string>>({})
172
- const selected = ref<any[]>([])
173
-
174
- const filteredOptions = computed(() => {
175
- const result: Record<string, FilterOption[]> = {}
176
- for (const col of props.columns) {
177
- const search = localSearches.value[col.name]?.toLowerCase() || ''
178
- const options = props.filtersOptions[col.name] || []
179
- result[col.name] = options.filter(opt => opt.name.toLowerCase().includes(search))
180
- }
181
- return result
182
- })
183
-
184
- const hasSlot = (name: string) => props.slots && name in props.slots
185
-
186
- const rowClick = (e: Event, row: Record<string, any>) => {
187
- const target = e?.target
188
-
189
- if (!(target instanceof HTMLElement) || target.closest('.fixed') || document.getSelection()?.toString()) return
190
-
191
- emit('row-click', row)
192
- }
193
-
194
- const getIndex = (rowIndex: number) => {
195
- if (props.hidePagination) return rowIndex + 1
196
-
197
- return rowIndex + 1 + (props.meta.value.currentPage - 1) * props.meta.value.perPage
198
- }
199
-
200
- watch(
201
- () => props.selectedRows,
202
- val => {
203
- selected.value = val
204
- },
205
- { immediate: true },
206
- )
207
-
208
- watch(
209
- selected,
210
- val => {
211
- emit('update:selectedRows', val)
212
- },
213
- { deep: true },
214
- )
215
- </script>
216
- <style scoped lang="scss">
217
- .no-data {
218
- text-align: center;
219
- }
220
-
221
- .fixed {
222
- background-color: #f2f7fb;
223
- position: sticky;
224
- right: 0;
225
- z-index: 1;
226
- border-left: 1px solid #d7e0ef;
227
-
228
- &__btns {
229
- display: flex;
230
- justify-content: center;
231
- gap: 0.5rem;
232
-
233
- button {
234
- background-color: #a4b4cf50;
235
- width: 32px;
236
- height: 32px;
237
- border-radius: 8px;
238
- }
239
- }
240
- }
241
-
242
- .cursor-pointer {
243
- cursor: pointer;
244
- }
245
-
246
- .filter-menu {
247
- padding: 10px;
248
- }
249
- .label-length {
250
- margin-left: 5px;
251
- }
252
- .filter-content {
253
- display: flex;
254
- flex-direction: column;
255
- color: #1d425d;
256
- .q-item {
257
- padding: 0 5px;
258
- min-height: 40px;
259
- }
260
- .q-item__section {
261
- min-width: 30px;
262
- padding: 0;
263
- }
264
- ::v-deep(.q-radio__inner),
265
- ::v-deep(.q-checkbox__inner) {
266
- color: #a4b4cf;
267
- }
268
- }
269
-
270
- .filter-footer {
271
- border-top: 1px solid #eee;
272
- display: flex;
273
- justify-content: center;
274
- }
275
-
276
- ::v-deep(.q-table thead) {
277
- position: sticky;
278
- top: 0;
279
- background: #f2f7fb;
280
- z-index: 2;
281
- }
282
-
283
- ::v-deep(.q-table th) {
284
- font-family: NunitoSansFont, sans-serif;
285
- color: #a4b4cf;
286
- font-size: 15px;
287
- font-style: normal;
288
- font-weight: 700;
289
- line-height: 20px;
290
- height: 61px;
291
- }
292
-
293
- ::v-deep(.q-table tbody td) {
294
- height: 61px;
295
- font-size: 14px;
296
- }
297
-
298
- .q-td--no-hover {
299
- cursor: default;
300
- }
301
-
302
- ::v-deep(.q-table tbody) {
303
- font-family: NunitoSansFont, sans-serif;
304
- border-color: #d7e0ef;
305
- color: #1d425d;
306
- line-height: 20px;
307
- font-size: 14px;
308
- }
309
-
310
- ::v-deep(.q-table tbody tr:last-child td) {
311
- border-bottom: 1px solid #d7e0ef;
312
- }
313
- </style>
1
+ <template>
2
+ <div class="flex flex-col" style="height: 100%; min-height: 100%">
3
+ <q-table
4
+ v-model:selected="selected"
5
+ :rows="rows.value"
6
+ :columns="columns"
7
+ row-key="id"
8
+ flat
9
+ bordered
10
+ hide-bottom
11
+ class="full-width"
12
+ :rows-per-page-options="[0]"
13
+ :selection="props.enableMultiSelect ? 'multiple' : 'none'"
14
+ style="height: 100%"
15
+ :table-row-style-fn="tableRowStyleFn"
16
+ @row-click="rowClick"
17
+ >
18
+ <template #header-selection="scope">
19
+ <q-toggle v-model="scope.selected" />
20
+ </template>
21
+
22
+ <template #body-selection="scope">
23
+ <q-toggle v-model="scope.selected" />
24
+ </template>
25
+
26
+ <template #body-cell-index="cellProps">
27
+ <q-td :props="cellProps" class="text-center" :class="{ 'q-td--no-hover': noHover }">
28
+ {{ getIndex(cellProps.rowIndex) }}
29
+ </q-td>
30
+ </template>
31
+
32
+ <template v-for="col in columns" :key="col.name" #[`header-cell-${col.name}`]="propsSlot">
33
+ <q-th
34
+ :props="propsSlot"
35
+ :class="{ 'cursor-pointer': col.filterType, fixed: col.name === 'fixed' }"
36
+ :style="col.style"
37
+ >
38
+ <div
39
+ v-if="col.filterType"
40
+ class="row items-center no-wrap"
41
+ @click.stop="emit('open-filter-menu', col.name, !filterMenus.value[col.name])"
42
+ >
43
+ <filter-icon class="q-mr-xs" />
44
+ <span>{{ col.label }}</span>
45
+ <div
46
+ v-if="['multi', 'single'].includes(col.filterType) && columnFilters.value[col.name]?.length"
47
+ class="label-length"
48
+ >
49
+ - {{ col.filterType === 'multi' ? columnFilters.value[col.name]?.length : 1 }}
50
+ </div>
51
+ </div>
52
+ <div v-else>{{ col.label }}</div>
53
+
54
+ <q-menu
55
+ v-if="col.filterType"
56
+ :model-value="filterMenus.value[col.name]"
57
+ fit
58
+ max-height="300px"
59
+ class="filter-menu"
60
+ @update:model-value="isOpen => emit('open-filter-menu', col.name, isOpen)"
61
+ >
62
+ <div class="filter-content">
63
+ <q-input v-model="localSearches[col.name]" dense outlined placeholder="Поиск" class="q-mb-sm" clearable />
64
+ <q-scroll-area style="height: 200px">
65
+ <q-list style="min-width: 200px">
66
+ <q-item v-for="option in filteredOptions[col.name]" :key="`${col.name}-${option.id}`" tag="label">
67
+ <q-item-section avatar>
68
+ <q-checkbox
69
+ v-if="col.filterType === 'multi'"
70
+ dense
71
+ :model-value="
72
+ Array.isArray(columnFilters.value[col.name]) &&
73
+ columnFilters.value[col.name]?.includes(option.name)
74
+ "
75
+ @update:model-value="() => emit('toggle-filter-value', col.name, option.name)"
76
+ />
77
+ <q-radio
78
+ v-else
79
+ dense
80
+ :model-value="columnFilters.value[col.name]"
81
+ :val="option.name"
82
+ @update:model-value="emit('toggle-filter-value', col.name, $event)"
83
+ />
84
+ </q-item-section>
85
+ <q-item-section>{{ option.name }}</q-item-section>
86
+ </q-item>
87
+ <div v-if="!filteredOptions[col.name]?.length" class="no-data">Нет данных</div>
88
+ </q-list>
89
+ </q-scroll-area>
90
+
91
+ <div class="filter-footer">
92
+ <q-btn color="negative" flat dense label="Сбросить фильтр" @click="emit('clear-filter', col.name)" />
93
+ </div>
94
+ </div>
95
+ </q-menu>
96
+ </q-th>
97
+ </template>
98
+
99
+ <template #body-cell="cellProps">
100
+ <q-td
101
+ :props="cellProps"
102
+ :class="{
103
+ 'q-td--no-hover': noHover || cellProps.col.name === 'fixed',
104
+ fixed: cellProps.col.name === 'fixed',
105
+ }"
106
+ >
107
+ <q-badge
108
+ v-if="cellProps.col.badge && typeof cellProps.value === 'boolean'"
109
+ :color="
110
+ cellProps.col.badge.colorTrue && cellProps.value
111
+ ? cellProps.col.badge.colorTrue
112
+ : cellProps.col.badge.colorFalse && !cellProps.value
113
+ ? cellProps.col.badge.colorFalse
114
+ : cellProps.value
115
+ ? 'green'
116
+ : 'red'
117
+ "
118
+ outline
119
+ class="text-bold"
120
+ >
121
+ {{ cellProps.value ? cellProps.col.badge.true ?? 'Да' : cellProps.col.badge.false ?? 'Нет' }}
122
+ </q-badge>
123
+ <span v-else-if="cellProps.col.html" v-html="cellProps.value"></span>
124
+ <slot
125
+ v-else-if="hasSlot(cellProps.col.name)"
126
+ :name="cellProps.col.name"
127
+ :cellProps="cellProps"
128
+ :class="{ fixed__btns: cellProps.col.name === 'fixed' }"
129
+ />
130
+ <span v-else :title="cellProps.value">{{ cellProps.value }}</span>
131
+ </q-td>
132
+ </template>
133
+ </q-table>
134
+ </div>
135
+ </template>
136
+ <script setup lang="ts">
137
+ import { defineProps, defineEmits, ref, computed, watch, Slots } from 'vue'
138
+ import type { Ref } from 'vue'
139
+ import FilterIcon from '@/icons/components/table-filter-icon.vue'
140
+
141
+ interface FilterOption {
142
+ id: string
143
+ name: string
144
+ }
145
+
146
+ interface TableEmits {
147
+ 'toggle-filter-value': [colName: string, value: string]
148
+ 'clear-filter': [colName: string]
149
+ 'open-filter-menu': [colName: string, isOpen: boolean]
150
+ 'row-click': [row: Record<string, any>]
151
+ 'update:selectedRows': [rows: any[]] // синтаксис defineEmits для эмита с именованными параметрами
152
+ edit: [row: Record<string, any>]
153
+ }
154
+
155
+ const props = defineProps<{
156
+ rows: Ref<any[]>
157
+ columns: any[]
158
+ columnFilters: Ref<Record<string, string | string[] | undefined>>
159
+ filterMenus: Ref<Record<string, boolean>>
160
+ filtersOptions: Record<string, FilterOption[]>
161
+ meta: Ref<{ currentPage: number; perPage: number }>
162
+ enableMultiSelect?: boolean
163
+ noHover?: boolean
164
+ hidePagination?: boolean
165
+ selectedRows: any[]
166
+ tableRowStyleFn?: (row: Record<string, any>) => string
167
+ slots?: Slots
168
+ }>()
169
+ const emit = defineEmits<TableEmits>()
170
+
171
+ const localSearches = ref<Record<string, string>>({})
172
+ const selected = ref<any[]>([])
173
+
174
+ const filteredOptions = computed(() => {
175
+ const result: Record<string, FilterOption[]> = {}
176
+ for (const col of props.columns) {
177
+ const search = localSearches.value[col.name]?.toLowerCase() || ''
178
+ const options = props.filtersOptions[col.name] || []
179
+ result[col.name] = options.filter(opt => opt.name.toLowerCase().includes(search))
180
+ }
181
+ return result
182
+ })
183
+
184
+ const hasSlot = (name: string) => props.slots && name in props.slots
185
+
186
+ const rowClick = (e: Event, row: Record<string, any>) => {
187
+ const target = e?.target
188
+
189
+ if (!(target instanceof HTMLElement) || target.closest('.fixed') || document.getSelection()?.toString()) return
190
+
191
+ emit('row-click', row)
192
+ }
193
+
194
+ const getIndex = (rowIndex: number) => {
195
+ if (props.hidePagination) return rowIndex + 1
196
+
197
+ return rowIndex + 1 + (props.meta.value.currentPage - 1) * props.meta.value.perPage
198
+ }
199
+
200
+ watch(
201
+ () => props.selectedRows,
202
+ val => {
203
+ selected.value = val
204
+ },
205
+ { immediate: true },
206
+ )
207
+
208
+ watch(
209
+ selected,
210
+ val => {
211
+ emit('update:selectedRows', val)
212
+ },
213
+ { deep: true },
214
+ )
215
+ </script>
216
+ <style scoped lang="scss">
217
+ .no-data {
218
+ text-align: center;
219
+ }
220
+
221
+ .fixed {
222
+ background-color: #f2f7fb;
223
+ position: sticky;
224
+ right: 0;
225
+ z-index: 1;
226
+ border-left: 1px solid #d7e0ef;
227
+
228
+ &__btns {
229
+ display: flex;
230
+ justify-content: center;
231
+ gap: 0.5rem;
232
+
233
+ button {
234
+ background-color: #a4b4cf50;
235
+ width: 32px;
236
+ height: 32px;
237
+ border-radius: 8px;
238
+ }
239
+ }
240
+ }
241
+
242
+ .cursor-pointer {
243
+ cursor: pointer;
244
+ }
245
+
246
+ .filter-menu {
247
+ padding: 10px;
248
+ }
249
+ .label-length {
250
+ margin-left: 5px;
251
+ }
252
+ .filter-content {
253
+ display: flex;
254
+ flex-direction: column;
255
+ color: #1d425d;
256
+ .q-item {
257
+ padding: 0 5px;
258
+ min-height: 40px;
259
+ }
260
+ .q-item__section {
261
+ min-width: 30px;
262
+ padding: 0;
263
+ }
264
+ ::v-deep(.q-radio__inner),
265
+ ::v-deep(.q-checkbox__inner) {
266
+ color: #a4b4cf;
267
+ }
268
+ }
269
+
270
+ .filter-footer {
271
+ border-top: 1px solid #eee;
272
+ display: flex;
273
+ justify-content: center;
274
+ }
275
+
276
+ ::v-deep(.q-table thead) {
277
+ position: sticky;
278
+ top: 0;
279
+ background: #f2f7fb;
280
+ z-index: 2;
281
+ }
282
+
283
+ ::v-deep(.q-table th) {
284
+ font-family: NunitoSansFont, sans-serif;
285
+ color: #a4b4cf;
286
+ font-size: 15px;
287
+ font-style: normal;
288
+ font-weight: 700;
289
+ line-height: 20px;
290
+ height: 61px;
291
+ }
292
+
293
+ ::v-deep(.q-table tbody td) {
294
+ height: 61px;
295
+ font-size: 14px;
296
+ }
297
+
298
+ .q-td--no-hover {
299
+ cursor: default;
300
+ }
301
+
302
+ ::v-deep(.q-table tbody) {
303
+ font-family: NunitoSansFont, sans-serif;
304
+ border-color: #d7e0ef;
305
+ color: #1d425d;
306
+ line-height: 20px;
307
+ font-size: 14px;
308
+ }
309
+
310
+ ::v-deep(.q-table tbody tr:last-child td) {
311
+ border-bottom: 1px solid #d7e0ef;
312
+ }
313
+ </style>