mp:实现 user 的 ui 界面
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 创建微信公众号粉丝
|
||||
export function createWxAccountFans(data) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/create',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 更新微信公众号粉丝
|
||||
export function updateWxAccountFans(data) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/update',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除微信公众号粉丝
|
||||
export function deleteWxAccountFans(id) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/delete?id=' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 获得微信公众号粉丝
|
||||
export function getWxAccountFans(id) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/get?id=' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 获得微信公众号粉丝分页
|
||||
export function getWxAccountFansPage(query) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/page',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 导出微信公众号粉丝 Excel
|
||||
export function exportWxAccountFansExcel(query) {
|
||||
return request({
|
||||
url: '/wechatMp/wx-account-fans/export-excel',
|
||||
method: 'get',
|
||||
params: query,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user