fix(接口测试): 修复条件控制器的值不能修改的bug
This commit is contained in:
parent
c0fe259276
commit
d7a9d7df1a
|
@ -89,7 +89,7 @@ export default {
|
|||
this.visible = false;
|
||||
},
|
||||
change(value) {
|
||||
if (value.indexOf("null") > 0) {
|
||||
if (value.indexOf("null") > 0 && !!this.controller.value) {
|
||||
this.controller.value = "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue