|
@@ -81,7 +81,11 @@
|
|
|
<a-popover placement="bottom">
|
|
|
<template #content>
|
|
|
<div class="tw-flex tw-flex-col">
|
|
|
- <a-button @click="handleLogsOfProject(record.id)" type="text">
|
|
|
+ <a-button
|
|
|
+ @click="handleLogsOfProject(record.id)"
|
|
|
+ type="text"
|
|
|
+ style="color: white"
|
|
|
+ >
|
|
|
错误报告
|
|
|
</a-button>
|
|
|
<a-button
|
|
@@ -91,6 +95,7 @@
|
|
|
"
|
|
|
@click="goProjectDataSource(record.id)"
|
|
|
type="text"
|
|
|
+ style="color: white"
|
|
|
>
|
|
|
数据管理
|
|
|
</a-button>
|
|
@@ -98,13 +103,22 @@
|
|
|
v-if="record.status !== 'PROCESSING'"
|
|
|
@click="goProjectParams(record.id)"
|
|
|
type="text"
|
|
|
+ style="color: white"
|
|
|
>
|
|
|
参数配置
|
|
|
</a-button>
|
|
|
- <a-button @click="goProjectPapers(record.id)" type="text">
|
|
|
+ <a-button
|
|
|
+ @click="goProjectPapers(record.id)"
|
|
|
+ type="text"
|
|
|
+ style="color: white"
|
|
|
+ >
|
|
|
试卷列表
|
|
|
</a-button>
|
|
|
- <a-button @click="goAllAnalysis(record.id)" type="text">
|
|
|
+ <a-button
|
|
|
+ @click="goAllAnalysis(record.id)"
|
|
|
+ type="text"
|
|
|
+ style="color: white"
|
|
|
+ >
|
|
|
整体分析
|
|
|
</a-button>
|
|
|
</div>
|