From 709caa71211fcfa19ff3a70a549a8a24e53b319a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com>
Date: Tue, 27 Jun 2023 17:12:56 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E6=9D=83=E4=BA=A4=E6=98=93=E5=87=BA?=
=?UTF-8?q?=E4=BB=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
index.html | 2 +-
static/js/project/listingItems/items.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
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;
|