<div ng-controller="Configs.SystemCodeController">
    <div hawtio-breadcrumbs></div>
    <div hawtio-tabs></div>
    <div class="container-content ">
        <div class="container-fluid sj_fluid">            
            <div ng-hide="model.systemInfo.length" class="align-center">
                <p class="alert alert-info">当前没有可以查看的数据.</p>
            </div>
            <div ng-show="model.systemInfo.length">
                <table ng-table="tableParams" class="table table-condensed table-bordered table-striped" show-filter="true">
                    <tr ng-repeat="row in $data">
                        <td title="'系统编码'" filter="{ code: 'text'}" sortable="'code'">
                            {{row.code}}</td>
                        <td title="'系统名称'" filter="{ systemName: 'text'}" sortable="'systemName'">
                            {{row.systemName}}</td>                       
                    </tr>
                </table>
            </div>
        </div>
    </div>
</div>