diff --git a/yudao-ui-admin-vue3/src/components/Footer/src/Footer.vue b/yudao-ui-admin-vue3/src/components/Footer/src/Footer.vue index 72248ec27..00c83ed4c 100644 --- a/yudao-ui-admin-vue3/src/components/Footer/src/Footer.vue +++ b/yudao-ui-admin-vue3/src/components/Footer/src/Footer.vue @@ -17,6 +17,6 @@ const title = computed(() => appStore.getTitle) :class="prefixCls" class="text-center text-[var(--el-text-color-placeholder)] bg-[var(--app-contnet-bg-color)] h-[var(--app-footer-height)] leading-[var(--app-footer-height)] dark:bg-[var(--el-bg-color)]" > - Copyright ©2022-{{ title }} +

Copyright ©2022-{{ title }}

diff --git a/yudao-ui-admin-vue3/src/plugins/vxeTable/renderer/index.tsx b/yudao-ui-admin-vue3/src/plugins/vxeTable/renderer/index.tsx index 9e048dddd..ec8cc45d6 100644 --- a/yudao-ui-admin-vue3/src/plugins/vxeTable/renderer/index.tsx +++ b/yudao-ui-admin-vue3/src/plugins/vxeTable/renderer/index.tsx @@ -1,4 +1,5 @@ import './dataTimePicker' import './dict' +import './html' import './link' import './img' diff --git a/yudao-ui-admin-vue3/src/views/system/dept/index.vue b/yudao-ui-admin-vue3/src/views/system/dept/index.vue index 213cd148d..d7df0348c 100644 --- a/yudao-ui-admin-vue3/src/views/system/dept/index.vue +++ b/yudao-ui-admin-vue3/src/views/system/dept/index.vue @@ -182,7 +182,6 @@ const submitForm = async () => { const data = unref(formRef)?.formModel as DeptApi.DeptVO data.parentId = deptParentId.value data.leaderUserId = leaderUserId.value - console.info(data) if (actionType.value === 'create') { await DeptApi.createDeptApi(data) message.success(t('common.createSuccess')) diff --git a/yudao-ui-admin-vue3/src/views/system/dict/index.vue b/yudao-ui-admin-vue3/src/views/system/dict/index.vue index be492458e..ac22d4502 100644 --- a/yudao-ui-admin-vue3/src/views/system/dict/index.vue +++ b/yudao-ui-admin-vue3/src/views/system/dict/index.vue @@ -188,7 +188,6 @@ const handleDataUpdate = async (rowId: number) => { const parentType = ref('') const tableTypeSelect = ref(false) const cellClickEvent: VxeTableEvents.CellClick = async ({ row }) => { - console.info(row['type']) tableTypeSelect.value = true queryParams.dictType = row['type'] await dataGetList(xDataGrid)