2 Commits

Author SHA1 Message Date
DaxPay
de5e3a7fda fix 低版本node无法构建问题 2024-10-28 17:10:31 +08:00
DaxPay
1bf1db6405 ref 获取收银台信息接口路径优化 2024-10-21 10:42:09 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
"type": "module",
"version": "3.0.0",
"engines": {
"node": ">=18.12.0",
"node": ">=20.6.0",
"pnpm": ">=9.0.2"
},
"scripts": {

View File

@@ -8,7 +8,7 @@ import type { Result } from '#/axios'
*/
export function getCashierInfo(cashierType: string, appId: string) {
return http.request<Result<ChannelCashierConfigResult>>({
url: '/unipay/ext/channel/cashier/getCashierType',
url: '/unipay/ext/channel/cashier/getCashier',
method: 'GET',
params: { cashierType, appId },
})