需求27:增加挂号收费系统参数维护界面-》挂号处理相关参数

This commit is contained in:
py
2025-12-16 13:33:50 +08:00
parent f3c451d0a1
commit c79e4c2623
5 changed files with 612 additions and 79 deletions

View File

@@ -18,10 +18,11 @@ export function getConfig(configId) {
}
// 根据参数键名查询参数值
export function getConfigKey(configKey) {
export function getConfigKey(configKey, options = {}) {
return request({
url: '/system/config/configKey/' + configKey,
method: 'get'
method: 'get',
...options
})
}