@nstc-business/tbm 1.0.6 → 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" />
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
/>
|
|
38
38
|
<div slot="footer" class="flex-box flex-lr m-t-s">
|
|
39
39
|
<div class="flex-box flex-v">
|
|
40
|
-
<
|
|
40
|
+
<N20-statis-item
|
|
41
41
|
type="全部合计"
|
|
42
42
|
:countLabel="['笔数']"
|
|
43
43
|
:list="[
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
</template>
|
|
59
59
|
|
|
60
60
|
<script>
|
|
61
|
-
import memberSelect from '
|
|
61
|
+
import memberSelect from './subComponents/memberSelectMultiple.vue'
|
|
62
62
|
|
|
63
63
|
export default {
|
|
64
64
|
components: { memberSelect },
|
|
@@ -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) {
|