account-by-parent-key.vue 716 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template src="./account-by-parent-key.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { AccountByParentKeyBase } from './account-by-parent-key-base';
import view_grid from '@widgets/account/main-grid/main-grid.vue';
import view_searchform from '@widgets/account/default-searchform/default-searchform.vue';

/**
 * 客户表格视图视图
 *
 * @export
 * @class AccountByParentKey
 * @extends {AccountByParentKeyBase}
 */
@Component({
    components: {
        view_grid, 
        view_searchform, 
    }
})
@VueLifeCycleProcessing()
export default class AccountByParentKey extends AccountByParentKeyBase { }
</script>