InResponse.js 316 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 import http from './http.js' let baseUrl = 'nmms-server-import/nmms/rep' //添加回执明细 export const addResponse=params=>{return http.post(`${baseUrl}/InsertResponse`, params);}; //查询回执明细列表 export const selectResponseList=params=>{return http.post(`${baseUrl}/selectResponseList`, params);};