mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-11-08 22:28:45 +08:00
初始化项目,自 v1.7.1 版本开始
This commit is contained in:
16
src/api/mp/material/index.ts
Normal file
16
src/api/mp/material/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 获得公众号素材分页
|
||||
export const getMaterialPage = (query) => {
|
||||
return request.get({
|
||||
url: '/mp/material/page',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 删除公众号永久素材
|
||||
export const deletePermanentMaterial = (id) => {
|
||||
return request.delete({
|
||||
url: '/mp/material/delete-permanent?id=' + id
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user