| | |
| | | // 原始记录模板相关接口 |
| | | |
| | | import request from "@/utils/request"; |
| | | |
| | | // 查询客户列表 |
| | | export function selectStandardTemplatePageList(data) { |
| | | export function selectStandardTemplatePageList(query) { |
| | | return request({ |
| | | url: "/StandardTemplate/selectStandardTemplatePageList", |
| | | method: "post", |
| | | data: data, |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | // 删除检验模板 |
| | | export function delStandardTemplate(data) { |
| | | export function delStandardTemplate(query) { |
| | | return request({ |
| | | url: "/StandardTemplate/delStandardTemplate", |
| | | method: "post", |
| | | data: data, |
| | | method: "delete", |
| | | params: query, |
| | | }); |
| | | } |
| | | |