9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
|
|
import request from "../request.js"
|
||
|
|
|
||
|
|
export function selectScriptInfo(patientTaskExecuteRecordId) {
|
||
|
|
return request({
|
||
|
|
url: `/postDischarge/homePage/selectScriptInfo?patientTaskExecuteRecordId=${patientTaskExecuteRecordId}`,
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
}
|