张泽亮 1 vuosi sitten
vanhempi
commit
81e229489b
1 muutettua tiedostoa jossa 3 lisäystä ja 4 poistoa
  1. +3
    -4
      src/views/project/projectDetail.vue

+ 3
- 4
src/views/project/projectDetail.vue Näytä tiedosto

@@ -542,8 +542,8 @@ export default {
offer(){
let newMoney;
projectNewBidMoney(this.id).then(response =>{
if (response.msg&&response.code==200){
newMoney = response.msg;
if (response.data&&response.code==200){
newMoney = response.data;
}else{
newMoney = this.detail.price;
}
@@ -559,7 +559,6 @@ export default {
})
return;
}
this.price = this.price.toFixed(2)
if (this.detail.biddingDirect == '反向竞价'){
// if (this.biddinglistInformation.length<1){
if(this.detail.price<this.price){
@@ -623,7 +622,7 @@ export default {
userId:this.userId,
userAccount:this.userAccount,
userName:this.userName,
money:this.price,
money:parseInt(this.price).toFixed(2),
};
console.log(data)
biddingSubmit(data).then(response =>{


Ladataan…
Peruuta
Tallenna