diff --git a/anrui-system-ui/src/views/notificationannouncement/relation/secondarysaleannouncement.vue b/anrui-system-ui/src/views/notificationannouncement/relation/secondarysaleannouncement.vue index 4b0e259454..1f6506e4db 100644 --- a/anrui-system-ui/src/views/notificationannouncement/relation/secondarysaleannouncement.vue +++ b/anrui-system-ui/src/views/notificationannouncement/relation/secondarysaleannouncement.vue @@ -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() {