fix(接口测试): 修复编辑接口定义标签不提示未保存的缺陷

--bug=1019241 --user=王孝刚 【接口测试】接口定义-编辑修改接口定义的标签和描述不保存 ,关闭时未提示保存弹框
https://www.tapd.cn/55049933/s/1285664
This commit is contained in:
wxg0103 2022-11-01 18:35:08 +08:00 committed by wxg0103
parent e0a33079d5
commit 8c50e34c9b
1 changed files with 2 additions and 2 deletions

View File

@ -172,14 +172,14 @@ export default {
},
'basicForm.description': {
handler(v, v1) {
if (v && v1 && v !== v1) {
if (v && v !== v1) {
this.apiMapStatus();
}
}
},
'basicForm.tags': {
handler(v, v1) {
if (v && v1 && JSON.stringify(v) !== JSON.stringify(v1) && v1.length !== 0) {
if (v && v1 && JSON.stringify(v) !== JSON.stringify(v1)) {
this.apiMapStatus();
}
}