Commit d0d6d218 by zhaochengxiang

bug fix

parent 56604647
...@@ -292,7 +292,7 @@ export const ImportActionTable = (props) => { ...@@ -292,7 +292,7 @@ export const ImportActionTable = (props) => {
title: '序号', title: '序号',
dataIndex: 'key', dataIndex: 'key',
editable: false, editable: false,
width: 60, width: 44,
fixed: 'left', fixed: 'left',
render: (text, record, index) => { render: (text, record, index) => {
return (index+1).toString(); return (index+1).toString();
...@@ -361,7 +361,7 @@ export const ImportActionTable = (props) => { ...@@ -361,7 +361,7 @@ export const ImportActionTable = (props) => {
}, },
{ {
title: 'Not Null', title: 'Not Null',
width: 80, width: 70,
dataIndex: 'notNull', dataIndex: 'notNull',
editable: true, editable: true,
render: (notNull, record, index) => { render: (notNull, record, index) => {
...@@ -378,7 +378,7 @@ export const ImportActionTable = (props) => { ...@@ -378,7 +378,7 @@ export const ImportActionTable = (props) => {
}, },
{ {
title: '主键', title: '主键',
width: 50, width: 44,
dataIndex: 'partOfPrimaryKeyLogically', dataIndex: 'partOfPrimaryKeyLogically',
editable: (type==='model'?true:false), editable: (type==='model'?true:false),
render: (partOfPrimaryKeyLogically, record, index) => { render: (partOfPrimaryKeyLogically, record, index) => {
...@@ -395,7 +395,7 @@ export const ImportActionTable = (props) => { ...@@ -395,7 +395,7 @@ export const ImportActionTable = (props) => {
}, },
{ {
title: '外键', title: '外键',
width: 50, width: 44,
dataIndex: 'foreignKey', dataIndex: 'foreignKey',
editable: (type==='model'?true:false), editable: (type==='model'?true:false),
render: (foreignKey, record, index) => { render: (foreignKey, record, index) => {
...@@ -412,7 +412,7 @@ export const ImportActionTable = (props) => { ...@@ -412,7 +412,7 @@ export const ImportActionTable = (props) => {
}, },
{ {
title: '重点关注', title: '重点关注',
width: 75, width: 70,
dataIndex: 'needAttention', dataIndex: 'needAttention',
editable: false, editable: false,
render: (needAttention, record, index) => { 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