diff --git a/src/api/system/taglibrary/index.ts b/src/api/system/taglibrary/index.ts index ff5efcc..9062c28 100644 --- a/src/api/system/taglibrary/index.ts +++ b/src/api/system/taglibrary/index.ts @@ -18,7 +18,7 @@ export const TagLibraryApi = { }, // 查询企业标签详情 - getTagLibrary: async (id: number) => { + getTagLibrary: async (id: any) => { return await request.get({ url: `/system/tag-library/get?id=` + id }) }, diff --git a/src/api/system/taskinfo/index.ts b/src/api/system/taskinfo/index.ts index a299463..0189937 100644 --- a/src/api/system/taskinfo/index.ts +++ b/src/api/system/taskinfo/index.ts @@ -25,7 +25,7 @@ export const TaskInfoApi = { }, // 查询任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。详情 - getTaskInfo: async (id: number) => { + getTaskInfo: async (id: any) => { return await request.get({ url: `/system/task-info/get?id=` + id }) }, diff --git a/src/layout/components/Logo/src/Logo.vue b/src/layout/components/Logo/src/Logo.vue index 7dced3f..c26d34c 100644 --- a/src/layout/components/Logo/src/Logo.vue +++ b/src/layout/components/Logo/src/Logo.vue @@ -62,7 +62,7 @@ watch( :class="[ prefixCls, layout !== 'classic' ? `${prefixCls}__Top` : '', - 'flex !h-[var(--logo-height)] items-center cursor-pointer justify-center relative decoration-none overflow-hidden' + 'flex !h-[var(--logo-height)] items-center cursor-pointer justify-center relative decoration-none overflow-hidden p-20px' ]" to="/" > @@ -77,7 +77,7 @@ watch(
([]) }) @@ -258,6 +258,7 @@ const formRules = reactive({ ], planTime: [{ required: true, message: '时间周期不能为空', trigger: 'blur' }] }) +const {query}=useRoute() const formRef = ref() // 表单 Ref const tagList = ref([]) const queryFormRef = ref() // 搜索的表单 @@ -387,8 +388,21 @@ async function submitForm() { } } +function init(){ + if(query.id){ + TaskInfoApi.getTaskInfo(query.id).then(res=>{ + formData.value=res + formData.value.planTime=[formData.value.startDate,formData.value.endDate] + formData.value.enterprises=res.enterpriseInspectionsIdes + }) + } +} + getEnterPriseList() getTagList() +onMounted(()=>{ + init() +})