edit
This commit is contained in:
@ -9,7 +9,8 @@
|
||||
<div style="display: flex;justify-content: space-between;">
|
||||
<button nz-button (click)="destroy()">取消</button>
|
||||
<div>
|
||||
<button nz-button nzType="primary" (click)="search()"><i nz-icon nzType="search" nzTheme="outline"></i>查询</button>
|
||||
<button nz-button nzType="primary" (click)="search()" [nzLoading]="http.loading"><i nz-icon
|
||||
nzType="search" nzTheme="outline"></i>查询</button>
|
||||
<button nz-button (click)="resetSF()"><i nz-icon nzType="redo" nzTheme="outline"></i>重置</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { AfterViewInit, Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { SFComponent, SFSchema, SFUISchema } from '@delon/form';
|
||||
import { _HttpClient } from '@delon/theme';
|
||||
import { Subject } from 'rxjs';
|
||||
import { SearchDrawerService } from './search-drawer.service';
|
||||
|
||||
@ -17,7 +18,7 @@ export class SearchDrawerComponent implements OnInit, AfterViewInit {
|
||||
|
||||
defaultValue = {};
|
||||
|
||||
constructor(public service: SearchDrawerService) {}
|
||||
constructor(public service: SearchDrawerService, public http: _HttpClient) {}
|
||||
ngAfterViewInit(): void {}
|
||||
|
||||
ngOnInit(): void {
|
||||
|
||||
Reference in New Issue
Block a user