Bläddra i källkod

预箱装单-参考发送明细增加筛选条件

jbb 2 år sedan
förälder
incheckning
b347217103
1 ändrade filer med 13 tillägg och 0 borttagningar
  1. 13 0
      src/views/advance-packingList/referShipmentDetailsModal.vue

+ 13 - 0
src/views/advance-packingList/referShipmentDetailsModal.vue

@@ -29,6 +29,15 @@
               </a-form-item>
             </a-col>
 
+             <a-col :md="6" :sm="8">
+              <a-form-item label="发货情况">
+               <a-select v-model="queryParam.status" style="width: 200px" placeholder="请选择发货情况" >
+                 <a-select-option value="n">超量发货</a-select-option>
+                 <a-select-option value="y">正常</a-select-option>
+               </a-select>
+              </a-form-item>
+            </a-col>
+
             <a-col :md="6" :sm="8">
               <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
                 <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
@@ -263,6 +272,7 @@ export default {
       queryParam: {
         documentNo: '',
         customer: '',
+        status:'',
         pageNo: ''
       },
       // 分页
@@ -331,6 +341,8 @@ export default {
     searchReset() {
       this.queryParam.documentNo = ''
       this.queryParam.customer = ''
+      this.queryParam.status = ''
+      this.queryParam.pageNo = ''
       this.getShipData()
     },
 
@@ -339,6 +351,7 @@ export default {
       this.referShipDetModVis = false
       this.selectedRowKeys = []
       this.data = []
+      this.queryParam = {}
       this.getShipData()
     },
     handleCancel() {