|
@@ -60,6 +60,7 @@
|
|
|
查看日志
|
|
|
</el-button>
|
|
|
|
|
|
+ <el-button type="primary" link icon="Refresh" @click="openDir(scope.row)"> 打开文件夹 </el-button>
|
|
|
<el-button type="primary" link icon="Refresh" @click="exportData(scope.row)"> 导出结果 </el-button>
|
|
|
</template>
|
|
|
</ProTable>
|
|
@@ -323,6 +324,13 @@ const exportData = row => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+const openDir = row => {
|
|
|
+ console.log(row)
|
|
|
+ http.get<any>('/identification/identificationSubtaskDetails/openDir', { directory: row.preprocessPath }, { loading: true }).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
let imgDataList = ref(reactive([]))
|
|
|
let titleMsg = ref('')
|
|
|
let valDialogVisible = ref(false)
|