mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-08 08:07:46 +08:00
11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import request from "@/utils/request";
|
|
|
|
/** S 微信公众平台设置 **/
|
|
// 获取pc设置
|
|
export const apiWechatPlatformGet = (): Promise<any> =>
|
|
request.get('/channel.open_setting/getConfig')
|
|
|
|
// pc设置
|
|
export const apiWechatPlatformSet = (data: any): Promise<any> =>
|
|
request.post('/channel.open_setting/setConfig', data)
|
|
/** E pc设置 **/ |