|
@@ -157,7 +157,8 @@ export default {
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|
|
|
this.disabled = true
|
|
|
- this.queryParam.buyerSn = this.$route.params.sn
|
|
|
+ this.queryParam.buyerSnSource = this.$route.params.sn
|
|
|
+ this.queryParam.shelfSn = this.$route.params.shelfSn
|
|
|
const params = Object.assign(parameter, this.queryParam)
|
|
|
return queryByBizTradeList(params).then(res => {
|
|
|
let data
|
|
@@ -211,7 +212,7 @@ export default {
|
|
|
},
|
|
|
// 详情
|
|
|
getDetail () {
|
|
|
- queryShelfSettleRuleCount({ shelfSn: this.$route.params.shelfSn, buyerSn: this.$route.params.sn }).then(res => {
|
|
|
+ queryShelfSettleRuleCount({ shelfSn: this.$route.params.shelfSn, buyerSnSource: this.$route.params.sn }).then(res => {
|
|
|
if (res.status == 200) {
|
|
|
this.detailData = res.data
|
|
|
} else {
|