You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.7 KiB
100 lines
1.7 KiB
![]()
1 year ago
|
import request from '@/utils/request'
|
||
|
export default {
|
||
|
classificationByPage(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/classificationByPage`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
classification(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/classification`,
|
||
|
method: 'GET'
|
||
|
})
|
||
|
},
|
||
|
productInfo(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/productInfo`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
addShopping(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/addShopping`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
immediately(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/immediately`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
save(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mallOrderInfo/save`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
saveMore(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mallOrderInfo/saveMore`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
nearbySiteInfo(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/nearbySiteInfo`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
shoppingByPage(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/shoppingByPage`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
updateShopping(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/updateShopping`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
deleteShopping(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/deleteShopping`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
selectProductInfo(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/selectProductInfo`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
accountRecordByPage(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/accountRecordByPage`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
},
|
||
|
more(data) {
|
||
|
return request({
|
||
|
url: `/oil-mall/mobile/more`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
}
|