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.

15 lines
474 B

3 years ago
3 years ago
3 years ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. export const getChooselist = data => createAPI(`api/chooselist/getChooselist/${data.tagNo}`,'get',data)
  3. export const getChooselistData = data => createAPI(`api/chooselist/getChooselistData`,'post',data)
  4. export const getChooselistEam = data => createAPI(`api/chooselist/getChooselist/${data.tagNo}`,'get',data)
  5. export const getChooselistDataEam = data => createAPI(`api/chooselist/getChooselistData`,'post',data)