|
@@ -14,6 +14,11 @@
|
|
|
:wrapperCol="wrapperCol"
|
|
|
@keyup.enter.native="handleSearch" >
|
|
|
<a-row :gutter="15">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-model-item label="审核日期" prop="time">
|
|
|
+ <rangeDate ref="rangeDate" @change="dateChange" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-model-item label="连锁店" prop="tenantId">
|
|
|
<a-select
|
|
@@ -28,11 +33,6 @@
|
|
|
</a-select>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
- <a-form-model-item label="审核日期" prop="time">
|
|
|
- <rangeDate ref="rangeDate" @change="dateChange" />
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
<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 style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="chainSalesDetailsCountReportList-reset">重置</a-button>
|
|
@@ -102,7 +102,7 @@ export default {
|
|
|
endDate: ''
|
|
|
},
|
|
|
rules: {
|
|
|
- 'tenantId': [{ required: true, message: '请选择连锁店', trigger: 'change' }],
|
|
|
+ // 'tenantId': [{ required: true, message: '请选择连锁店', trigger: 'change' }],
|
|
|
'time': [{ required: true, message: '请选择审核日期', trigger: 'change' }]
|
|
|
},
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|