@ebiz/designer-components 0.0.38 → 0.0.39
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/index.mjs
CHANGED
@@ -131992,7 +131992,22 @@ const WTt = /* @__PURE__ */ kt(kAt, [["render", OAt], ["__scopeId", "data-v-d22a
|
|
131992
131992
|
},
|
131993
131993
|
emits: ["scroll", "load-more", "update:formData"],
|
131994
131994
|
setup(e, { emit: t }) {
|
131995
|
-
const n = J(1), r = J(10), a = J(!0), o = J(!1), i = J(0), l = J([10, 20, 50, 100]), s = J([
|
131995
|
+
const n = J(1), r = J(10), a = J(!0), o = J(!1), i = J(0), l = J([10, 20, 50, 100]), s = J([
|
131996
|
+
{
|
131997
|
+
id: 1,
|
131998
|
+
name: "张三",
|
131999
|
+
age: 18,
|
132000
|
+
gender: "男",
|
132001
|
+
address: "北京市海淀区"
|
132002
|
+
},
|
132003
|
+
{
|
132004
|
+
id: 2,
|
132005
|
+
name: "李四",
|
132006
|
+
age: 20,
|
132007
|
+
gender: "女",
|
132008
|
+
address: "北京市朝阳区"
|
132009
|
+
}
|
132010
|
+
]), u = e, c = J({ ...u.formData }), d = J(""), f = async () => {
|
131996
132011
|
let y = {
|
131997
132012
|
keyword: d.value
|
131998
132013
|
};
|
package/package.json
CHANGED
@@ -79,7 +79,22 @@ const refreshing = ref(false)
|
|
79
79
|
const total = ref(0)
|
80
80
|
const pageSizeOptions = ref([10, 20, 50, 100])
|
81
81
|
|
82
|
-
const data = ref([
|
82
|
+
const data = ref([
|
83
|
+
{
|
84
|
+
id: 1,
|
85
|
+
name: '张三',
|
86
|
+
age: 18,
|
87
|
+
gender: '男',
|
88
|
+
address: '北京市海淀区'
|
89
|
+
},
|
90
|
+
{
|
91
|
+
id: 2,
|
92
|
+
name: '李四',
|
93
|
+
age: 20,
|
94
|
+
gender: '女',
|
95
|
+
address: '北京市朝阳区'
|
96
|
+
}
|
97
|
+
]);
|
83
98
|
|
84
99
|
const props = defineProps({
|
85
100
|
showPageHeader: {
|