You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.7 KiB
70 lines
2.7 KiB
2 years ago
|
<!-- start 面包屑 -->
|
||
|
<app-breadcrumb></app-breadcrumb>
|
||
|
<!-- end 面包屑 -->
|
||
|
<!--条件搜索-->
|
||
|
|
||
|
<div class="inner-content">
|
||
|
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)">
|
||
|
<div nz-row>
|
||
|
<div nz-col nzSpan="8">
|
||
|
<nz-form-item>
|
||
|
<nz-form-label [nzSpan]="8">公司名称</nz-form-label>
|
||
|
<nz-form-control [nzSpan]="14">
|
||
|
<input nz-input formControlName="name" />
|
||
|
</nz-form-control>
|
||
|
</nz-form-item>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div nz-row>
|
||
|
<div nz-col nzSpan="24" class="search-button">
|
||
|
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button>
|
||
|
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
<div class="inner-content">
|
||
|
<span>共计 {{dataObject.total?dataObject.total:0}} 条数据</span>
|
||
|
<div class="operating-button">
|
||
|
<button nz-button nzType="primary" class="right-btn" [routerLink]="'/admin/company/add'"><i nz-icon nzType="plus" nzTheme="outline"></i>添加</button>
|
||
|
</div>
|
||
|
|
||
|
<!--数组表格 -->
|
||
|
<nz-table #basicTable
|
||
|
[nzData]="dataObject.list"
|
||
|
[nzTotal]="dataObject.total"
|
||
|
[nzFrontPagination]="false"
|
||
|
[nzLoading]="tableLoading"
|
||
|
[nzPageIndex]="whereObject.pageNum"
|
||
|
(nzPageIndexChange)="requestData($event)"
|
||
|
[nzScroll]="{ x: '1150px'}">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th nzWidth="100px">序号</th>
|
||
|
<th nzWidth="200px">公司地区</th>
|
||
|
<th nzWidth="200px">公司名称</th>
|
||
|
<th nzWidth="150px">联系电话</th>
|
||
|
<th nzWidth="200px">详细地址</th>
|
||
|
<th nzWidth="160px">创建时间</th>
|
||
|
<th nzWidth="150px" nzRight="0px">操作</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr *ngFor="let data of basicTable.data;let i = index">
|
||
|
<td>{{i + 1}}</td>
|
||
|
<td>{{data.regionName}}</td>
|
||
|
<td>{{data.name}}</td>
|
||
|
<td>{{data.phone?data.phone:'未填写'}}</td>
|
||
|
<td>{{data.address?data.address:'未填写'}}</td>
|
||
|
<td>{{data.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td>
|
||
|
<td nzRight="0px" class="table-td-operation">
|
||
|
<!--<a [routerLink]="['/admin/agent/detail']" [queryParams]="{agentId: data.id}">详情</a>-->
|
||
|
<a [routerLink]="['/admin/company/update']" [queryParams]="{companyId: data.id}">修改</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</nz-table>
|
||
|
</div>
|