lilei 1 year ago
parent
commit
954fd7c603
2 changed files with 11 additions and 4 deletions
  1. 1 1
      public/version.json
  2. 10 3
      src/views/outboundOrderManagement/outboundOrder/list.vue

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1718174043833
+  "version": 1718182551544
 }

+ 10 - 3
src/views/outboundOrderManagement/outboundOrder/list.vue

@@ -10,12 +10,17 @@
                 <rangeDate ref="rangeDate" :value="time" @change="dateChange" />
               </a-form-item>
             </a-col>
+            <a-col :xl="6" :lg="6" :md="12" :sm="24">
+              <a-form-item label="关联单号">
+                <a-input v-model.trim="queryParam.outBizNo" placeholder="请输入关联单号" allowClear />
+              </a-form-item>
+            </a-col>
             <a-col :xl="6" :lg="6" :md="12" :sm="24">
               <a-form-item label="客户名称">
-                <a-input id="outboundOrderList-demanderName" v-model.trim="queryParam.demanderNameCurrent" placeholder="请输入客户名称" allowClear />
+                <a-input v-model.trim="queryParam.demanderNameCurrent" placeholder="请输入客户名称" allowClear />
               </a-form-item>
             </a-col>
-            <a-col :xl="4" :lg="6" :md="6" :sm="8">
+            <a-col :xl="6" :lg="6" :md="6" :sm="8">
               <a-form-item label="出库类型">
                 <v-select
                   v-model="queryParam.outBizType"
@@ -27,7 +32,7 @@
                   allowClear></v-select>
               </a-form-item>
             </a-col>
-            <a-col :xl="4" :lg="6" :md="6" :sm="8">
+            <a-col :xl="6" :lg="6" :md="6" :sm="8">
               <a-form-item label="单据状态">
                 <v-select
                   v-model="queryParam.state"
@@ -165,6 +170,7 @@ export default {
       queryParam: { //  查询条件
         beginDate: getDate.getCurrMonthDays().starttime,
         endDate: getDate.getCurrMonthDays().endtime,
+        outBizNo: undefined, //  出库单号
         demanderNameCurrent: undefined, //  单位名称
         outBizType: undefined, //  出库类型
         state: undefined //  状态
@@ -266,6 +272,7 @@ export default {
       this.$refs.rangeDate.resetDate(flag ? '' : this.time)
       this.queryParam.beginDate = flag ? '' : getDate.getCurrMonthDays().starttime
       this.queryParam.endDate = flag ? '' : getDate.getCurrMonthDays().endtime
+      this.queryParam.outBizNo = undefined
       this.queryParam.demanderNameCurrent = undefined
       this.queryParam.outBizType = undefined
       this.queryParam.state = undefined