Skip to content
basic-key.component.html 1.39 KiB
Newer Older
<nz-modal [nzMaskClosable]="false" [nzWidth]="700" [(nzVisible)]="isKey" nzTitle="选择键值" (nzOnCancel)="handleKeyCancel()" (nzOnOk)="handleKeyOk()">
wangqinghua's avatar
wangqinghua committed
    <div nz-row>
        <div nz-col [nzSpan]="16">
            标准检测器
        </div>
        <div nz-col [nzSpan]="8">
            类型
            <nz-select name="select-error" [(ngModel)]="keyType" (ngModelChange)="findList()">
wangqinghua's avatar
wangqinghua committed
                <nz-option nzValue="1" nzLabel="Agent客户端"></nz-option>
                <nz-option nzValue="2" nzLabel="Agent客户端(主动)"></nz-option>
wangqinghua's avatar
wangqinghua committed
                <nz-option nzValue="3" nzLabel="数据库监控"></nz-option>
                <nz-option nzValue="4" nzLabel="数据库监控 JMX_agent代理程序"></nz-option>
                <nz-option nzValue="5" nzLabel="简单检查"></nz-option>
                <nz-option nzValue="6" nzLabel="SNMP tray"></nz-option>
            </nz-select>
        </div>
    </div>
    <div>
        <nz-table #nzKeyTable [nzData]="keyList">
            <thead>
            <tr>
                <th width="30%">键值</th>
                <th>内容</th>
            </tr>
            </thead>
            <tbody>
            <tr *ngFor="let data of nzKeyTable.data">
wangqinghua's avatar
wangqinghua committed
                <td (click)="setKey(data)">{{data.zabbixKey}}</td>
wangqinghua's avatar
wangqinghua committed
                <td>{{data.describes}}</td>
            </tr>
            </tbody>
        </nz-table>
    </div>
</nz-modal>