Commit d0d6d218 by zhaochengxiang

bug fix

parent 56604647
......@@ -292,7 +292,7 @@ export const ImportActionTable = (props) => {
title: '序号',
dataIndex: 'key',
editable: false,
width: 60,
width: 44,
fixed: 'left',
render: (text, record, index) => {
return (index+1).toString();
......@@ -361,7 +361,7 @@ export const ImportActionTable = (props) => {
},
{
title: 'Not Null',
width: 80,
width: 70,
dataIndex: 'notNull',
editable: true,
render: (notNull, record, index) => {
......@@ -378,7 +378,7 @@ export const ImportActionTable = (props) => {
},
{
title: '主键',
width: 50,
width: 44,
dataIndex: 'partOfPrimaryKeyLogically',
editable: (type==='model'?true:false),
render: (partOfPrimaryKeyLogically, record, index) => {
......@@ -395,7 +395,7 @@ export const ImportActionTable = (props) => {
},
{
title: '外键',
width: 50,
width: 44,
dataIndex: 'foreignKey',
editable: (type==='model'?true:false),
render: (foreignKey, record, index) => {
......@@ -412,7 +412,7 @@ export const ImportActionTable = (props) => {
},
{
title: '重点关注',
width: 75,
width: 70,
dataIndex: 'needAttention',
editable: false,
render: (needAttention, record, index) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment