|
@@ -28,7 +28,7 @@
|
|
|
v-model="nowyear"
|
|
|
placeholder="请选择"
|
|
|
size="mini"
|
|
|
- @change="regionChange()"
|
|
|
+ @change="yearChange()"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in yearList"
|
|
@@ -280,6 +280,11 @@ export default {
|
|
|
unitChange() {
|
|
|
this.setLnbh(this.lnbndata);
|
|
|
},
|
|
|
+ yearChange() {
|
|
|
+ let yobj = this.yearList.find((y) => y.year == this.nowyear);
|
|
|
+ this.setImager(yobj);
|
|
|
+ this.regionChange();
|
|
|
+ },
|
|
|
dlbmChange() {
|
|
|
let nowtype = this.typeList.find((x) => x.id == this.dlbm);
|
|
|
this.gtype = nowtype.label;
|