提交 2da21f70 authored 作者: 刘浪's avatar 刘浪

导入按钮公共组件结果增加字段数据行数

上级 a1d0245e
......@@ -15,7 +15,7 @@ const message = getMessage();
const Step = Steps.Step;
const TabPane = Tabs.TabPane;
// const exportExcel = CLIENT_TYPE == 'mobile' ? null : require('xlsx-oc').exportExcel;
let tempCallback = () => {};
let tempCallback = () => { };
@connect(({ DataObj, loading }) => ({
DataObj,
......@@ -328,10 +328,19 @@ export default class ImportUtil extends React.PureComponent {
width: 50,
render: (v, r, i) => i + 1,
},
{
title: '数据行数',
dataIndex: 'row_index',
width: 50,
},
...this.state.column,
]
: [];
let column2 = this.state.column ? [...this.state.column] : [];
let column2 = this.state.column ? [{
title: '数据行数',
dataIndex: 'row_index',
width: 50,
}, ...this.state.column] : [];
if (column1.length > 1) {
column1[1].render = (val) => <span style={{ color: 'red' }}>{val}</span>;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论