Blame view

src/components/fee/simplifyFeeReceiptDemo.vue 386 Bytes
24d3590f   wuxw   房屋收费页面开发完成
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <template>
    <simplify-fee-receipt ref="simplifyFeeReceipt"></simplify-fee-receipt>
  </template>
  
  <script>
  import SimplifyFeeReceipt from './simplifyFeeReceipt'
  
  export default {
    name: 'SimplifyFeeReceiptDemo',
    components: {
      SimplifyFeeReceipt
    },
    mounted() {
      this.$refs.simplifyFeeReceipt.$emit('switch', {
        roomId: '123',
        ownerId: '456'
      })
    }
  }
  </script>