vue2server7 7.0.108 → 7.0.110
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/docs/superpowers/plans/2026-05-13-table-column-config-demo-plan.md +275 -0
- package/docs/superpowers/plans/2026-05-13-table-column-settings-plan.md +443 -0
- package/docs/superpowers/specs/2026-05-13-table-column-config-demo-design.md +74 -0
- package/docs/superpowers/specs/2026-05-13-table-column-settings-component.md +69 -0
- package/frontEnd/src/components/BaseTable.vue +296 -0
- package/frontEnd/src/components/TableColumnSettings.vue +296 -0
- package/frontEnd/src/pages/BaseTableDemoPage.vue +236 -0
- package/frontEnd/src/pages/ColumnConfigDemoPage.vue +166 -0
- package/frontEnd/src/router/routes.js +20 -0
- package/package.json +1 -1
|
@@ -6,6 +6,8 @@ import PositionReportPage from '../pages/PositionReportPage.vue'
|
|
|
6
6
|
import DateRangePage from '../pages/DateRangePage.vue'
|
|
7
7
|
import OrgTreeSelectPage from '../pages/OrgTreeSelectPage.vue'
|
|
8
8
|
import MoneyInputPage from '../pages/MoneyInputPage.vue'
|
|
9
|
+
import ColumnConfigDemoPage from '../pages/ColumnConfigDemoPage.vue'
|
|
10
|
+
import BaseTableDemoPage from '../pages/BaseTableDemoPage.vue'
|
|
9
11
|
|
|
10
12
|
export const routes = [
|
|
11
13
|
{
|
|
@@ -83,5 +85,23 @@ export const routes = [
|
|
|
83
85
|
title: '金额输入',
|
|
84
86
|
showInMenu: true
|
|
85
87
|
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
path: '/column-config-demo',
|
|
91
|
+
name: 'ColumnConfigDemo',
|
|
92
|
+
component: ColumnConfigDemoPage,
|
|
93
|
+
meta: {
|
|
94
|
+
title: '表格列配置演示',
|
|
95
|
+
showInMenu: true
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
path: '/base-table-demo',
|
|
100
|
+
name: 'BaseTableDemo',
|
|
101
|
+
component: BaseTableDemoPage,
|
|
102
|
+
meta: {
|
|
103
|
+
title: '封装表格组件演示',
|
|
104
|
+
showInMenu: true
|
|
105
|
+
}
|
|
86
106
|
}
|
|
87
107
|
]
|