Browse Source

完善竞价功能

zhanglei
yunuo970428 1 year ago
parent
commit
e939c684f4
  1. 19
      anrui-system-ui/src/views/notificationannouncement/relation/secondarysaleannouncement.vue

19
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() {

Loading…
Cancel
Save