<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>