|
@@ -78,26 +78,41 @@
|
|
|
>
|
|
|
重新计算
|
|
|
</a-button>
|
|
|
- <a-button @click="handleLogsOfProject(record.id)">
|
|
|
- 错误报告
|
|
|
- </a-button>
|
|
|
- <a-button
|
|
|
- v-if="
|
|
|
- record.status !== 'PROCESSING' &&
|
|
|
- store.isGreaterThanEqualRootOrgAdmin
|
|
|
- "
|
|
|
- @click="goProjectDataSource(record.id)"
|
|
|
- >
|
|
|
- 数据管理
|
|
|
- </a-button>
|
|
|
- <a-button
|
|
|
- v-if="record.status !== 'PROCESSING'"
|
|
|
- @click="goProjectParams(record.id)"
|
|
|
- >
|
|
|
- 参数配置
|
|
|
- </a-button>
|
|
|
- <a-button @click="goProjectPapers(record.id)"> 试卷列表 </a-button>
|
|
|
- <a-button @click="goAllAnalysis(record.id)"> 整体分析 </a-button>
|
|
|
+ <a-popover placement="bottom">
|
|
|
+ <template #content>
|
|
|
+ <a-button @click="handleLogsOfProject(record.id)" type="text">
|
|
|
+ 错误报告
|
|
|
+ </a-button>
|
|
|
+ <br />
|
|
|
+ <a-button
|
|
|
+ v-if="
|
|
|
+ record.status !== 'PROCESSING' &&
|
|
|
+ store.isGreaterThanEqualRootOrgAdmin
|
|
|
+ "
|
|
|
+ @click="goProjectDataSource(record.id)"
|
|
|
+ type="text"
|
|
|
+ >
|
|
|
+ 数据管理
|
|
|
+ </a-button>
|
|
|
+ <br />
|
|
|
+ <a-button
|
|
|
+ v-if="record.status !== 'PROCESSING'"
|
|
|
+ @click="goProjectParams(record.id)"
|
|
|
+ type="text"
|
|
|
+ >
|
|
|
+ 参数配置
|
|
|
+ </a-button>
|
|
|
+ <br />
|
|
|
+ <a-button @click="goProjectPapers(record.id)" type="text">
|
|
|
+ 试卷列表
|
|
|
+ </a-button>
|
|
|
+ <br />
|
|
|
+ <a-button @click="goAllAnalysis(record.id)" type="text">
|
|
|
+ 整体分析
|
|
|
+ </a-button>
|
|
|
+ </template>
|
|
|
+ <a-button>更多</a-button>
|
|
|
+ </a-popover>
|
|
|
</span>
|
|
|
</template>
|
|
|
</a-table>
|