Ver a proveniência

产权交易

rongxin_prod
庞东旭 há 1 ano
ascendente
cometimento
585eefad5e
1 ficheiros alterados com 3 adições e 4 eliminações
  1. +3
    -4
      src/views/project/projectDetail.vue

+ 3
- 4
src/views/project/projectDetail.vue Ver ficheiro

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


Carregando…
Cancelar
Guardar