You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
567 B
JavaScript
45 lines
567 B
JavaScript
import {
|
|
request
|
|
} from "@/utils/request";
|
|
|
|
export default {
|
|
|
|
list(data) {
|
|
return request({
|
|
url: "/admin/shop/List",
|
|
method: "POST",
|
|
data,
|
|
type: 'store'
|
|
})
|
|
},
|
|
|
|
edit(data) {
|
|
return request({
|
|
url: "/admin/shop/edit",
|
|
method: "POST",
|
|
data,
|
|
type: 'store'
|
|
})
|
|
},
|
|
|
|
editStatus(data) {
|
|
return request({
|
|
url: "/admin/shop/editStatus",
|
|
method: "POST",
|
|
data,
|
|
type: 'store'
|
|
})
|
|
},
|
|
|
|
synchronousGoods(data) {
|
|
return request({
|
|
url: "/admin/shop/synchronousGoods",
|
|
method: "POST",
|
|
data,
|
|
type: 'store'
|
|
})
|
|
},
|
|
|
|
|
|
|
|
}; |