23 lines
728 B
JavaScript
23 lines
728 B
JavaScript
import request from "@/api/request.js"
|
|
|
|
export function goodsList(pageSize, pageNum, goodsCategoryId, goodsName) {
|
|
return request({
|
|
url: `/nurseApplet/nursingStationGoods/goodsList?pageSize=${pageSize}&pageNum=${pageNum}&goodsCategoryId=${goodsCategoryId}&goodsName=${goodsName}`,
|
|
method: 'GET',
|
|
header: {
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
},
|
|
})
|
|
}
|
|
|
|
//查询商品分类二级分类上边列表 小程序
|
|
export function getGoodsCategoryNameList(goodsCategoryId) {
|
|
return request({
|
|
url: `/nurseApplet/nursingStationGoods/getGoodsCategoryNameList?goodsCategoryId=${goodsCategoryId}`,
|
|
method: 'GET',
|
|
header: {
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
},
|
|
})
|
|
}
|