This commit is contained in:
xiaozhiyong
2024-01-26 09:28:51 +08:00
parent a7f693f88f
commit a54f8c3f0a
14 changed files with 1971 additions and 59 deletions

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
export default{
getByPageCloudMini(data) {
return request({
url: `/oil-mall/mallOrderInfo/getByPageCloudMini`,
method: 'post',
data
})
},
get(id) {
return request({
url: `/oil-mall/mallOrderInfo/get/${id}`,
method: 'get',
})
}
}