|
@@ -138,6 +138,7 @@ const BusinessProject = Form.create()(
|
|
|
activityFlag: thisdata.activityFlag, //活动生效标识
|
|
|
status: thisdata.status, //项目状态
|
|
|
province: thisdata.province,
|
|
|
+ auditStatus:thisdata.auditStatus,
|
|
|
introduce: thisdata.introduce,
|
|
|
createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
|
|
|
value: thisdata.value,
|
|
@@ -250,6 +251,14 @@ const BusinessProject = Form.create()(
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
+ title: '发布状态',
|
|
|
+ dataIndex: 'auditStatus',
|
|
|
+ key: 'auditStatus',
|
|
|
+ render:text=>{
|
|
|
+ return getReleaseStateList(text);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '市场价(万元)',
|
|
|
dataIndex: 'price',
|
|
|
key: 'price'
|