|
@@ -75,12 +75,7 @@
|
|
参数配置
|
|
参数配置
|
|
</a-button>
|
|
</a-button>
|
|
<a-button @click="goProjectPapers(record.id)"> 试卷列表 </a-button>
|
|
<a-button @click="goProjectPapers(record.id)"> 试卷列表 </a-button>
|
|
- <a-button @click="handleDeleteProjects([record.id])">
|
|
|
|
- 整体分析
|
|
|
|
- </a-button>
|
|
|
|
- <a-button @click="handleDeleteProjects([record.id])">
|
|
|
|
- 报告说明
|
|
|
|
- </a-button>
|
|
|
|
|
|
+ <a-button @click="goAllAnalysis(record.id)"> 整体分析 </a-button>
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-table>
|
|
@@ -276,4 +271,8 @@ function goProjectParams(id: number) {
|
|
function goProjectPapers(id: number) {
|
|
function goProjectPapers(id: number) {
|
|
router.push("papers/" + id);
|
|
router.push("papers/" + id);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+async function goAllAnalysis(projectId: number) {
|
|
|
|
+ router.push(`/project/allAnalysis/${projectId}`);
|
|
|
|
+}
|
|
</script>
|
|
</script>
|