|
@@ -117,6 +117,10 @@ export default {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
+ payerType:{
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
dealerSn: {
|
|
|
type: String,
|
|
|
default: null
|
|
@@ -139,7 +143,7 @@ export default {
|
|
|
loadData: parameter => {
|
|
|
this.disabled = true
|
|
|
this.spinning = true
|
|
|
- return allocateBillList(Object.assign(parameter, this.queryParam, {authFlag:0})).then(res => {
|
|
|
+ return allocateBillList(Object.assign(parameter, this.queryParam, {authFlag:this.payerType=='DEALER'?1:0})).then(res => {
|
|
|
let data
|
|
|
if (res.status == 200) {
|
|
|
data = res.data
|