8/1 限制前端输入字数
This commit is contained in:
@@ -69,7 +69,6 @@ export const income_scourcApi = (datetime?: string): AxiosPromise<sourceType> =>
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
export interface PayMentMethod {
|
||||
'wechatAmount': string;
|
||||
'wechatPercent': string;
|
||||
@@ -89,7 +88,6 @@ export const payment_methodApi = (datetime?: string): AxiosPromise<PayMentMethod
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
export interface Arrears_distrubution {
|
||||
month: number;
|
||||
amount: string;
|
||||
@@ -133,17 +131,19 @@ export interface payment_trendType {
|
||||
'unpaidAmount': string;
|
||||
}
|
||||
|
||||
|
||||
// 缴费走势分析
|
||||
export const payment_trendApi = (startDate?: string, endDate?: string): AxiosPromise<{
|
||||
items:payment_trendType[]
|
||||
export const payment_trendApi = (
|
||||
startDate?: string,
|
||||
endDate?: string
|
||||
): AxiosPromise<{
|
||||
items: payment_trendType[];
|
||||
}> => {
|
||||
return request({
|
||||
url: '/api/analysis/income/payment_trend',
|
||||
method: 'get',
|
||||
params: {
|
||||
startDate,
|
||||
endDate,
|
||||
endDate
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -93,8 +93,6 @@ export const get_movein_moveout_list = (query?: {
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
|
||||
export const get_person_age = (query?: {
|
||||
dateTime: string;
|
||||
}): AxiosPromise<
|
||||
|
||||
@@ -3,7 +3,7 @@ export interface BillVO {
|
||||
* 账单管理表id
|
||||
*/
|
||||
id: string;
|
||||
billName:string;
|
||||
billName: string;
|
||||
|
||||
/**
|
||||
* 账单编号
|
||||
|
||||
@@ -15,7 +15,7 @@ export interface ChargeItemVO {
|
||||
itemName: string;
|
||||
|
||||
/**
|
||||
* 计费方式 0单次收费 1周期收费 2仪表收费
|
||||
* 计费方式 0单次收费 1 周期收费 2 仪表收费
|
||||
*/
|
||||
billingMethod: string;
|
||||
|
||||
@@ -53,6 +53,10 @@ export interface ChargeItemVO {
|
||||
* 小区id
|
||||
*/
|
||||
villageId: string;
|
||||
/**
|
||||
* 状态 0正常 1停用
|
||||
*/
|
||||
status: string;
|
||||
}
|
||||
|
||||
export interface ChargeItemForm extends BaseEntity {
|
||||
|
||||
@@ -88,7 +88,6 @@ export interface WarehouseQuery extends PageQuery {
|
||||
*/
|
||||
warehouseName?: string;
|
||||
|
||||
|
||||
/**
|
||||
* 联系人*
|
||||
*/
|
||||
|
||||
@@ -82,9 +82,7 @@ export interface AppUserList {
|
||||
/**
|
||||
* 获取用户端app-用户
|
||||
* */
|
||||
export const getAppUser = (
|
||||
data
|
||||
): AxiosPromise<AppUserList[]> => {
|
||||
export const getAppUser = (data): AxiosPromise<AppUserList[]> => {
|
||||
return request({
|
||||
url: '/car/getAppUserList',
|
||||
method: 'GET',
|
||||
|
||||
@@ -19,7 +19,7 @@ export interface DeviceVO {
|
||||
* 设备编号
|
||||
*/
|
||||
deviceCode: string;
|
||||
shelfLife:string;
|
||||
shelfLife: string;
|
||||
|
||||
/**
|
||||
* 设备型号
|
||||
|
||||
@@ -150,7 +150,6 @@ export interface VersionQuery extends PageQuery {
|
||||
*/
|
||||
downloadUrl?: string;
|
||||
|
||||
|
||||
/**
|
||||
* 0-禁用 1-启用
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user