@yxhl/specter-pui-vtk 1.0.91 → 1.0.92
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/dist/specter-pui.es.js +2156 -2118
- package/dist/specter-pui.es.js.map +1 -1
- package/dist/specter-pui.umd.js +1 -1
- package/dist/specter-pui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/assembly/VtkEmptyNew.vue +16 -18
- package/src/index.js +15 -11
package/package.json
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<v-card class="pa-4 mx-auto text-center pt-10" color="transparent" elevation="0" style="border: none !important;box-shadow: none !important;">
|
|
3
|
-
<v-img contain width="120" class="mx-auto" src="
|
|
4
|
-
<p class="text-grey mt-1">{{ text || "暂无数据" }}</p>
|
|
5
|
-
</v-card>
|
|
6
|
-
</template>
|
|
7
|
-
|
|
8
|
-
<script setup>
|
|
9
|
-
import
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
type: String,
|
|
17
|
-
default: null,
|
|
1
|
+
<template>
|
|
2
|
+
<v-card class="pa-4 mx-auto text-center pt-10" color="transparent" elevation="0" style="border: none !important;box-shadow: none !important;">
|
|
3
|
+
<v-img contain width="120" class="mx-auto" :src="emptyImg" alt="" />
|
|
4
|
+
<p class="text-grey mt-1">{{ text || "暂无数据" }}</p>
|
|
5
|
+
</v-card>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup>
|
|
9
|
+
import emptyImg from '@/assets/img/empty.svg';
|
|
10
|
+
|
|
11
|
+
// 定义 props
|
|
12
|
+
defineProps({
|
|
13
|
+
text: {
|
|
14
|
+
type: String,
|
|
15
|
+
default: null,
|
|
18
16
|
},
|
|
19
17
|
items: {
|
|
20
18
|
type: Array,
|
|
@@ -23,4 +21,4 @@ const props = defineProps({
|
|
|
23
21
|
});
|
|
24
22
|
</script>
|
|
25
23
|
|
|
26
|
-
<style lang="scss" scoped></style>
|
|
24
|
+
<style lang="scss" scoped></style>
|
package/src/index.js
CHANGED
|
@@ -11,9 +11,10 @@ export { default as VtkDatePicker } from "./components/assembly/VtkDatePicker.vu
|
|
|
11
11
|
export { default as VtkDateSelector } from "./components/assembly/VtkDateSelector.vue";
|
|
12
12
|
export { default as VtkDateTimePicker } from "./components/assembly/VtkDateTimePicker.vue";
|
|
13
13
|
export { default as VtkDept } from "./components/assembly/VtkDept.vue";
|
|
14
|
-
export { default as VtkEmpty } from "./components/assembly/VtkEmpty.vue";
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
14
|
+
export { default as VtkEmpty } from "./components/assembly/VtkEmpty.vue";
|
|
15
|
+
export { default as VtkEmptyNew } from "./components/assembly/VtkEmptyNew.vue";
|
|
16
|
+
export { default as VtkFab } from "./components/assembly/VtkFab.vue";
|
|
17
|
+
export { default as VtkFormItem } from "./components/assembly/VtkFormItem.vue";
|
|
17
18
|
export { default as VtkImg } from "./components/assembly/VtkImg.vue";
|
|
18
19
|
export { default as VtkPage } from "./components/assembly/VtkPage.vue";
|
|
19
20
|
export { default as VtkPdf } from "./components/assembly/VtkPdf.vue";
|
|
@@ -55,9 +56,10 @@ import VtkDatePicker from "./components/assembly/VtkDatePicker.vue";
|
|
|
55
56
|
import VtkDateSelector from "./components/assembly/VtkDateSelector.vue";
|
|
56
57
|
import VtkDateTimePicker from "./components/assembly/VtkDateTimePicker.vue";
|
|
57
58
|
import VtkDept from "./components/assembly/VtkDept.vue";
|
|
58
|
-
import VtkEmpty from "./components/assembly/VtkEmpty.vue";
|
|
59
|
-
import
|
|
60
|
-
import
|
|
59
|
+
import VtkEmpty from "./components/assembly/VtkEmpty.vue";
|
|
60
|
+
import VtkEmptyNew from "./components/assembly/VtkEmptyNew.vue";
|
|
61
|
+
import VtkFab from "./components/assembly/VtkFab.vue";
|
|
62
|
+
import VtkFormItem from "./components/assembly/VtkFormItem.vue";
|
|
61
63
|
import VtkImg from "./components/assembly/VtkImg.vue";
|
|
62
64
|
import VtkPage from "./components/assembly/VtkPage.vue";
|
|
63
65
|
import VtkPdf from "./components/assembly/VtkPdf.vue";
|
|
@@ -80,9 +82,10 @@ function install(app, options = {}) {
|
|
|
80
82
|
VtkDateSelector,
|
|
81
83
|
VtkDateTimePicker,
|
|
82
84
|
VtkDept,
|
|
83
|
-
VtkEmpty,
|
|
84
|
-
|
|
85
|
-
|
|
85
|
+
VtkEmpty,
|
|
86
|
+
VtkEmptyNew,
|
|
87
|
+
VtkFab,
|
|
88
|
+
VtkFormItem,
|
|
86
89
|
VtkImg,
|
|
87
90
|
VtkPage,
|
|
88
91
|
VtkPdf,
|
|
@@ -128,8 +131,9 @@ export default {
|
|
|
128
131
|
VtkDateSelector,
|
|
129
132
|
VtkDateTimePicker,
|
|
130
133
|
VtkDept,
|
|
131
|
-
VtkEmpty,
|
|
132
|
-
|
|
134
|
+
VtkEmpty,
|
|
135
|
+
VtkEmptyNew,
|
|
136
|
+
VtkFab,
|
|
133
137
|
VtkFormItem,
|
|
134
138
|
VtkImg,
|
|
135
139
|
VtkPage,
|