|
@@ -100,6 +100,9 @@ const DemandList = React.createClass({
|
|
title: '成果名称',
|
|
title: '成果名称',
|
|
dataIndex: 'name',
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
key: 'name',
|
|
|
|
+ render:text=>{
|
|
|
|
+ return text&&text.length>16?text.substr(0,16)+'...':text
|
|
|
|
+ }
|
|
}, {
|
|
}, {
|
|
title: '成果类型',
|
|
title: '成果类型',
|
|
dataIndex: 'dataCategory',
|
|
dataIndex: 'dataCategory',
|
|
@@ -115,7 +118,10 @@ const DemandList = React.createClass({
|
|
{
|
|
{
|
|
title: '客户名称',
|
|
title: '客户名称',
|
|
dataIndex: 'ownerName',
|
|
dataIndex: 'ownerName',
|
|
- key: 'ownerName'
|
|
|
|
|
|
+ key: 'ownerName',
|
|
|
|
+ render:text=>{
|
|
|
|
+ return text&&text.length>16?text.substr(0,16)+'...':text
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '发布状态',
|
|
title: '发布状态',
|