From 0e184df30a1d07a30d412e2d5fd91bc37711455d Mon Sep 17 00:00:00 2001
From: xufenglei <xufenglei>
Date: Wed, 10 Jan 2018 10:04:33 +0800
Subject: [PATCH] 安装用户 管理

---
 src/app/routes/users/installer/installer.component.html |   12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/app/routes/users/installer/installer.component.html b/src/app/routes/users/installer/installer.component.html
index 849b08c..9f6c4ab 100644
--- a/src/app/routes/users/installer/installer.component.html
+++ b/src/app/routes/users/installer/installer.component.html
@@ -12,7 +12,7 @@
       </div>
       <div nz-col [nzSpan]="8" class="mb-md">
         <div nz-form-item class="d-flex">
-          <div nz-form-label><label for="u_mobile">������</label></div>
+          <div nz-form-label><label for="u_mobile">������/������</label></div>
           <div nz-form-control class="flex-1">
             <nz-input [(ngModel)]="q.u_mobile" name="u_mobile" [nzSize]="'large'" [nzPlaceHolder]="'���������������'" nzId="u_mobile"></nz-input>
           </div>
@@ -20,7 +20,7 @@
       </div>
       <div nz-col [nzSpan]="8" class="mb-md">
         <button nz-button type="submit" [nzType]="'primary'" [nzLoading]="loading" [nzSize]="'large'">������</button>
-        <button nz-button type="reset" (click)="load(true)" [nzSize]="'large'" class="mx-sm">������</button>
+        <button nz-button type="reset" [nzSize]="'large'" class="mx-sm">������</button>
       </div>
     </div>
   </form>
@@ -41,7 +41,7 @@
   </div>
   <nz-table #nzTable
             [nzAjaxData]="data"
-            [nzLoading]="http.loading"
+            [nzLoading]="loading"
             [nzTotal]="total"
             [(nzPageIndex)]="q.pi"
             [nzPageSize]="q.ps"
@@ -53,10 +53,9 @@
         <label nz-checkbox [(ngModel)]="allChecked" [nzIndeterminate]="indeterminate" (ngModelChange)="checkAll($event)"></label>
       </th>
       <th nz-th><span>������</span></th>
-      <th nz-th><span>������</span></th>
+      <th nz-th><span>������/������</span></th>
       <th nz-th><span>������������</span></th>
       <th nz-th><span>���������</span></th>
-      <th nz-th><span>������</span></th>
       <th nz-th><span>������</span></th>
       <th nz-th><span>������������</span></th>
       <th nz-th>
@@ -76,18 +75,15 @@
       <td nz-td>{{i.mobile}}</td>
       <td nz-td>{{i.email}}</td>
       <td nz-td>{{i.weixin}}</td>
-      <td nz-td>{{i.password}}</td>
       <td nz-td>{{i.organizationId}}</td>
       <td nz-td>{{format_date(i.createTime)}}</td>
       <td nz-td>{{format_date(i.expireTime)}}</td>
       <td nz-td>
         <a (click)="edit(i)">������</a>
-        <ng-container *ngIf="i.isDelete == '0'">
         <span nz-table-divider></span>
           <nz-popconfirm [nzTitle]="'���������������������������?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="delete(i)" >
             <a nz-popconfirm>������</a>
           </nz-popconfirm>
-         </ng-container>
       </td>
     </tr>
     </tbody>

--
Gitblit v1.8.0