Browse Source

提醒红绿灯

jz.kai 4 years ago
parent
commit
634885c2c3
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/api/base/incident.js

+ 5 - 1
src/api/base/incident.js

@@ -53,6 +53,10 @@ function pageListPending(formData){
   return request.post(constant.serverUrl + "/base/incident/pageListPending", formData);
 }
 
+function countByCaseType(formData){
+  return request.post(constant.serverUrl + "/base/incident/countByCaseType", formData);
+}
+
 export default {
-  pageList,create,edit,add,update,remove,batchRemove,nextStep,pageListPending
+  pageList,create,edit,add,update,remove,batchRemove,nextStep,pageListPending,countByCaseType
 }