10 lines
365 B
TypeScript
10 lines
365 B
TypeScript
/**
|
|
* api รายงานทั้งหมด
|
|
*/
|
|
import env from "../index";
|
|
const reportOrder = `${env.API_REPORT2_URI}/report/order`;
|
|
|
|
export default {
|
|
reportOrderCover: (fileType: string, id: string) => `${reportOrder}/cover/${fileType}/${id}`,
|
|
reportOrderAttachment: (fileType: string, id: string) => `${reportOrder}/attachment/${fileType}/${id}`,
|
|
};
|