|
@ -15,7 +15,7 @@ import { |
|
|
import { getBaseRecordPointSetByCode } from "../../../services/track/trackShape" |
|
|
import { getBaseRecordPointSetByCode } from "../../../services/track/trackShape" |
|
|
import { extraDescType, KTJ_BASE_TYPE } from '../../../services/ktjTypes'; |
|
|
import { extraDescType, KTJ_BASE_TYPE } from '../../../services/ktjTypes'; |
|
|
import { GX_CODE } from '../../../constant'; |
|
|
import { GX_CODE } from '../../../constant'; |
|
|
import { exportFile } from '../../../utils'; |
|
|
|
|
|
|
|
|
import { exportFile, padNumber } from '../../../utils'; |
|
|
export default function MeasureDetail() { |
|
|
export default function MeasureDetail() { |
|
|
useEffect(()=>{ |
|
|
useEffect(()=>{ |
|
|
queryDictionaryList() |
|
|
queryDictionaryList() |
|
@ -68,6 +68,9 @@ export default function MeasureDetail() { |
|
|
{ |
|
|
{ |
|
|
title: '当天测量序号', |
|
|
title: '当天测量序号', |
|
|
dataIndex: 'todayNumber', |
|
|
dataIndex: 'todayNumber', |
|
|
|
|
|
render: (_, record) => ( |
|
|
|
|
|
padNumber(record.todayNumber, 4) |
|
|
|
|
|
) |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '创建者', |
|
|
title: '创建者', |
|
|