diff --git a/src/components/baInput/components/iconSelector.vue b/src/components/baInput/components/iconSelector.vue index 4d95eaf..c376c4e 100644 --- a/src/components/baInput/components/iconSelector.vue +++ b/src/components/baInput/components/iconSelector.vue @@ -169,15 +169,16 @@ const onChangeTab = (name: IconType) => { getAwesomeIconfontNames().then((res) => { state.fontIconNames = res.map((name) => `fa ${name}`) }) - } else if (name == 'ali') { - getIconfontNames().then((res) => { - state.fontIconNames = res.map((name) => `iconfont ${name}`) - }) - } else if (name == 'local') { - getLocalIconfontNames().then((res) => { - state.fontIconNames = res - }) - } + } + // else if (name == 'ali') { + // getIconfontNames().then((res) => { + // state.fontIconNames = res.map((name) => `iconfont ${name}`) + // }) + // } else if (name == 'local') { + // getLocalIconfontNames().then((res) => { + // state.fontIconNames = res + // }) + // } } const onIcon = (icon: string) => { state.iconSelectorMouseover = state.popoverVisible = false diff --git a/src/components/table/defaultAttribute.ts b/src/components/table/defaultAttribute.ts index 7f42ee0..28040bc 100644 --- a/src/components/table/defaultAttribute.ts +++ b/src/components/table/defaultAttribute.ts @@ -1,6 +1,7 @@ -export const defaultAttribute = { +import { VxeTableProps } from "vxe-table"; + +export const defaultAttribute:VxeTableProps = { align: 'center', - class: 'ba-data-table w100', headerCellClassName: 'table-header-cell', border: true, stripe: true, diff --git a/src/components/table/header/index.vue b/src/components/table/header/index.vue index b1aec2a..e4f573a 100644 --- a/src/components/table/header/index.vue +++ b/src/components/table/header/index.vue @@ -18,8 +18,9 @@
-