|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<a-drawer
|
|
|
- :title="'交易流水('+itemInfo.customerName+(modalType==1?':充值金额':':抵扣金额')+')'"
|
|
|
+ :title="'交易流水('+(itemInfo.customerName ||'--')+(modalType==1?':充值金额':':抵扣金额')+')'"
|
|
|
placement="right"
|
|
|
:visible="isShow"
|
|
|
width="80%"
|
|
@@ -130,7 +130,7 @@ export default {
|
|
|
params.storeAccountSn = this.itemInfo.storeAccountSn
|
|
|
params.storeSn = this.itemInfo.storeSn
|
|
|
params.shelfSn = this.itemInfo.shelfSn
|
|
|
- params.bizType = this.modalType == 1 ? 'RECHARGE' : 'GIVE'
|
|
|
+ params.accountType = this.modalType == 1 ? 'RECHARGE' : 'GIVE'
|
|
|
this.disabled = true
|
|
|
this.spinning = true
|
|
|
return storeAccountDetailList(params).then(res => {
|