fix(接口定义): 修复删除引用的场景提示信息错误的缺陷
--bug=1018780 --user=王孝刚 【接口测试】删除被引用的场景提示信息错误 https://www.tapd.cn/55049933/s/1276433
This commit is contained in:
parent
2b7f1e5e6f
commit
5abcdc941f
|
@ -1087,7 +1087,7 @@ export default {
|
||||||
if (alertMsg === "") {
|
if (alertMsg === "") {
|
||||||
alertMsg = this.$t('load_test.delete_threadgroup_confirm') + " ?";
|
alertMsg = this.$t('load_test.delete_threadgroup_confirm') + " ?";
|
||||||
} else {
|
} else {
|
||||||
alertMsg += this.$t('api_test.is_continue') + " ?";
|
alertMsg += this.$t('api_test.is_continue') + this.$t('commons.delete') + " ?";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
operationConfirm(this, alertMsg, () => {
|
operationConfirm(this, alertMsg, () => {
|
||||||
|
@ -1250,7 +1250,7 @@ export default {
|
||||||
if (alertMsg === "") {
|
if (alertMsg === "") {
|
||||||
alertMsg = this.$t('load_test.delete_threadgroup_confirm');
|
alertMsg = this.$t('load_test.delete_threadgroup_confirm');
|
||||||
} else {
|
} else {
|
||||||
alertMsg += this.$t('api_test.is_continue');
|
alertMsg += this.$t('api_test.is_continue') + this.$t('commons.delete');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue