diff --git a/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue b/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue index 68b8e6a5c..08f77acdb 100644 --- a/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue +++ b/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue @@ -234,12 +234,12 @@ export default { this.title = `${cfg.menuName}( ${cfg.gbStandCount}/${cfg.fbStandCount}/${cfg.esStandCount} )` this.searchForm.menuId = cfg.id this.initSearchForm.menuId = cfg.id + this.onSearch() }, onSearch () { - console.log(this.searchForm) - this.$http._getData('lawss/sarMenuStandardLimit/standardSystemTree').then(res => { + this.$http._postData('lawss/sarMenuStandardLimit/standardSystemList', this.searchForm).then(res => { if (res.ok) { - + this.data = res.data.list } }) },