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

View File

@@ -0,0 +1,62 @@
/*
MIT License
Copyright (c) 2020 www.joolun.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import request from '@/utils/request'
export function getPage(query) {
return request({
url: '/weixin/wxautoreply/page',
method: 'get',
params: query
})
}
export function addObj(obj) {
return request({
url: '/weixin/wxautoreply',
method: 'post',
data: obj
})
}
export function getObj(id) {
return request({
url: '/weixin/wxautoreply/' + id,
method: 'get'
})
}
export function delObj(id) {
return request({
url: '/weixin/wxautoreply/' + id,
method: 'delete'
})
}
export function putObj(obj) {
return request({
url: '/weixin/wxautoreply',
method: 'put',
data: obj
})
}