|
|
@ -398,7 +398,8 @@ export default { |
|
|
|
unexpiredMoney: '', |
|
|
|
useOrgSid: '', |
|
|
|
userSid: '', |
|
|
|
wheFundOccMoney: '' |
|
|
|
wheFundOccMoney: '', |
|
|
|
validate: true |
|
|
|
}, |
|
|
|
rules: {} |
|
|
|
} |
|
|
@ -463,12 +464,16 @@ export default { |
|
|
|
}, |
|
|
|
// 我要竞价--初始化 |
|
|
|
toBidding() { |
|
|
|
getPrice({ sid: this.formobj.sid }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.isBidding = true |
|
|
|
this.bidding.maxPrice = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
if (this.formobj.validate) { |
|
|
|
getPrice({ sid: this.formobj.sid }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.isBidding = true |
|
|
|
this.bidding.maxPrice = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
} else { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '该公示竞价截止日期已过,无法竞价' }) |
|
|
|
} |
|
|
|
}, |
|
|
|
// 我要竞价--保存 |
|
|
|
toConFirm() { |
|
|
|