|
@@ -549,7 +549,7 @@
|
|
handler(newValue, oldValue) {
|
|
handler(newValue, oldValue) {
|
|
if (newValue == '1') {
|
|
if (newValue == '1') {
|
|
this.subForm.originId = '100000';
|
|
this.subForm.originId = '100000';
|
|
- } else if (newValue != '') {
|
|
|
|
|
|
+ } else if (newValue != '' && this.subForm.originId == '100000') {
|
|
this.subForm.originId = '';
|
|
this.subForm.originId = '';
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -560,7 +560,7 @@
|
|
handler(newValue, oldValue) {
|
|
handler(newValue, oldValue) {
|
|
if (newValue == '100000') {
|
|
if (newValue == '100000') {
|
|
this.subForm.type = '1';
|
|
this.subForm.type = '1';
|
|
- } else if (newValue != '') {
|
|
|
|
|
|
+ } else if (newValue != '' && this.subForm.type == '1') {
|
|
this.subForm.type = '';
|
|
this.subForm.type = '';
|
|
}
|
|
}
|
|
},
|
|
},
|