diff --git a/components.d.ts b/components.d.ts
index 087f8e1..2f988da 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -10,6 +10,8 @@ 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']
@@ -17,16 +19,21 @@ declare module 'vue' {
AForm: typeof import('ant-design-vue/es')['Form']
AFormItem: typeof import('ant-design-vue/es')['FormItem']
AInput: typeof import('ant-design-vue/es')['Input']
+ AInputNumber: typeof import('ant-design-vue/es')['InputNumber']
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']
RouterView: typeof import('vue-router')['RouterView']
diff --git a/src/plugins/antv-g2plot/line.vue b/src/plugins/antv-g2plot/line.vue
index 1012be1..eeeeba9 100644
--- a/src/plugins/antv-g2plot/line.vue
+++ b/src/plugins/antv-g2plot/line.vue
@@ -3,7 +3,7 @@
diff --git a/src/router/routes.ts b/src/router/routes.ts
index 20311d6..5d46619 100644
--- a/src/router/routes.ts
+++ b/src/router/routes.ts
@@ -104,7 +104,7 @@ const routeList: RouteType[] = [
name: "page-info",
component: () =>
import("@/views/page-show-info/page-info/index,.vue"),
- meta: { title: "页面展示" },
+ meta: { title: "项目报表" },
isMenu: true,
children: [],
},
diff --git a/src/views/config-manage/module-cfg/components/create-modal.vue b/src/views/config-manage/module-cfg/components/create-modal.vue
index 1955be3..4587eec 100644
--- a/src/views/config-manage/module-cfg/components/create-modal.vue
+++ b/src/views/config-manage/module-cfg/components/create-modal.vue
@@ -56,19 +56,12 @@
/>
-
@@ -389,6 +405,9 @@ const toFilt = () => {
.input-item {
width: 180px;
}
+.date-item {
+ width: 240px;
+}
.y-table-content {
margin-top: 10px;
}
diff --git a/src/views/view-all-manage/view-list/index.vue b/src/views/view-all-manage/view-list/index.vue
index d6ac8ed..3f9d73a 100644
--- a/src/views/view-all-manage/view-list/index.vue
+++ b/src/views/view-all-manage/view-list/index.vue
@@ -151,9 +151,6 @@ const toGetViewInfo = (params = {}) => {
...params,
}).then((res) => {
selectViewInfo.value = res.data;
- delete selectViewInfo.value.config.line.isGroup
- delete selectViewInfo.value.config.line.label
- selectViewInfo.value.config.line.data = res.data.config.line.data
});
};