|
@@ -34,6 +34,15 @@
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<template v-if="toggleSearchStatus">
|
|
<template v-if="toggleSearchStatus">
|
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
|
+ <a-form-model-item label="类型">
|
|
|
|
+ <a-select v-model="queryParam.flourOrGarment">
|
|
|
|
+ <a-select-option value="">请选择</a-select-option>
|
|
|
|
+ <a-select-option value="1">成衣</a-select-option>
|
|
|
|
+ <a-select-option value="0">面辅料</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-model-item>
|
|
|
|
+ </a-col>
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<a-form-item label="客户">
|
|
<a-form-item label="客户">
|
|
<j-search-select-tag
|
|
<j-search-select-tag
|
|
@@ -41,9 +50,14 @@
|
|
v-model="queryParam.customerName"
|
|
v-model="queryParam.customerName"
|
|
dict="view_customer,customerfullname,customerfullname">
|
|
dict="view_customer,customerfullname,customerfullname">
|
|
</j-search-select-tag>
|
|
</j-search-select-tag>
|
|
- </a-form-item>
|
|
|
|
-
|
|
|
|
|
|
+ </a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
|
+ <a-form-item label="小po">
|
|
|
|
+ <a-input placeholder="请输入小po" v-model="queryParam.smallPo"></a-input>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<a-form-item label="订单日期">
|
|
<a-form-item label="订单日期">
|
|
<a-range-picker
|
|
<a-range-picker
|
|
@@ -56,15 +70,7 @@
|
|
/>
|
|
/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :md="6" :sm="8">
|
|
|
|
- <a-form-model-item label="类型">
|
|
|
|
- <a-select v-model="queryParam.flourOrGarment">
|
|
|
|
- <a-select-option value="">请选择</a-select-option>
|
|
|
|
- <a-select-option value="1">成衣</a-select-option>
|
|
|
|
- <a-select-option value="0">面辅料</a-select-option>
|
|
|
|
- </a-select>
|
|
|
|
- </a-form-model-item>
|
|
|
|
- </a-col>
|
|
|
|
|
|
+
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<a-form-item label="预发货日期">
|
|
<a-form-item label="预发货日期">
|
|
<a-range-picker
|
|
<a-range-picker
|
|
@@ -428,6 +434,7 @@ export default {
|
|
// 查询条件
|
|
// 查询条件
|
|
queryParam: {
|
|
queryParam: {
|
|
orderNumber: '', // 订单号
|
|
orderNumber: '', // 订单号
|
|
|
|
+ smallPo:'',//小po
|
|
account: '', //账套
|
|
account: '', //账套
|
|
pageSize:100,
|
|
pageSize:100,
|
|
preDeliveryDateS:'', //预发货开始日期
|
|
preDeliveryDateS:'', //预发货开始日期
|
|
@@ -590,6 +597,7 @@ export default {
|
|
// 重置
|
|
// 重置
|
|
searchReset() {
|
|
searchReset() {
|
|
this.queryParam.orderNumber = '';
|
|
this.queryParam.orderNumber = '';
|
|
|
|
+ this.queryParam.smallPo = ''
|
|
this.queryParam.account = '';
|
|
this.queryParam.account = '';
|
|
this.queryParam.salesman = '';
|
|
this.queryParam.salesman = '';
|
|
this.queryParam.customerName = '';
|
|
this.queryParam.customerName = '';
|