瀏覽代碼

无感监管新功能

wang_xy 2 周之前
父節點
當前提交
b77f49bf3d
共有 2 個文件被更改,包括 146 次插入736 次删除
  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
+    })
+  }

文件差異過大導致無法顯示
+ 125 - 736
src/views/forest.vue