|
@@ -4,7 +4,7 @@ export interface ConstructionDailyReportRow {
|
|
|
id?: number
|
|
id?: number
|
|
|
deptId?: number
|
|
deptId?: number
|
|
|
projectId?: number
|
|
projectId?: number
|
|
|
- taskId?: number
|
|
|
|
|
|
|
+ taskId?: number | string
|
|
|
status?: number
|
|
status?: number
|
|
|
auditStatus?: number
|
|
auditStatus?: number
|
|
|
createTime?: number | string
|
|
createTime?: number | string
|
|
@@ -49,6 +49,7 @@ export interface ConstructionDailyReportRow {
|
|
|
monthWorkingLayers?: number | null
|
|
monthWorkingLayers?: number | null
|
|
|
monthWorkingWells?: number | null
|
|
monthWorkingWells?: number | null
|
|
|
fiveStatus?: string
|
|
fiveStatus?: string
|
|
|
|
|
+ relatedTasks?: Record<string, string>
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface ConstructionDailyReportQuery {
|
|
export interface ConstructionDailyReportQuery {
|
|
@@ -148,7 +149,7 @@ export const formSections: ConstructionDailyReportSection[] = [
|
|
|
{ prop: 'projectName', label: '项目' },
|
|
{ prop: 'projectName', label: '项目' },
|
|
|
{ prop: 'location', label: '施工区域' },
|
|
{ prop: 'location', label: '施工区域' },
|
|
|
{ prop: 'deptName', label: '队伍' },
|
|
{ prop: 'deptName', label: '队伍' },
|
|
|
- { prop: 'wellName', label: '生产任务' },
|
|
|
|
|
|
|
+ { prop: 'taskId', label: '生产任务', type: 'select', editableInEdit: true },
|
|
|
{ prop: 'customer', label: '合同甲方' },
|
|
{ prop: 'customer', label: '合同甲方' },
|
|
|
{ prop: 'deviceNames', label: '设备名称', span: 2 }
|
|
{ prop: 'deviceNames', label: '设备名称', span: 2 }
|
|
|
]
|
|
]
|