| | |
| | | </QueryFilterItem> |
| | | <QueryFilterItem tip-content="审核日期"> |
| | | <FieldDatePicker |
| | | v-model="extraParamState.outCheckTime" |
| | | v-model="extraParamState.outReCheckTime" |
| | | type="daterange" |
| | | range-separator="~" |
| | | start-placeholder="开始日期" |
| | |
| | | </QueryFilterItem> |
| | | <QueryFilterItem> |
| | | <FieldRadio |
| | | v-model="extraParamState.outCheckStatus" |
| | | v-model="extraParamState.outReCheckStatus" |
| | | :value-enum="BountyCheckStatusEnumText" |
| | | buttonStyle |
| | | showAllBtn |
| | |
| | | name: '申报日期', |
| | | }, |
| | | { |
| | | id: '7', |
| | | id: '6-1', |
| | | enCode: 'outCheckAuditOperator', |
| | | name: '审核人', |
| | | name: '初审人', |
| | | }, |
| | | { |
| | | id: '6-2', |
| | | enCode: 'outCheckTime', |
| | | name: '初审日期', |
| | | }, |
| | | { |
| | | id: '6-3', |
| | | enCode: 'outCheckStatus', |
| | | name: '初审状态', |
| | | }, |
| | | { |
| | | id: '7', |
| | | enCode: 'outReCheckAuditOperator', |
| | | name: '复审人', |
| | | }, |
| | | { |
| | | id: '8', |
| | | enCode: 'outCheckTime', |
| | | name: '审核日期', |
| | | enCode: 'outReCheckTime', |
| | | name: '复审日期', |
| | | }, |
| | | { |
| | | id: '9', |
| | | enCode: 'outCheckStatus', |
| | | name: '审核状态', |
| | | enCode: 'outReCheckStatus', |
| | | name: '复审状态', |
| | | }, |
| | | ]; |
| | | |
| | |
| | | }, |
| | | extraProps: { |
| | | hide: (row: API.GetParkBountyApplyListOutput) => |
| | | row.outCheckStatus !== BountyCheckStatusEnum.WaitCheck, |
| | | row.outReCheckStatus !== BountyCheckStatusEnum.WaitCheck, |
| | | }, |
| | | }, |
| | | ]); |
| | |
| | | orderInput: extraParamState.orderInput, |
| | | }, |
| | | batchNo: extraParamState.batchNo, |
| | | outCheckStatus: extraParamState.outCheckStatus, |
| | | outCheckStatus: BountyCheckStatusEnum.CheckPassed, |
| | | outReCheckStatus: extraParamState.outReCheckStatus, |
| | | creationTimeBegin: format(extraParamState.creationTime?.[0] ?? '', 'YYYY-MM-DD 00:00:00'), |
| | | creationTimeEnd: format(extraParamState.creationTime?.[1] ?? '', 'YYYY-MM-DD 23:59:59'), |
| | | outCheckTimeBegin: format(extraParamState.outCheckTime?.[0] ?? '', 'YYYY-MM-DD 00:00:00'), |
| | | outCheckTimeEnd: format(extraParamState.outCheckTime?.[1] ?? '', 'YYYY-MM-DD 23:59:59'), |
| | | outReCheckTimeBegin: format( |
| | | extraParamState.outReCheckTime?.[0] ?? '', |
| | | 'YYYY-MM-DD 00:00:00' |
| | | ), |
| | | outReCheckTimeEnd: format(extraParamState.outReCheckTime?.[1] ?? '', 'YYYY-MM-DD 23:59:59'), |
| | | }; |
| | | let res = await parkBountyApplyServices.getOutcheckParkBountyList(params, { |
| | | showLoading: !state.loading, |
| | |
| | | { |
| | | defaultExtraParams: { |
| | | batchNo: '', |
| | | outCheckStatus: '' as any as BountyCheckStatusEnum, |
| | | outReCheckStatus: '' as any as BountyCheckStatusEnum, |
| | | creationTime: [] as unknown as ModelValueType, |
| | | outCheckTime: [] as unknown as ModelValueType, |
| | | outReCheckTime: [] as unknown as ModelValueType, |
| | | orderInput: [{ property: 'creationTime', order: OrderInputType.Desc }], |
| | | }, |
| | | columnsRenderProps: { |
| | | applyMonth: { type: 'date', format: 'YYYY年MM月' }, |
| | | creationTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' }, |
| | | outCheckTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' }, |
| | | outReCheckTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' }, |
| | | applySumAmount: { type: 'money', precision: 2 }, |
| | | outCheckStatus: { type: 'enum', valueEnum: BountyCheckStatusEnumText }, |
| | | outReCheckStatus: { type: 'enum', valueEnum: BountyCheckStatusEnumText }, |
| | | }, |
| | | } |
| | | ); |
| | |
| | | params: { |
| | | id: row.id, |
| | | }, |
| | | query: { |
| | | type: 'reReview', |
| | | }, |
| | | }); |
| | | } |
| | | function goAudit(row: API.GetParkBountyApplyListOutput) { |
| | | router.push({ |
| | | name: 'MaterialReviewAudit', |
| | | name: 'MaterialReReviewAudit', |
| | | params: { |
| | | id: row.id, |
| | | }, |