feat(接口测试): 场景导入接口 case 增加按照创建时间排序
--story=1007329 --user=王孝刚 【绿米联创】场景导入接口 case 增加按照创建时间排序 https://www.tapd.cn/55049933/s/1157572
This commit is contained in:
parent
7ef9928a2d
commit
f0080cb146
|
@ -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"
|
||||||
|
|
|
@ -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')"
|
||||||
|
|
Loading…
Reference in New Issue