修改
This commit is contained in:
parent
c9728e5469
commit
dda5fd917a
8
api/CommodityDetails/CommodityDetails.js
Normal file
8
api/CommodityDetails/CommodityDetails.js
Normal file
@ -0,0 +1,8 @@
|
||||
import request from "../request.js"
|
||||
// 查询商品详细列表
|
||||
export function goodsDetails(goodsInfoId){
|
||||
return request({
|
||||
url: `/nurseApplet/nursingStationGoods/goodsDetails?goodsInfoId=${goodsInfoId}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
8
api/ProductList/ProductList.js
Normal file
8
api/ProductList/ProductList.js
Normal file
@ -0,0 +1,8 @@
|
||||
import request from "../request.js"
|
||||
|
||||
export function goodsList(pageSize,pageNum,goodsCategoryId) {
|
||||
return request({
|
||||
url: `/nurseApplet/nursingStationGoods/goodsList?pageSize=${pageSize}&pageNum=${pageNum}&goodsCategoryId=${goodsCategoryId}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
16
api/modifyAddress/modifyAddress.js
Normal file
16
api/modifyAddress/modifyAddress.js
Normal file
@ -0,0 +1,16 @@
|
||||
import request from "../request.js"
|
||||
// 根据被护理人id查询基本信息
|
||||
export function goodPatientInfo(patientId){
|
||||
return request({
|
||||
url: `/nurseApplet/nursingStationGoods/goodPatientInfo?patientId=${patientId}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
// 新增被护理人基本信息
|
||||
export function addnursingStation(data){
|
||||
return request({
|
||||
url: '/nurseApplet/nursingStationGoods/add',
|
||||
method: 'POST',
|
||||
data,
|
||||
})
|
||||
}
|
||||
8
api/shopping/shopping.js
Normal file
8
api/shopping/shopping.js
Normal file
@ -0,0 +1,8 @@
|
||||
import request from "../request.js"
|
||||
|
||||
export function goodsCategoryList(pageSize,pageNum) {
|
||||
return request({
|
||||
url: `/nurseApplet/nursingStationGoods/goodsCategoryList?pageSize=${pageSize}&pageNum=${pageNum}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
BIN
static/add.png
Normal file
BIN
static/add.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 783 B |
Loading…
Reference in New Issue
Block a user