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.
25 lines
391 B
25 lines
391 B
5 years ago
|
import request from '@/utils/request'
|
||
|
|
||
|
export function add(data) {
|
||
|
return request({
|
||
5 years ago
|
url: 'api/yxStoreBargainUser',
|
||
5 years ago
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export function del(id) {
|
||
|
return request({
|
||
5 years ago
|
url: 'api/yxStoreBargainUser/' + id,
|
||
5 years ago
|
method: 'delete'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export function edit(data) {
|
||
|
return request({
|
||
5 years ago
|
url: 'api/yxStoreBargainUser',
|
||
5 years ago
|
method: 'put',
|
||
|
data
|
||
|
})
|
||
|
}
|