@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nstc-business/tbm",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -2,7 +2,7 @@
2
2
  <template>
3
3
  <N20-page>
4
4
  <div slot="header">
5
- <div class="row_between_center m-b-s m-t-s flex-box">
5
+ <div class="flex-lr m-b-s m-t-s flex-box">
6
6
  <div class="row_start_center">
7
7
  <el-form :inline="true" @submit.native.prevent>
8
8
  <el-form-item label="操作日期">
@@ -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="row_between_center m-t-s flex-box">
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
- <cl-statis-item
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 '@/components/memberSelectMultiple.vue'
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) {
@@ -19,7 +19,7 @@ export default {
19
19
  },
20
20
  methods: {
21
21
  setInfo() {
22
- this.$refs['invoiceDetail'].setInfo({ invoiceId: 275 })
22
+ this.$refs['invoiceDetail'].setInfo({ invoiceId: 125197 })
23
23
  }
24
24
  }
25
25
  }