diff --git a/index.html b/index.html
index 3dcb095..6576262 100644
--- a/index.html
+++ b/index.html
@@ -221,7 +221,7 @@
{{value.biddingStartTime}} |
{{value.price}} |
- {{if value.biddingType=='自由竞价'&&value.timeType!='已结束'}}
+ {{if value.biddingType=='自由竞价'&&value.timeType=='进行中'}}
*
{{else}}
{{value.money}}
diff --git a/static/js/project/listingItems/items.js b/static/js/project/listingItems/items.js
index d349806..db97e01 100644
--- a/static/js/project/listingItems/items.js
+++ b/static/js/project/listingItems/items.js
@@ -559,7 +559,7 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi', 'swiper'], function
var userId = tools.getCookie('userId');
var userAccount = tools.getCookie('phone');
var userName = tools.getCookie('userName');
- var money = $('#money').val();
+ var money = $('#money').val().toFixed(2);
// var loginTime = tools.getNowFormatDate();
data['projectId'] = projectId;
data['memberId'] = memberId;
|