|
@@ -892,9 +892,11 @@ export default {
|
|
|
const { isAmountFixed, stampDutyStatus } = this.contractForm
|
|
|
if(!isAmountFixed && stampDutyStatus == 2) {
|
|
|
this.contractForm.stampDutyStatus = 3
|
|
|
- if ([0, 1].includes(stampDutyStatus)) {
|
|
|
- this.contractForm.stampDutyTime = ''
|
|
|
- }
|
|
|
+ setTimeout(() => {
|
|
|
+ if ([0, 1].includes(this.contractForm.stampDutyStatus)) {
|
|
|
+ this.contractForm.stampDutyTime = ''
|
|
|
+ }
|
|
|
+ }, 300);
|
|
|
}
|
|
|
|
|
|
let val = {
|