|
@@ -33,6 +33,11 @@
|
|
</a-select>
|
|
</a-select>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+ <a-col :md="2" :sm="8" style="margin-top: 6px;">
|
|
|
|
+ <a-checkbox @change="onChange" :default-checked="queryParam.oosFlag">
|
|
|
|
+ 包含急件
|
|
|
|
+ </a-checkbox>
|
|
|
|
+ </a-col>
|
|
<a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
<a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
<a-button type="primary" @click="handleSearch" :disabled="disabled" id="chainSalesDetailsCountReportList-refresh">查询</a-button>
|
|
<a-button type="primary" @click="handleSearch" :disabled="disabled" id="chainSalesDetailsCountReportList-refresh">查询</a-button>
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="chainSalesDetailsCountReportList-reset">重置</a-button>
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="chainSalesDetailsCountReportList-reset">重置</a-button>
|
|
@@ -82,7 +87,8 @@ export default {
|
|
tenantId: undefined,
|
|
tenantId: undefined,
|
|
time: [],
|
|
time: [],
|
|
beginDate: '',
|
|
beginDate: '',
|
|
- endDate: ''
|
|
|
|
|
|
+ endDate: '',
|
|
|
|
+ oosFlag: true
|
|
},
|
|
},
|
|
rules: {
|
|
rules: {
|
|
'time': [{ required: true, message: '请选择审核日期', trigger: 'change' }]
|
|
'time': [{ required: true, message: '请选择审核日期', trigger: 'change' }]
|
|
@@ -157,6 +163,9 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ onChange (e) {
|
|
|
|
+ this.queryParam.oosFlag = e.target.checked
|
|
|
|
+ },
|
|
// 创建时间 change
|
|
// 创建时间 change
|
|
dateChange (date) {
|
|
dateChange (date) {
|
|
this.queryParam.time = date
|
|
this.queryParam.time = date
|