fix(接口测试): 修复编辑接口定义标签不提示未保存的缺陷
--bug=1019241 --user=王孝刚 【接口测试】接口定义-编辑修改接口定义的标签和描述不保存 ,关闭时未提示保存弹框 https://www.tapd.cn/55049933/s/1285664
This commit is contained in:
parent
e0a33079d5
commit
8c50e34c9b
|
@ -172,14 +172,14 @@ export default {
|
||||||
},
|
},
|
||||||
'basicForm.description': {
|
'basicForm.description': {
|
||||||
handler(v, v1) {
|
handler(v, v1) {
|
||||||
if (v && v1 && v !== v1) {
|
if (v && v !== v1) {
|
||||||
this.apiMapStatus();
|
this.apiMapStatus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'basicForm.tags': {
|
'basicForm.tags': {
|
||||||
handler(v, v1) {
|
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();
|
this.apiMapStatus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue