fix: 接口测试首页控制台报错

This commit is contained in:
chenjianxing 2021-01-28 16:45:01 +08:00
parent 04eab6633e
commit 43aea99186
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
</el-table-column>
<el-table-column prop="testPlan" :label="$t('api_test.home_page.failed_case_list.table_coloum.test_plan')">
<template v-slot:default="{row}">
<div v-for="testPlan in row.testPlanDTOList" :key="testPlan.id">
<div v-for="(testPlan, index) in row.testPlanDTOList" :key="index">
<el-link type="info" @click="redirect('testPlanEdit',testPlan.id)">
{{ testPlan.name }};
</el-link>