| | |
| | | // 查询体检采样管理列表 |
| | | export function getList(query) { |
| | | return request({ |
| | | url: '/sampling/sampling/getList', |
| | | url: '/sampling/sampling/getCusList', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // export function getCusCyList(cusId) { |
| | | // return request({ |
| | | // url: '/sampling/sampling/getCusCyList?cusId=' + cusId, |
| | | // method: 'get' |
| | | // }) |
| | | // } |
| | | |
| | | export function getCusCyList(tjNumber, isSignFor) { |
| | | return request({ |
| | | url: '/sampling/sampling/getCusCyList', |
| | | method: 'get', |
| | | params: { |
| | | tjNumber: tjNumber, |
| | | isSignFor: isSignFor |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export function getTxmmccd() { |
| | | return request({ |
| | | url: '/system/config/configKey/txmmccd', |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | export function getTxmkd() { |
| | | return request({ |
| | | url: '/system/config/configKey/txmkd', |
| | | method: 'get', |
| | | }) |
| | | } |
| | | // 确认采样接口 |
| | | export function confirmSampling(data) { |
| | | return request({ |
| | |
| | | method: 'delete' |
| | | }) |
| | | } |
| | | |
| | | |
| | | // 采样登记合并项目接口 |
| | | export function mergeCaiYang(data) { |
| | | return request({ |
| | | url: '/sampling/sampling/mergeCaiYang', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 撤销采样登记合并项目接口 |
| | | export function chexiaoCaiYang(data) { |
| | | return request({ |
| | | url: '/sampling/sampling/chexiaoCaiYang', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |