fix(接口测试): 修复测试计划状态下拉选项不全的缺陷

--bug=1027235 --user=王孝刚 【接口测试】场景批量添加到测试计划-状态下拉选项不全
https://www.tapd.cn/55049933/s/1384017
This commit is contained in:
wxg0103 2023-06-20 15:35:31 +08:00 committed by 刘瑞斌
parent f1f2326bca
commit fbde49c822
1 changed files with 16 additions and 0 deletions

View File

@ -61,6 +61,14 @@
:command="{ id: scope.row.id, status: 'Completed' }">
{{ $t('test_track.plan.plan_status_completed') }}
</el-dropdown-item>
<el-dropdown-item :disabled="!isTestManagerOrTestUser"
:command="{id: scope.row.id, status: 'Finished'}">
{{ $t('test_track.plan.plan_status_finished') }}
</el-dropdown-item>
<el-dropdown-item :disabled="!isTestManagerOrTestUser"
:command="{id: scope.row.id, status: 'Archived'}">
{{ $t('test_track.plan.plan_status_archived') }}
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</span>
@ -184,6 +192,14 @@ export default {
text: this.$t('test_track.plan.plan_status_completed'),
value: 'Completed',
},
{
text: this.$t('test_track.plan.plan_status_finished'),
value: 'Finished'
},
{
text: this.$t('test_track.plan.plan_status_archived'),
value: 'Archived'
}
],
stageFilters: [
{ text: this.$t('test_track.plan.smoke_test'), value: 'smoke' },