@nstc-business/tbm 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<template>
|
|
3
3
|
<N20-page class="occupation">
|
|
4
4
|
<div slot="header" class="m-b-s">
|
|
5
|
-
<div class="
|
|
5
|
+
<div class="flex-lr m-t-s flex-box">
|
|
6
6
|
<el-form :inline="true" @submit.native.prevent>
|
|
7
7
|
<el-form-item label="单位名称">
|
|
8
8
|
<memberSelect v-model="filterData.memberNames" @change="getList" />
|
|
@@ -447,8 +447,8 @@ export default {
|
|
|
447
447
|
// 收方额度占用信息(ownerTypes: ['2'])
|
|
448
448
|
const { code, data } = await this.$axios.post(`/tbm/invoice-info/debt/${this.tradeId}`)
|
|
449
449
|
if (code === 200) {
|
|
450
|
-
this.payQuotas = data.filter(v => v.ownerType === '4')
|
|
451
|
-
this.recQuotas = data.filter(v => v.ownerType === '5')
|
|
450
|
+
this.payQuotas = data.filter(v => v.ownerType.code === '4')
|
|
451
|
+
this.recQuotas = data.filter(v => v.ownerType.code === '5')
|
|
452
452
|
}
|
|
453
453
|
},
|
|
454
454
|
linkFn(item, type, params) {
|