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.
@@ -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
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2server7",
3
- "version": "7.0.108",
3
+ "version": "7.0.110",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "dev": "nodemon --watch src --ext ts --exec \"ts-node src/app.ts\"",