web
9 天以前 12c72e520e0ff9d738b9dac5ce84a4821a75e6e3
src/api/facility/facilityType.js
@@ -29,29 +29,10 @@
            method: 'post'
         });
      },
        stop: (id) => {
         return publicRequest({
            url: `/waterFacilityType/stop?id=${id}`,
            method: 'post'
         });
      },
        enable: (id) => {
         return publicRequest({
            url: `/waterFacilityType/enable?id=${id}`,
            method: 'post'
         });
      },
        search: (data) => {
         return publicRequest({
            url: '/waterFacilityType/search',
            method: 'post',
            data
         });
      },
        getList: (data) => {
         return publicRequest({
            url: `/waterFacilityType/getList`,
            method: 'get',
            data
         });
      },