初始化茶艺师经纪人系统

This commit is contained in:
wangxiaowei
2026-03-10 15:02:12 +08:00
commit 58039f11e0
599 changed files with 42117 additions and 0 deletions

11
src/api/channel/weapp.ts Normal file
View File

@ -0,0 +1,11 @@
import request from '@/utils/request'
// 微信小程序配置保存
export function setWeappConfig(params: any) {
return request.post({ url: '/channel.mnp_settings/setConfig', params })
}
// 微信小程序配置详情
export function getWeappConfig() {
return request.get({ url: '/channel.mnp_settings/getConfig' })
}