24d3590f
wuxw
房屋收费页面开发完成
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<div>
<el-button @click="openModal">{{$t('tempImportRoomFeeDemo.openModal')}}</el-button>
<temp-import-room-fee ref="tempImportRoomFee"></temp-import-room-fee>
</div>
</template>
<script>
import TempImportRoomFee from './tempImportRoomFee'
export default {
name: 'TempImportRoomFeeDemo',
components: {
TempImportRoomFee
},
methods: {
openModal() {
this.$refs.tempImportRoomFee.open({
roomId: '123',
roomName: '测试房间',
ownerName: '测试业主'
})
}
}
}
</script>
|