fix:提交修复6个问题

This commit is contained in:
ljy
2026-07-08 23:01:18 +08:00
parent 99be8e0237
commit ab9654564e
43 changed files with 3671 additions and 277 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { PartnerStorePhoneAvailableResponse } from '@dukang/shared-types';
import { request } from './api';
export function checkStorePhoneAvailable(phone: string) {
return request<PartnerStorePhoneAvailableResponse>(
'PARTNER_H5',
`/partner/stores/phone-available?phone=${encodeURIComponent(phone.trim())}`,
);
}
export type { PartnerStorePhoneAvailableResponse };