Pārlūkot izejas kodu

提醒红绿灯

jz.kai 4 gadi atpakaļ
vecāks
revīzija
634885c2c3
1 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  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
 }