|
@@ -0,0 +1,64 @@
|
|
|
|
+<ion-header>
|
|
|
|
+ <ion-toolbar>
|
|
|
|
+ <ion-buttons slot="start">
|
|
|
|
+ <ion-menu-button></ion-menu-button>
|
|
|
|
+ </ion-buttons>
|
|
|
|
+ <ion-title>待验货物查询</ion-title>
|
|
|
|
+ <ion-buttons slot="end">
|
|
|
|
+ <ion-button (click)="clear()">
|
|
|
|
+ 清空
|
|
|
|
+ </ion-button>
|
|
|
|
+ </ion-buttons>
|
|
|
|
+ </ion-toolbar>
|
|
|
|
+</ion-header>
|
|
|
|
+
|
|
|
|
+<ion-content>
|
|
|
|
+ <ion-list>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>抽箱完成:</ion-label>
|
|
|
|
+ <ion-select interface="action-sheet" [(ngModel)]="warehoseStatus">
|
|
|
|
+ <ion-select-option value=1>未抽</ion-select-option>
|
|
|
|
+ <ion-select-option value=2>已抽</ion-select-option>
|
|
|
|
+ </ion-select>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>QC样完成:</ion-label>
|
|
|
|
+ <ion-input></ion-input>
|
|
|
|
+ <ion-select interface="action-sheet" [(ngModel)]="sampleStatus">
|
|
|
|
+ <ion-select-option value=1>未抽</ion-select-option>
|
|
|
|
+ <ion-select-option value=2>已抽</ion-select-option>
|
|
|
|
+ </ion-select>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>满足验货条件:</ion-label>
|
|
|
|
+ <ion-select interface="action-sheet" [(ngModel)]="isCheck">
|
|
|
|
+ <ion-select-option value='true'>满足</ion-select-option>
|
|
|
|
+ <ion-select-option value='false'>不满足</ion-select-option>
|
|
|
|
+ </ion-select>
|
|
|
|
+ <!-- <ion-input [(ngModel)]="isCheck"></ion-input> -->
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>SC合同号:</ion-label>
|
|
|
|
+ <ion-input [(ngModel)]="scCode"></ion-input>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>我司货号:</ion-label>
|
|
|
|
+ <ion-input [(ngModel)]="scpCode"></ion-input>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>客户货号:</ion-label>
|
|
|
|
+ <ion-input [(ngModel)]="scpCustomercode"></ion-input>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>PO号:</ion-label>
|
|
|
|
+ <ion-input [(ngModel)]="poCode"></ion-input>
|
|
|
|
+ </ion-item>
|
|
|
|
+ <ion-item>
|
|
|
|
+ <ion-label>工厂:</ion-label>
|
|
|
|
+ <ion-input [(ngModel)]="sName"></ion-input>
|
|
|
|
+ </ion-item>
|
|
|
|
+ </ion-list>
|
|
|
|
+ <div class="ion-padding">
|
|
|
|
+ <ion-button color="primary" expand="block" (click)="search()">查 询</ion-button>
|
|
|
|
+ </div>
|
|
|
|
+</ion-content>
|