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