|
@@ -70,6 +70,15 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
+ <a-col :md="5" :sm="8">
|
|
|
+ <a-form-model-item label="是否被参照">
|
|
|
+ <a-select v-model="queryParam.refer">
|
|
|
+ <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="5" :sm="8">
|
|
|
<a-form-item label="订单日期">
|
|
|
<a-range-picker
|
|
@@ -446,6 +455,7 @@ export default {
|
|
|
|
|
|
// 查询条件
|
|
|
queryParam: {
|
|
|
+ refer:'0'
|
|
|
// itemNumber: '', // 订单号
|
|
|
// smallPo:'',//小po
|
|
|
// account: '', //账套
|
|
@@ -649,7 +659,9 @@ export default {
|
|
|
|
|
|
close() {
|
|
|
this.referOrderDataModVis = false;
|
|
|
- this.queryParam = {}
|
|
|
+ this.queryParam = {
|
|
|
+ refer:'0'
|
|
|
+ }
|
|
|
this.$emit('close')
|
|
|
this.searchReset();
|
|
|
},
|