fix: 新增公众号管理相关页面,引入配置文件修改。

This commit is contained in:
tianyongbao
2025-01-09 15:25:49 +08:00
parent caf8dc4f45
commit f7296e6be4
46 changed files with 8735 additions and 98 deletions

45
src/api/wxma/wxuser.js Normal file
View File

@@ -0,0 +1,45 @@
/**
* Copyright (C) 2018-2019
* All rights reserved, Designed By www.joolun.com
* 注意:
* 本软件为www.joolun.com开发研制项目使用请保留此说明
*/
import request from '@/utils/request'
export function getPage(query) {
return request({
url: '/weixin/wxuser/page',
method: 'get',
params: query
})
}
export function addObj(obj) {
return request({
url: '/weixin/wxuser',
method: 'post',
data: obj
})
}
export function getObj(id) {
return request({
url: '/weixin/wxuser/' + id,
method: 'get'
})
}
export function delObj(id) {
return request({
url: '/weixin/wxuser/' + id,
method: 'delete'
})
}
export function putObj(obj) {
return request({
url: '/weixin/wxuser',
method: 'put',
data: obj
})
}