@@ -473,7 +473,7 @@ const Task = React.createClass({
render: (text, record) => {
return (
<span>
- {this.props.isZxs ? '***' : text}
+ {this.props.isZxs || text === -1 ? '***' : text}
</span>
)
}
@@ -474,6 +474,13 @@ const MyTaskOutsource = React.createClass({
title: "金额(万元)",
dataIndex: "commodityPrice",
key: "commodityPrice",
+ render: (text, record) => {
+ return (
+ <span>
+ </span>
+ )
+ }
},
{
title: "负责人",
@@ -258,6 +258,13 @@ const Task = React.createClass({