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

12 lines
324 B
TypeScript

import http from "@/utils/request";
import {url} from "@/utils/url";
export function getSparePartsList(data: any): Promise<any> {
return http.get(url.lanjuequipment.product.Repair.list, {
params: data,
});
}
export function getDict(type: any): Promise<any> {
return http.get(url.wmspda.system.dict+'/'+type, );
}