18 lines
346 B
JavaScript
18 lines
346 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询列表
|
|
export function listPartnerSupplier(query) {
|
|
return request({
|
|
url: '/official/companymessage/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
// 删除
|
|
|
|
export function delPartnerSupplier(id) {
|
|
return request({
|
|
url: '/official/companymessage/' + id,
|
|
method: 'delete'
|
|
})
|
|
} |