소스 검색

产权交易

rongxin_prod
庞东旭 2 년 전
부모
커밋
585eefad5e
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. +3
    -4
      src/views/project/projectDetail.vue

+ 3
- 4
src/views/project/projectDetail.vue 파일 보기

@@ -552,8 +552,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;
}
@@ -569,7 +569,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){
@@ -633,7 +632,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 =>{


불러오는 중...
취소
저장