Browse Source

提醒红绿灯

jz.kai 4 năm trước cách đây
mục cha
commit
634885c2c3
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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
 }