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