feat(接口测试): 场景导入接口 case 增加按照创建时间排序

--story=1007329 --user=王孝刚 【绿米联创】场景导入接口 case 增加按照创建时间排序
https://www.tapd.cn/55049933/s/1157572
This commit is contained in:
wxg0103 2022-05-13 10:35:09 +08:00 committed by f2c-ci-robot[bot]
parent 7ef9928a2d
commit f0080cb146
2 changed files with 29 additions and 9 deletions

View File

@ -71,6 +71,16 @@
prop="createUser" prop="createUser"
:label="'创建人'"/> :label="'创建人'"/>
<ms-table-column
sortable="createTime"
width="160px"
:label="$t('commons.create_time')"
prop="createTime">
<template v-slot:default="scope">
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
</template>
</ms-table-column>
<ms-table-column <ms-table-column
sortable="updateTime" sortable="updateTime"
width="160px" width="160px"

View File

@ -76,6 +76,16 @@
</template> </template>
</ms-table-column> </ms-table-column>
<ms-table-column
sortable="createTime"
width="160px"
:label="$t('commons.create_time')"
prop="createTime">
<template v-slot:default="scope">
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
</template>
</ms-table-column>
<ms-table-column <ms-table-column
width="160" width="160"
:label="$t('api_test.definition.api_last_time')" :label="$t('api_test.definition.api_last_time')"