fix:buf修复,任务详情弹窗修改

This commit is contained in:
2026-01-15 09:34:35 +08:00
parent 51cf50c054
commit 7e4c9084ef
7 changed files with 43 additions and 44 deletions

View File

@@ -61,16 +61,6 @@
</div>
</template>
</Dialog>
<taskDetail
v-if="showTaskDetailDialog"
:taskId="currentTaskInfo.id"
:currentTaskInfo="currentTaskInfo"
:show-footer="false"
:show-task-info="false"
@closeFn="showTaskDetailDialog = false"
>
</taskDetail>
</div>
<attachments :demandId="demandInfo.uuid" v-model:visible="attachmentsVisible"></attachments>
</template>
@@ -94,7 +84,6 @@ import { enableConfigByTenant, TENANT_ENUM } from '@/tenants/tenant';
import { syncDemandList } from '../taskPage';
import { getChildrenNodeListApi } from '@/api/project/node';
import type { Options } from '@/types';
import taskDetail from '@/views/task/projectDetail/components/taskDetail.vue';
const env = import.meta.env;
const PREFIX = env.VITE_API_PREFIX_PROJECT;
@@ -115,12 +104,12 @@ const emits = defineEmits(['visibleDialog', 'loadTableForm', 'changeForm']);
const demandParams = ref({ type: 0 });
const commonStore = CommonStore();
const currentTaskInfo = ref({ id: '', uuid: '' });
const showTaskDetailDialog = ref(false);
const showTaskDetailFun = (row: any) => {
showTaskDetailDialog.value = true;
currentTaskInfo.value = row;
// showTaskDetailDialog.value = true;
// currentTaskInfo.value = row;
visibleDialog(false, row);
};
const actionList = ref([
{