瀏覽代碼

提醒红绿灯

jz.kai 4 年之前
父節點
當前提交
634885c2c3
共有 1 個文件被更改,包括 5 次插入1 次删除
  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
 }