|
|
|
|
@ -141,14 +141,29 @@ export default {
|
|
|
|
|
label: "年份",
|
|
|
|
|
width: 100,
|
|
|
|
|
align: "center",
|
|
|
|
|
fixed:'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "name",
|
|
|
|
|
label: "项目名称",
|
|
|
|
|
width: 180,
|
|
|
|
|
align: "left",
|
|
|
|
|
fixed:'left'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '完成情况',
|
|
|
|
|
width: 160,
|
|
|
|
|
fixed:'left',
|
|
|
|
|
customFn:row => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
{ row.public_act_date ? (<Tag color="success">采购意向公开已完成</Tag>) : (<Tag color="warning">采购意向公开未完成</Tag>) }
|
|
|
|
|
{ row.invite_act_date ? <Tag color="success">招标文件挂网已完成</Tag> : (<Tag color="warning">招标文件挂网未完成</Tag>) }
|
|
|
|
|
{ row.open_act_date ? <Tag color="success">项目开标已完成</Tag> : (<Tag color="warning">项目开标未完成</Tag>) }
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
prop: "is_face_small",
|
|
|
|
|
label: "是否面向专门面向中小企业采购",
|
|
|
|
|
@ -169,20 +184,6 @@ export default {
|
|
|
|
|
: "否";
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '完成情况',
|
|
|
|
|
width: 160,
|
|
|
|
|
customFn:row => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
{ row.public_act_date ? '' : (<Tag color="warning">采购意向公开未完成</Tag>) }
|
|
|
|
|
{ row.invite_act_date ? '' : (<Tag color="warning">招标文件挂网未完成</Tag>) }
|
|
|
|
|
{ row.open_act_date ? '' : (<Tag color="warning">项目开标未完成</Tag>) }
|
|
|
|
|
{ (row.public_act_date && row.invite_act_date && row.open_act_date) ? (<Tag color="success">已完成</Tag>) : '' }
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "public_plane_date",
|
|
|
|
|
label: "采购意向公开计划时间",
|
|
|
|
|
|