This commit is contained in:
xiaozhiyong
2023-06-13 11:53:53 +08:00
parent c2e72737be
commit 87cd5e210f
3 changed files with 44 additions and 9 deletions

View File

@@ -312,13 +312,15 @@
computed: {
companyList() {
if (this.isCompany) {
return this.order.companyAccounts
let filterData = this.order.companyAccounts.filter(item => item.companyType != 5)
return filterData
}
},
companyOtherList() {
if (this.isCompany) {
// return this.order.otherAccounts
let target = this.sortParticulars(this.order.otherAccounts,'balance')
let filterData = this.order.otherAccounts.filter(item => item.companyType != 5)
let target = this.sortParticulars(filterData,'balance')
return target
}
}