diff --git a/src/api/system/taglibrary/index.ts b/src/api/system/taglibrary/index.ts index 03ceec1..ce3a508 100644 --- a/src/api/system/taglibrary/index.ts +++ b/src/api/system/taglibrary/index.ts @@ -20,7 +20,7 @@ export const TagLibraryApi = { // 查询企业标签分页 childrenList: async (id: number) => { - return await request.get({ url: `/system/tag-library/childrenList?id=`+id }) + return await request.get({ url: `/system/tag-library/childrenList?id=` + id }) }, // 查询企业标签详情 @@ -43,7 +43,7 @@ export const TagLibraryApi = { return await request.delete({ url: `/system/tag-library/delete?id=` + id }) }, - // 删除企业标签 + // 删除企业标签 tagLibraryList: async (codeList: string) => { return await request.get({ url: `/system/tag-library/list?` + codeList }) }, @@ -52,4 +52,10 @@ export const TagLibraryApi = { exportTagLibrary: async (params) => { return await request.download({ url: `/system/tag-library/export-excel`, params }) }, + /** + * 获取标签列表 + */ + getTagList: async (params: any) => { + return await request.get({ url: `/system/tag-library/pageInfo`, params }) + } } diff --git a/src/components/ContentWrap/src/ContentWrap.vue b/src/components/ContentWrap/src/ContentWrap.vue index e603596..8847219 100644 --- a/src/components/ContentWrap/src/ContentWrap.vue +++ b/src/components/ContentWrap/src/ContentWrap.vue @@ -11,7 +11,7 @@ const prefixCls = getPrefixCls('content-wrap') defineProps({ title: propTypes.string.def(''), message: propTypes.string.def(''), - bodyStyle: propTypes.object.def({ padding: '10px' }) + bodyStyle: propTypes.object.def({ padding: '40px' }) }) diff --git a/src/components/Dialog/src/Dialog.vue b/src/components/Dialog/src/Dialog.vue index c38eb83..2c17995 100644 --- a/src/components/Dialog/src/Dialog.vue +++ b/src/components/Dialog/src/Dialog.vue @@ -12,7 +12,7 @@ const props = defineProps({ width: propTypes.oneOfType([String, Number]).def('40%'), scroll: propTypes.bool.def(false), // 是否开启滚动条。如果是的话,按照 maxHeight 设置最大高度 maxHeight: propTypes.oneOfType([String, Number]).def('400px'), - + top: propTypes.string.def('15vh') }) const getBindValue = computed(() => { @@ -29,9 +29,7 @@ const getBindValue = computed(() => { const isFullscreen = ref(false) -const toggleFull = () => { - isFullscreen.value = !unref(isFullscreen) -} + const dialogHeight = ref(isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight) @@ -62,13 +60,12 @@ const dialogStyle = computed(() => {