diff --git a/src/components/PageContent/index.vue b/src/components/PageContent/index.vue
index 8db642bb..0dc13745 100644
--- a/src/components/PageContent/index.vue
+++ b/src/components/PageContent/index.vue
@@ -57,51 +57,73 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -447,7 +469,18 @@ export interface IContentConfig {
}
>;
// 表格工具栏右侧图标
- defaultToolbar?: ("refresh" | "filter" | "exports" | "search")[];
+ defaultToolbar?: Array<
+ | "refresh"
+ | "filter"
+ | "exports"
+ | "search"
+ | {
+ name: string;
+ icon: string;
+ title?: string;
+ auth?: string;
+ }
+ >;
// table组件列属性(额外的属性templet,operat,slotName)
cols: Array<{
type?: "default" | "selection" | "index" | "expand";