plm前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
825 B

2 years ago
2 years ago
2 years ago
  1. import {createAPI} from "../../utils/httpRequest";
  2. export const getTestPropertiesList = (data)=>createAPI(`/test/properties/list`,'post',data)
  3. export const updateTestPropertiesList = (data)=>createAPI(`/test/properties/update`,'post',data)
  4. export const searchTestPropertiesList = (data)=>createAPI(`/test/properties/search`,'post',data)
  5. export const searchModalDetails = (data)=>createAPI(`/properties/searchModalDetails`,'post',data)
  6. export const searchTestPropertiesItem = (data)=>createAPI(`/test/properties/item`,'post',data)
  7. export const removeTestPropertiesItem = (data)=>createAPI(`/test/properties/remove`,'post',data)
  8. export const saveTestPropertiesItem = (data)=>createAPI(`/test/properties/save`,'post',data)
  9. export const searchTestPropertiesItemList = (data)=>createAPI(`/test/properties/item/list`,'post',data)