Browse Source

无感监管新功能

wang_xy 2 weeks ago
parent
commit
b77f49bf3d
2 changed files with 146 additions and 736 deletions
  1. 21 0
      src/api/forest.js
  2. 125 736
      src/views/forest.vue

+ 21 - 0
src/api/forest.js

@@ -376,3 +376,24 @@ export function eventHandling(id,eventCode) {
     })
 
 }
+  export function enterpriseList(param) {
+    return request({
+      url: '/center-data/unobtrusive/enterprise/list',
+      method: 'get',
+      params:param
+    })
+  }
+
+  export function enterpriseById(id) {
+    return request({
+      url: '/center-data/unobtrusive/enterprise/'+id,
+      method: 'get'
+    })
+  }
+  export function selectRegulatoryinformationByEnterpriseId(param) {
+    return request({
+      url: '/center-data/regulatoryinformation/selectRegulatoryinformationByEnterpriseId',
+      method: 'get',
+      params:param
+    })
+  }

File diff suppressed because it is too large
+ 125 - 736
src/views/forest.vue