diff --git a/src/api/system/Inspection/index.ts b/src/api/system/Inspection/index.ts index f0fab18..0e1f78d 100644 --- a/src/api/system/Inspection/index.ts +++ b/src/api/system/Inspection/index.ts @@ -73,7 +73,7 @@ export interface Request { * @returns {*} */ -export const list_statapi = (query?: { taskTimeBegin: string; taskTimeEnd: string }): AxiosPromise => { +export const list_statapi = (query?: { queryDateBegin: string; queryDateEnd: string }): AxiosPromise => { return request({ url: '/inspection/data/role/stat', method: 'get', diff --git a/src/api/system/InspectionRecord/type.ts b/src/api/system/InspectionRecord/type.ts index 6118071..08e98bc 100644 --- a/src/api/system/InspectionRecord/type.ts +++ b/src/api/system/InspectionRecord/type.ts @@ -81,6 +81,9 @@ export interface RecordQuery extends PageQuery { * 任务名称 */ taskName?: string; + + taskTimeBegin?: ''; + taskTimeEnd?: ''; } export interface DetailsVo { diff --git a/src/api/system/InspectionTask/type.ts b/src/api/system/InspectionTask/type.ts index e1d29c8..a48d5c4 100644 --- a/src/api/system/InspectionTask/type.ts +++ b/src/api/system/InspectionTask/type.ts @@ -106,6 +106,8 @@ export interface TaskQuery extends PageQuery { * 巡检任务名称 */ taskName?: string; + taskTimeBegin?: string; + taskTimeEnd?: string; /** * 关联巡检计划ID diff --git a/src/api/system/RepairProject/index.ts b/src/api/system/RepairProject/index.ts index 92e6a86..78f4363 100644 --- a/src/api/system/RepairProject/index.ts +++ b/src/api/system/RepairProject/index.ts @@ -1,6 +1,6 @@ import request from '@/utils/request'; import { AxiosPromise } from 'axios'; -import { RepairProjectVO, RepairProjectForm, RepairProjectQuery } from './type'; +import { RepairProjectVO, RepairProjectForm, RepairProjectQuery, RepairProjectQueryNoPage } from './type'; /** * 查询报修维修项目管理列表 @@ -67,7 +67,7 @@ export const delRepairProject = (id: string | number | Array) = * @returns {*} */ -export const gettreelistRepairProject = (query?: RepairProjectQuery): AxiosPromise => { +export const gettreelistRepairProject = (query?: RepairProjectQueryNoPage): AxiosPromise => { return request({ url: '/repairProject/treeList', method: 'get', diff --git a/src/api/system/RepairProject/type.ts b/src/api/system/RepairProject/type.ts index 04ae9e4..7afb096 100644 --- a/src/api/system/RepairProject/type.ts +++ b/src/api/system/RepairProject/type.ts @@ -106,3 +106,34 @@ export interface RepairProjectQuery extends PageQuery { */ status?: string; } +export interface RepairProjectQueryNoPage { + /** + * 维修项目名 + */ + projectName?: string; + + /** + * 父级项目id + */ + parentId?: string; + + /** + * 项目类型 0公共报修 1个人报修 + */ + projectType?: string; + + /** + * 项目层级 0,1 + */ + projectLevel?: number; + + /** + * 排序 (数越小越靠前) + */ + sortOrder?: number; + + /** + * 状态 0启用 1停用 + */ + status?: string; +} diff --git a/src/api/system/SdbCashier/index.ts b/src/api/system/SdbCashier/index.ts index cea3767..ca08c58 100644 --- a/src/api/system/SdbCashier/index.ts +++ b/src/api/system/SdbCashier/index.ts @@ -22,6 +22,11 @@ export const cashQuery = (data: { residentName?: string; queryType: number }): A }; export type billlistType = { + /** + * 类型 0物业费 1车位管理费 2垃圾处理费 3租金 4押金 + */ + detailsType: string; + unitNoId: string; needPayAmount: string; // 需要支付金额 actualAccount: string; // 实际支付金额 singleDiscountAmount: string; // 单笔优惠金额 diff --git a/src/components/Holder/CarUser.vue b/src/components/Holder/CarUser.vue index 4520d5b..7907ad2 100644 --- a/src/components/Holder/CarUser.vue +++ b/src/components/Holder/CarUser.vue @@ -1,32 +1,31 @@ - -