|
|
@ -251,10 +251,20 @@ export default { |
|
|
|
created() { |
|
|
|
this.getList(); |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
enterpriseId: { |
|
|
|
handler(n, o) { |
|
|
|
this.enterpriseId = n; |
|
|
|
this.getList(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
/** 查询管理体系信息列表 */ |
|
|
|
getList() { |
|
|
|
this.loading = true; |
|
|
|
// console.log("this.enterpriseId", this.enterpriseId); |
|
|
|
this.queryParams.data.enterpriseId = this.enterpriseId; |
|
|
|
listSystem(this.queryParams).then((response) => { |
|
|
|
this.systemList = response.records; |
|
|
|
this.total = response.total; |
|
|
|