24d3590f
wuxw
房屋收费页面开发完成
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<template>
<el-button @click="openModal">{{$t('writeOweFeeCallableDemo.openModal')}}</el-button>
<write-owe-fee-callable ref="writeOweFeeCallable"></write-owe-fee-callable>
</template>
<script>
import WriteOweFeeCallable from './writeOweFeeCallable'
export default {
name: 'WriteOweFeeCallableDemo',
components: {
WriteOweFeeCallable
},
methods: {
openModal() {
this.$refs.writeOweFeeCallable.open({
roomId: '123',
roomName: 'Test Room'
})
}
}
}
</script>
|