@@ -186,7 +186,7 @@ define(['jquery', "template", "Tools", "biddingApi", "itemsApi"], function ($, t | |||||
$("#biddingInformationContent").html(biddingInformationData); | $("#biddingInformationContent").html(biddingInformationData); | ||||
if (content.length > 0){ | if (content.length > 0){ | ||||
$("#biddingPeople").html(content[0].memberId); | $("#biddingPeople").html(content[0].memberId); | ||||
if(module.data.outProjectInformationDetail.biddingType=='自由竞价'&&module.data.outProjectInformationDetail.projectShowStatus!='已经成交'){ | |||||
if((module.data.outProjectInformationDetail.biddingType=='自由竞价'||module.data.outProjectInformationDetail.biddingType=='1')&&module.data.outProjectInformationDetail.projectShowStatus!='已经成交'){ | |||||
$("#biddingMoney").html('*'); | $("#biddingMoney").html('*'); | ||||
}else{ | }else{ | ||||
$("#biddingMoney").html(content[0].money+module.data.outProjectInformationDetail.unit); | $("#biddingMoney").html(content[0].money+module.data.outProjectInformationDetail.unit); | ||||
@@ -106,7 +106,7 @@ | |||||
<td>{{value.biddingStartTime}}</td> | <td>{{value.biddingStartTime}}</td> | ||||
<td>{{value.price}}{{value.unit}}</td> | <td>{{value.price}}{{value.unit}}</td> | ||||
<td> | <td> | ||||
{{if value.biddingType=='自由竞价'&&value.projectShowStatus!='已经成交'}} | |||||
{{if (value.biddingType=='自由竞价' || value.biddingType=='1')&&value.projectShowStatus!='已经成交'}} | |||||
* | * | ||||
{{else}} | {{else}} | ||||
{{value.money}}{{if value.money}}{{value.unit}}{{/if}} | {{value.money}}{{if value.money}}{{value.unit}}{{/if}} | ||||
@@ -84,7 +84,7 @@ | |||||
<td>{{value.memberId}}</td> | <td>{{value.memberId}}</td> | ||||
<td>{{value.userAccount}}</td> | <td>{{value.userAccount}}</td> | ||||
<td> | <td> | ||||
{{if outProjectInformationDetail.biddingType=='自由竞价'&&outProjectInformationDetail.projectShowStatus!='已经成交'}} | |||||
{{if (outProjectInformationDetail.biddingType=='自由竞价' || outProjectInformationDetail.biddingType=='1')&&outProjectInformationDetail.projectShowStatus!='已经成交'}} | |||||
* | * | ||||
{{else}} | {{else}} | ||||
{{value.money}} | {{value.money}} | ||||