fix: 修复商户中心页面lint并完善商户设置

This commit is contained in:
2026-02-06 16:09:18 +08:00
parent a5080912b5
commit a10d94fef7
4 changed files with 106 additions and 270 deletions

View File

@@ -162,3 +162,10 @@ export interface CurrentMerchantCenterDto {
export async function getMerchantInfoApi() {
return requestClient.get<CurrentMerchantCenterDto>('/merchant/info');
}
/**
* 更新商户信息
*/
export async function updateMerchantInfoApi(data: any) {
return requestClient.post('/merchant/update', data);
}