Browse Source

养护管理,巡查管理 添加字段,修改字段名称

dev
LUCAS 2 years ago
parent
commit
0e9b207f59
  1. 5
      web/client/src/sections/fillion/components/maintenanceTable.js
  2. 5
      web/client/src/sections/fillion/components/patrolTable.js

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

@ -13,7 +13,8 @@ import moment from 'moment';
const DetailForm = (props) => { const DetailForm = (props) => {
const { visible, data, handleClose, loading } = props; const { visible, data, handleClose, loading } = props;
const keyList = [ const keyList = [
{ key: '问题编号', name: 'id' }, { key: '编号', name: 'id' },
{ key: '工程类型', name: 'projectType' },
{ key: '所在路段', name: 'road' }, { key: '所在路段', name: 'road' },
{ key: '具体位置', name: 'address' }, { key: '具体位置', name: 'address' },
{ key: '巡查内容', name: 'content' }, { key: '巡查内容', name: 'content' },
@ -91,7 +92,7 @@ const DetailList = (props) => {
const columns = [ const columns = [
{ {
title: '问题编号', title: '编号',
key: 'id', key: 'id',
dataIndex: 'id', dataIndex: 'id',
align: 'center', align: 'center',

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

@ -14,7 +14,8 @@ import moment from 'moment';
const DetailForm = (props) => { const DetailForm = (props) => {
const { visible, data, handleClose, loading } = props; const { visible, data, handleClose, loading } = props;
const keyList = [ const keyList = [
{ key: '问题编号', name: 'id' }, { key: '编号', name: 'id' },
{ key: '工程类型', name: 'projectType' },
{ key: '所在路段', name: 'road' }, { key: '所在路段', name: 'road' },
{ key: '具体位置', name: 'address' }, { key: '具体位置', name: 'address' },
{ key: '巡查内容', name: 'content' }, { key: '巡查内容', name: 'content' },
@ -92,7 +93,7 @@ const DetailList = (props) => {
const columns = [ const columns = [
{ {
title: '问题编号', title: '编号',
key: 'id', key: 'id',
dataIndex: 'id', dataIndex: 'id',
align: 'center', align: 'center',

Loading…
Cancel
Save