'接口测试,性能测试首页报告状态'
This commit is contained in:
parent
c2f91a140e
commit
772e2b108c
|
@ -5,17 +5,17 @@
|
||||||
</template>
|
</template>
|
||||||
<el-table :data="tableData" class="table-content" @row-click="link">
|
<el-table :data="tableData" class="table-content" @row-click="link">
|
||||||
<el-table-column prop="name" :label="$t('commons.name')" width="150" show-overflow-tooltip/>
|
<el-table-column prop="name" :label="$t('commons.name')" width="150" show-overflow-tooltip/>
|
||||||
<el-table-column width="250" :label="$t('commons.create_time')">
|
<el-table-column width="200" :label="$t('commons.create_time')">
|
||||||
<template v-slot:default="scope">
|
<template v-slot:default="scope">
|
||||||
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column width="250" :label="$t('commons.update_time')">
|
<el-table-column width="200" :label="$t('commons.update_time')">
|
||||||
<template v-slot:default="scope">
|
<template v-slot:default="scope">
|
||||||
<span>{{ scope.row.updateTime | timestampFormatDate }}</span>
|
<span>{{ scope.row.updateTime | timestampFormatDate }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="status" :label="$t('commons.status')">
|
<el-table-column width="150" prop="status" :label="$t('commons.status')">
|
||||||
<template v-slot:default="{row}">
|
<template v-slot:default="{row}">
|
||||||
<ms-api-report-status :row="row"/>
|
<ms-api-report-status :row="row"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
</template>
|
</template>
|
||||||
<el-table :data="tableData" class="table-content" @row-click="link">
|
<el-table :data="tableData" class="table-content" @row-click="link">
|
||||||
<el-table-column prop="name" :label="$t('commons.name')" width="150" show-overflow-tooltip/>
|
<el-table-column prop="name" :label="$t('commons.name')" width="150" show-overflow-tooltip/>
|
||||||
<el-table-column width="250" :label="$t('commons.create_time')">
|
<el-table-column width="200" :label="$t('commons.create_time')">
|
||||||
<template v-slot:default="scope">
|
<template v-slot:default="scope">
|
||||||
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column width="250" :label="$t('commons.update_time')">
|
<el-table-column width="200" :label="$t('commons.update_time')">
|
||||||
<template v-slot:default="scope">
|
<template v-slot:default="scope">
|
||||||
<span>{{ scope.row.updateTime | timestampFormatDate }}</span>
|
<span>{{ scope.row.updateTime | timestampFormatDate }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="status" :label="$t('commons.status')">
|
<el-table-column width="150" prop="status" :label="$t('commons.status')">
|
||||||
<template v-slot:default="{row}">
|
<template v-slot:default="{row}">
|
||||||
<ms-performance-report-status :row="row"/>
|
<ms-performance-report-status :row="row"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue