| | |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 编码规则编辑保存 |
| | | export function SaveEncodingRules(data) { |
| | | return request({ |
| | |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP列表查询 |
| | | export function SystemSopSearch(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP文件上传查找设备类型数据 |
| | | export function SystemSopDeviceSearch(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopDeviceSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP文件作业文件上传获取最大版本号 |
| | | export function SystemSopMaxVersion(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopMaxVersion', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP文件上传提交 |
| | | export function SystemSopSava(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopSava', |
| | | method: 'post', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP文件删除 |
| | | export function SystemSopDelete(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopDelete', |
| | | method: 'post', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // SOP文件预览 |
| | | export function SystemSopView(data) { |
| | | return request({ |
| | | url: 'SystemSetting/SystemSopView', |
| | | method: 'post', |
| | | params: data |
| | | }) |
| | | } |