ing
This commit is contained in:
parent
e10eb54e1b
commit
e3dd58b957
|
@ -4,28 +4,10 @@
|
||||||
<input type="hidden" >
|
<input type="hidden" >
|
||||||
</div>
|
</div>
|
||||||
<div class="ui-g-12">
|
<div class="ui-g-12">
|
||||||
<div class="ui-inputgroup">
|
<of-ip-input [hostIp]="startHostIp" (inputIp)="onInputIP($event, 0)" [title]="'Start'"></of-ip-input>
|
||||||
<span style="margin-right: 18px">Start </span>
|
|
||||||
<input type="text" pInputText placeholder="127" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="0" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="0" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="1" maxlength="3">
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="ui-g-12 ui-bottom-space-20">
|
<div class="ui-g-12 ui-bottom-space-20">
|
||||||
<div class="ui-inputgroup">
|
<of-ip-input [hostIp]="endHostIp" (inputIp)="onInputIP($event, 1)" [title]="'End'"></of-ip-input>
|
||||||
<span style="margin-right: 24px">End </span>
|
|
||||||
<input type="text" pInputText placeholder="127" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="0" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="0" maxlength="3">
|
|
||||||
<span class="ui-inputgroup-addon">.</span>
|
|
||||||
<input type="text" pInputText placeholder="1" maxlength="3">
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="ui-g">
|
<div class="ui-g">
|
||||||
|
|
|
@ -9,6 +9,8 @@ import {
|
||||||
})
|
})
|
||||||
export class SearchFilterComponent implements OnInit, AfterContentInit {
|
export class SearchFilterComponent implements OnInit, AfterContentInit {
|
||||||
|
|
||||||
|
startHostIp: string;
|
||||||
|
endHostIp: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
) {
|
) {
|
||||||
|
@ -19,4 +21,8 @@ export class SearchFilterComponent implements OnInit, AfterContentInit {
|
||||||
|
|
||||||
ngAfterContentInit() {
|
ngAfterContentInit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onInputIP(event, idx) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user