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
@@ -2,13 +2,10 @@ import { createContext, useCallback, useContext, useEffect, useState, type React
import { toAppPath } from '@dukang/weixin-sdk';
import { clearAuth, isLoggedIn, request } from '../lib/api';
export type PartnerAccount = {
id: string;
name: string;
phone: string;
isPrimary?: boolean;
companyName?: string;
hasWechat?: boolean;
import type { PartnerMe, PartnerStaffRole } from '@dukang/shared-types';
export type PartnerAccount = PartnerMe & {
staffRole?: PartnerStaffRole;
};
type PartnerSessionValue = {