|
@@ -378,6 +378,11 @@ export default {
|
|
|
return `${yearCN}${this.tag.label}`
|
|
return `${yearCN}${this.tag.label}`
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ watch: {
|
|
|
|
|
+ year() {
|
|
|
|
|
+ this.getData();
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
handleReady() {
|
|
handleReady() {
|
|
|
this.getData();
|
|
this.getData();
|
|
@@ -413,7 +418,7 @@ export default {
|
|
|
d24: this.formData.d24,
|
|
d24: this.formData.d24,
|
|
|
d25: this.formData.d25,
|
|
d25: this.formData.d25,
|
|
|
d30: this.formData.d30,
|
|
d30: this.formData.d30,
|
|
|
- d31: this.formData.d31,
|
|
|
|
|
|
|
+ d31: this.formData.d31 === null ? "" : this.formData.d31,
|
|
|
d32: this.formData.d32,
|
|
d32: this.formData.d32,
|
|
|
d33: this.formData.d33,
|
|
d33: this.formData.d33,
|
|
|
};
|
|
};
|