瀏覽代碼

对单状态

chenrui 2 年之前
父節點
當前提交
52e4a5c0bb
共有 1 個文件被更改,包括 5 次插入3 次删除
  1. 5 3
      src/views/salesManagement/pushOrderManagement/list.vue

+ 5 - 3
src/views/salesManagement/pushOrderManagement/list.vue

@@ -67,7 +67,7 @@
               <a-col :md="6" :sm="24">
                 <a-form-item label="对单状态">
                   <v-select
-                    v-model="queryParam.printStatus"
+                    v-model="queryParam.checkStatusDictValue"
                     ref="printStatus"
                     id="pushOrder-printStatus"
                     code="CHECK_STATUS"
@@ -104,7 +104,7 @@
       <!-- alert -->
       <a-alert type="info" style="margin-bottom:10px">
         <div slot="message">
-          下推总单数::<strong>{{ totalData&&(totalData.totalRecord || totalData.totalRecord==0) ? totalData.totalRecord : '--' }}</strong>;
+          下推总单数:<strong>{{ totalData&&(totalData.totalRecord || totalData.totalRecord==0) ? totalData.totalRecord : '--' }}</strong>;
           下推总数量:<strong>{{ totalData&&(totalData.totalQty || totalData.totalQty==0) ? totalData.totalQty : '--' }}</strong>;
           <span v-if="$hasPermissions('B_isShowPrice')">下推总金额:<strong>{{ totalData&&(totalData.totalAmount || totalData.totalAmount==0) ? totalData.totalAmount : '--' }}</strong>元;</span>
         </div>
@@ -209,7 +209,8 @@ export default {
         subareaSn: undefined,
         voidFlag: undefined,
         shippingAddrProvinceSn: undefined,
-        printStatus: undefined
+        printStatus: undefined,
+        checkStatusDictValue: undefined
       },
       totalData: {
         totalAmount: 0,
@@ -326,6 +327,7 @@ export default {
       this.queryParam.subareaSn = undefined
       this.queryParam.shippingAddrProvinceSn = undefined
       this.queryParam.printStatus = undefined
+      this.queryParam.checkStatusDictValue = undefined
       this.$refs.table.refresh(true)
     },
     pageInit () {