清单数据加载

This commit is contained in:
shenyanpei
2021-09-27 15:06:23 +08:00
parent e5957930b9
commit dc99934854
@@ -374,18 +374,15 @@ export default {
}); });
} }
}, },
created() {
this.searchSarAccess();
},
mounted() { mounted() {
// 分页查询数据 // 分页查询数据
this.searchSarAccess();
// 从数据库中查询各下拉框数据 // 从数据库中查询各下拉框数据
this.$http.get("sys/dictype/getDicTypeListCode", "", { this.$http.get("sys/dictype/getDicTypeListCode", "", {
_this: this _this: this
}, res => { }, res => {
this.countryOptions = res.data.COUNTRY; this.countryOptions = res.data.COUNTRY;
this.setMap(this.countryOptions); this.setMap(this.countryOptions);
this.searchSarAccess();
}, e => { }, e => {
}); });
} }