|
|
@@ -12,6 +12,15 @@ export async function samplingRecordsPage(params) {
|
|
|
return Promise.reject(new Error(res.data.message));
|
|
|
}
|
|
|
|
|
|
+// 批记录管理-取样记录分页列表
|
|
|
+export async function samplingRecordsBatchRecordPage(data) {
|
|
|
+ const res = await request.post(`/qms/samplingrecord/batchRecordPage`, data);
|
|
|
+ if (res.data.code == 0) {
|
|
|
+ return res.data.data;
|
|
|
+ }
|
|
|
+ return Promise.reject(new Error(res.data.message));
|
|
|
+}
|
|
|
+
|
|
|
//取样新建/修改
|
|
|
export async function samplingrecordSave(data) {
|
|
|
const res = await request.post(`/qms/samplingrecord/save`, data);
|