|
|
@@ -161,7 +161,7 @@ export default {
|
|
|
...mapState(useUserStore, ['user']),
|
|
|
...mapState(useSystemStore, ['platformCommission', 'saleBatches']),
|
|
|
riseRate() {
|
|
|
- let info = this.saleBatches.find(item => item.saleBatch.id == this.info.batchId)
|
|
|
+ let info = this.saleBatches.find(item => item.id == this.info.batchId)
|
|
|
let _back = null
|
|
|
if (info) {
|
|
|
_back = info.extensions.find(item => {
|
|
|
@@ -436,7 +436,7 @@ export default {
|
|
|
},
|
|
|
delegate() {
|
|
|
this.$http.get('/saleBatch/get/' + this.info.batchId).then(res => {
|
|
|
- this.batchInfo = res.saleBatch
|
|
|
+ this.batchInfo = res
|
|
|
this.show = true
|
|
|
})
|
|
|
},
|