Blame view

src/components/fee/doImportCreateFeeDemo.vue 454 Bytes
24d3590f   wuxw   房屋收费页面开发完成
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <template>
    <div>
      <el-button @click="openModal">{{ $t('doImportCreateFeeDemo.openModal') }}</el-button>
      <do-import-create-fee ref="doImportCreateFee"></do-import-create-fee>
    </div>
  </template>
  
  <script>
  import DoImportCreateFee from './doImportCreateFee'
  
  export default {
    name: 'DoImportCreateFeeDemo',
    components: {
      DoImportCreateFee
    },
    methods: {
      openModal() {
        this.$refs.doImportCreateFee.open()
      }
    }
  }
  </script>