Browse Source

故障处理(巡查,养护)

dev
LUCAS 2 years ago
parent
commit
e0f131e259
  1. 7
      web/client/src/sections/fillion/components/maintenanceTable.js
  2. 9
      web/client/src/sections/fillion/components/patrolTable.js

7
web/client/src/sections/fillion/components/maintenanceTable.js

@ -99,6 +99,11 @@ const DetailList = (props) => {
render: (text, record) => { render: (text, record) => {
return moment(record.time).format("YYYYMMDD") * 10000 + record.id; return moment(record.time).format("YYYYMMDD") * 10000 + record.id;
} }
}, {
title: '工程类型',
key: 'projectType',
dataIndex: 'projectType',
align: 'center',
}, { }, {
title: '所属道路', title: '所属道路',
key: 'road', key: 'road',
@ -120,7 +125,7 @@ const DetailList = (props) => {
align: 'center' align: 'center'
}, },
{ {
title: '巡查人', title: '养护人',
width: 100, width: 100,
key: 'userName', key: 'userName',
dataIndex: 'userName', dataIndex: 'userName',

9
web/client/src/sections/fillion/components/patrolTable.js

@ -100,7 +100,14 @@ const DetailList = (props) => {
render: (text, record) => { render: (text, record) => {
return moment(record.time).format("YYYYMMDD") * 10000 + record.id; return moment(record.time).format("YYYYMMDD") * 10000 + record.id;
} }
}, { },
{
title: '工程类型',
key: 'projectType',
dataIndex: 'projectType',
align: 'center',
},
{
title: '所属道路', title: '所属道路',
key: 'road', key: 'road',
dataIndex: 'road', dataIndex: 'road',

Loading…
Cancel
Save