[FIX]【商品商城】接口联调—修改转发记录页传参问题

This commit is contained in:
yuweiqi
2020-06-18 15:29:42 +08:00
parent 1b15bd7215
commit 31fe37f082
2 changed files with 3 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ export default {
this.finishedText = '已经全部加载' this.finishedText = '已经全部加载'
return return
} }
let answerList = res.content.answerList.list let answerList = res.content.list
this.answerList = this.answerList.concat(answerList) this.answerList = this.answerList.concat(answerList)
if (answerList.length == 0) { if (answerList.length == 0) {
this.finishedText = '' this.finishedText = ''

View File

@@ -131,10 +131,10 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + `/#/productStore/forwardRecord` url: location.origin + `/#/productStore/forwardRecord?mallId=${this.mallId}`
}, },
routerInfo: { routerInfo: {
path: `/productStore/forwardRecord` path: `/productStore/forwardRecord?mallId=${this.mallId}`
} }
}) })
} }