Browse Source

产权交易出价loginTime

RongCheng
庞东旭 1 year ago
parent
commit
caed9b6e0f
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      static/js/project/listingItems/items2.js

+ 4
- 3
static/js/project/listingItems/items2.js View File

@@ -653,14 +653,14 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi', 'swiper'], function
var userAccount = tools.getCookie('phone'); var userAccount = tools.getCookie('phone');
var userName = tools.getCookie('userName'); var userName = tools.getCookie('userName');
var money = parseFloat($('#money').val()); var money = parseFloat($('#money').val());
// var loginTime = tools.getNowFormatDate();
var loginTime = Date.now($.ajax({type:'HEAD',async:false,data:{i: Date.parse(new Date())}}).getResponseHeader("Date"));
data['projectId'] = projectId; data['projectId'] = projectId;
data['memberId'] = memberId; data['memberId'] = memberId;
data['userId'] = userId; data['userId'] = userId;
data['userAccount'] = userAccount; data['userAccount'] = userAccount;
data['userName'] = userName; data['userName'] = userName;
data['money'] = money; data['money'] = money;
// data['loginTime'] = loginTime;
data['loginTime'] = loginTime;
tools.doPost(biddingSubmit, data, module.biddingSubmitOpen); tools.doPost(biddingSubmit, data, module.biddingSubmitOpen);
} }


@@ -854,13 +854,14 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi', 'swiper'], function
var userName = tools.getCookie('userName'); var userName = tools.getCookie('userName');
var money = parseFloat(newMoney); var money = parseFloat(newMoney);
// var loginTime = tools.getNowFormatDate(); // var loginTime = tools.getNowFormatDate();
var loginTime = Date.now($.ajax({type:'HEAD',async:false,data:{i: Date.parse(new Date())}}).getResponseHeader("Date"));
data['projectId'] = projectId; data['projectId'] = projectId;
data['memberId'] = memberId; data['memberId'] = memberId;
data['userId'] = userId; data['userId'] = userId;
data['userAccount'] = userAccount; data['userAccount'] = userAccount;
data['userName'] = userName; data['userName'] = userName;
data['money'] = money; data['money'] = money;
// data['loginTime'] = loginTime;
data['loginTime'] = loginTime;
tools.doPost(biddingSubmit, data, module.biddingSubmitOpen); tools.doPost(biddingSubmit, data, module.biddingSubmitOpen);


} }


Loading…
Cancel
Save