小程序用户改用门店登录

This commit is contained in:
liu
2026-08-20 13:46:04 +08:00
parent 6d9f02d831
commit c1d490134e
251 changed files with 689 additions and 2727 deletions
-2
View File
@@ -3,7 +3,6 @@ export default interface IPayment {
id?: number;
payment_no?: string;
store_id?: number;
user_id?: number;
/** 支付金额(= 关联账单总金额合计) */
amount?: string;
/** 支付方式:1微信 2支付宝 3对公汇款 */
@@ -22,7 +21,6 @@ export default interface IPayment {
created_at?: string;
/** 列表/详情接口附带 */
store?: { id: number; name: string; contact?: string; phone?: string } | null;
user?: { id: number; nickname: string } | null;
auditor?: { id: number; nickname: string } | null;
bills_count?: number;
}