7/30 限制前端输入字数

This commit is contained in:
Zy
2026-07-30 17:59:32 +08:00
parent 903c92fef0
commit 2907f9202c
115 changed files with 2561 additions and 1213 deletions

View File

@@ -22,8 +22,9 @@ export const cashQuery = (data: { residentName?: string; queryType: number }): A
};
export type billlistType = {
actualAccount: string;
singleDiscountAmount: string;
needPayAmount: string; // 需要支付金额
actualAccount: string; // 实际支付金额
singleDiscountAmount: string; // 单笔优惠金额
'villageId': string;
'residentId': string;
'houseId': string;
@@ -61,7 +62,10 @@ export const billEdit = (data: { 'detailsId': string[]; 'payType': string; 'payS
return request({
url: '/cash/billEdit',
method: 'post',
data: data
data: data,
headers: {
'isEncrypt': 'true'
}
});
};