From cd66c3b714971238cd3b5fe5a5349fd885adf446 Mon Sep 17 00:00:00 2001 From: sy2084 Date: Tue, 30 Jul 2024 20:04:38 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E6=8A=A5=E8=A1=A8=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=AF=BC=E5=87=BA+=E6=A0=B7=E5=BC=8F=E9=9A=94=E7=A6=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 8 ++ index.html | 5 ++ src/App.vue | 7 +- src/api/preview/index.ts | 10 +++ src/components/common/y-chart.vue | 2 +- src/components/common/y-table.vue | 25 +++++- src/layout/index.vue | 3 - .../module-cfg/components/create-modal.vue | 6 +- .../module-cfg/components/field-modal.vue | 86 ++++++++++++++++++- src/views/config-manage/module-cfg/config.ts | 3 +- src/views/config-manage/module-cfg/index.vue | 4 +- .../project-cfg/components/create-modal.vue | 2 +- src/views/config-manage/project-cfg/index.vue | 2 +- src/views/config-manage/view-cfg/index.vue | 2 +- src/views/page-show-info/page-info/index,.vue | 6 +- .../view-all-manage/create-view/index.vue | 14 +++ .../view-all-manage/create-view/service.js | 3 +- src/views/view-all-manage/view-list/index.vue | 20 ++++- vite.config.ts | 10 +++ 19 files changed, 189 insertions(+), 29 deletions(-) diff --git a/components.d.ts b/components.d.ts index 7f0e73f..8bc14c1 100644 --- a/components.d.ts +++ b/components.d.ts @@ -10,6 +10,9 @@ declare module 'vue' { ABreadcrumb: typeof import('ant-design-vue/es')['Breadcrumb'] ABreadcrumbItem: typeof import('ant-design-vue/es')['BreadcrumbItem'] AButton: typeof import('ant-design-vue/es')['Button'] + ACheckbox: typeof import('ant-design-vue/es')['Checkbox'] + ACheckboxGroup: typeof import('ant-design-vue/es')['CheckboxGroup'] + ACol: typeof import('ant-design-vue/es')['Col'] AConfigProvider: typeof import('ant-design-vue/es')['ConfigProvider'] ADropdown: typeof import('ant-design-vue/es')['Dropdown'] AFloatButton: typeof import('ant-design-vue/es')['FloatButton'] @@ -17,15 +20,20 @@ declare module 'vue' { AFormItem: typeof import('ant-design-vue/es')['FormItem'] AInput: typeof import('ant-design-vue/es')['Input'] AInputNumber: typeof import('ant-design-vue/es')['InputNumber'] + AInputPassword: typeof import('ant-design-vue/es')['InputPassword'] AMenu: typeof import('ant-design-vue/es')['Menu'] AMenuItem: typeof import('ant-design-vue/es')['MenuItem'] AModal: typeof import('ant-design-vue/es')['Modal'] APagination: typeof import('ant-design-vue/es')['Pagination'] APopconfirm: typeof import('ant-design-vue/es')['Popconfirm'] ARadio: typeof import('ant-design-vue/es')['Radio'] + ARadioButton: typeof import('ant-design-vue/es')['RadioButton'] ARadioGroup: typeof import('ant-design-vue/es')['RadioGroup'] + ARangePicker: typeof import('ant-design-vue/es')['RangePicker'] + ARow: typeof import('ant-design-vue/es')['Row'] ASelect: typeof import('ant-design-vue/es')['Select'] ASpace: typeof import('ant-design-vue/es')['Space'] + ASpin: typeof import('ant-design-vue/es')['Spin'] ASwitch: typeof import('ant-design-vue/es')['Switch'] ATable: typeof import('ant-design-vue/es')['Table'] RouterLink: typeof import('vue-router')['RouterLink'] diff --git a/index.html b/index.html index c903bf5..345be57 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,11 @@ 悦码后台 +
diff --git a/src/App.vue b/src/App.vue index e5e9fe6..1bbcb13 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,16 +1,19 @@