resolver-egretimp-plus 0.0.67 → 0.0.68
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/theme/element/index.css +1 -1
- package/dist/theme/element/src/components/tabs.scss +5 -0
- package/dist/web/index.js +1 -1
- package/package.json +1 -1
- package/src/components/packages-web/CustomComponentTable.jsx +6 -5
- package/src/components/tabs/src/tab-nav.jsx +3 -1
- package/src/theme/element/components/tabs.scss +5 -0
package/package.json
CHANGED
|
@@ -72,6 +72,11 @@ export default {
|
|
|
72
72
|
return normalColumnConfig(config)
|
|
73
73
|
})
|
|
74
74
|
})
|
|
75
|
+
const page = reactive({
|
|
76
|
+
pageNum: 1,
|
|
77
|
+
pageSize: 5,
|
|
78
|
+
total: 0,
|
|
79
|
+
})
|
|
75
80
|
const isFrontPage = computed(() => {
|
|
76
81
|
return props.config?.frontPageFlag === '1'
|
|
77
82
|
})
|
|
@@ -349,11 +354,7 @@ export default {
|
|
|
349
354
|
}
|
|
350
355
|
return attrs
|
|
351
356
|
})
|
|
352
|
-
|
|
353
|
-
pageNum: 1,
|
|
354
|
-
pageSize: 5,
|
|
355
|
-
total: 0,
|
|
356
|
-
})
|
|
357
|
+
|
|
357
358
|
// 页码变动
|
|
358
359
|
watch(() => page.pageNum, (val) => {
|
|
359
360
|
const fn = props.config?.currentChange
|