update 任务详情弹窗增加操作日志

This commit is contained in:
2026-03-09 15:02:49 +08:00
parent f5706b8612
commit 1893f840c7

View File

@@ -15,13 +15,14 @@
<knowledgeSelect v-model="standard" />
</template>
</TableForm>
<!-- 展示任务的操作日志 开发中 等后端接口 -->
<div class="oprate-log" v-if="false">
<!-- 展示任务的操作日志 -->
<div class="oprate-log">
<BaseTable
listTitle="操作日志"
listTitle="任务操作日志"
tableName="SYSTEM_LOGS"
:api="pageApi"
:actionList="[]"
:params="searchParams"
fullHeight
hideSearch
>
@@ -68,6 +69,9 @@ const formAttrs = ref({
step: 0.01,
},
});
const searchParams = ref<any>({
businessId: props.taskInfo.uuid,
});
const localDetail = ref<any>({});
@@ -186,7 +190,8 @@ onMounted(() => {});
}
}
.oprate-log {
flex: 1;
// flex: 1;
height: calc(100% - 210px);
}
}
</style>