2023-09-22 11:37:39 +08:00
|
|
|
import request from "../../request.js"
|
2023-09-22 11:08:14 +08:00
|
|
|
// 查询商品详细列表
|
|
|
|
|
export function goodsDetails(goodsInfoId, patientId) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApplet/nursingStationGoods/goodsDetails?goodsInfoId=${goodsInfoId}&patientId=${patientId}`,
|
2023-10-13 17:32:38 +08:00
|
|
|
method: 'GET',
|
|
|
|
|
header: {
|
|
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
|
|
|
},
|
2023-09-22 11:08:14 +08:00
|
|
|
})
|
|
|
|
|
}
|