@7365admin1/layer-common 3.0.1 → 3.0.2
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/CHANGELOG.md +7 -0
- package/components/AttendanceCheckInOutDialog.vue +0 -1
- package/components/DashboardEmptyState.vue +18 -0
- package/components/DashboardMain.vue +998 -1268
- package/components/DashboardPanel.vue +44 -0
- package/components/DocumentForm.vue +22 -4
- package/components/DocumentManagement.vue +43 -6
- package/components/Editor.vue +47 -22
- package/components/MyAttendanceMain.vue +1 -2
- package/components/VisitorManagement.vue +2 -2
- package/components/VisitorsReportPreview.vue +4 -4
- package/composables/useAttendance.ts +2 -2
- package/composables/useDashboard.ts +77 -18
- package/composables/useDocument.ts +1 -0
- package/package.json +1 -1
- package/types/dashboard.d.ts +66 -0
package/CHANGELOG.md
CHANGED
|
@@ -162,7 +162,6 @@ const emit = defineEmits(["saved", "close"]);
|
|
|
162
162
|
|
|
163
163
|
const props = defineProps({
|
|
164
164
|
action: { type: String, default: "checkIn" }, // "checkIn" or "checkOut"
|
|
165
|
-
serviceType: { type: String, default: "" },
|
|
166
165
|
});
|
|
167
166
|
|
|
168
167
|
const formRef = ref<any>(null);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="d-flex flex-column align-center justify-center text-center text-blue-grey-lighten-1"
|
|
4
|
+
:style="{ minHeight: compact ? '72px' : '140px', gap: '8px' }"
|
|
5
|
+
>
|
|
6
|
+
<v-icon icon="mdi-database-search-outline" size="28" />
|
|
7
|
+
<span class="text-caption font-weight-bold">No data to display</span>
|
|
8
|
+
</div>
|
|
9
|
+
</template>
|
|
10
|
+
|
|
11
|
+
<script setup lang="ts">
|
|
12
|
+
defineProps({
|
|
13
|
+
compact: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
</script>
|