|
@@ -9,10 +9,10 @@
|
|
|
<a-row :gutter="48">
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-item label="关键字">
|
|
|
- <a-input v-model.trim="queryParam.keyword" placeholder="设备编号"/>
|
|
|
+ <a-input v-model.trim="queryParam.keyword" placeholder="关键字"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <!-- <a-col :md="6" :sm="24">
|
|
|
<a-form-item label="车间位置">
|
|
|
<a-select v-model="queryParam.positionId" placeholder="请选择">
|
|
|
<a-select-option
|
|
@@ -43,13 +43,13 @@
|
|
|
<a-form-item label="生产商">
|
|
|
<a-input v-model.trim="queryParam.producerId" placeholder="生产商"/>
|
|
|
</a-form-item>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
<!-- <a-col :md="6" :sm="24">
|
|
|
<a-form-item label="设备自编号">
|
|
|
<a-input v-model="queryParam.zbh" placeholder="设备自编号"/>
|
|
|
</a-form-item>
|
|
|
</a-col>-->
|
|
|
- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
+ <!-- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
<a-form-item label="设备等级">
|
|
|
<a-select v-model="queryParam.level" placeholder="请选择">
|
|
|
<a-select-option
|
|
@@ -60,7 +60,7 @@
|
|
|
</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
<!-- <a-col :md="6" :sm="24">
|
|
|
<a-form-item label="自定义类型">
|
|
|
<a-select v-model="queryParam.useType" placeholder="请选择">
|
|
@@ -73,17 +73,17 @@
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>-->
|
|
|
- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
+ <!-- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
<a-form-item label="检定日期范围">
|
|
|
<a-range-picker v-model="dateRangeCheck" />
|
|
|
</a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
+ </a-col> -->
|
|
|
+ <a-col :md="6" :sm="24" >
|
|
|
<a-form-item label="有效日期范围">
|
|
|
<a-range-picker v-model="dateRange"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
+ <!-- <a-col :md="6" :sm="24" :style="{ display: expand ? 'block' : 'none' }">
|
|
|
<a-form-item label="规格型号">
|
|
|
<a-input v-model="queryParam.model" placeholder="规格型号"/>
|
|
|
</a-form-item>
|
|
@@ -147,19 +147,20 @@
|
|
|
</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
+ </a-col> -->
|
|
|
+ <a-col :span="6" :style="{ textAlign: 'right' }">
|
|
|
+ <span class="table-page-search-submitButtons">
|
|
|
+ <a-button type="primary" @click="handleOk">查询</a-button>
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
|
|
|
+ <!-- <a :style="{ marginLeft: '8px', fontSize: '12px' }" @click="expand=!expand">
|
|
|
+ {{ !expand ? '展开' : '折叠' }} <a-icon :type="expand ? 'up' : 'down'" />
|
|
|
+ </a> -->
|
|
|
+ </span>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
<a-row :gutter="8">
|
|
|
- <a-col :span="24" :style="{ textAlign: 'right' }">
|
|
|
- <span class="table-page-search-submitButtons">
|
|
|
- <a-button type="primary" @click="handleOk">查询</a-button>
|
|
|
- <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
|
|
|
- <a :style="{ marginLeft: '8px', fontSize: '12px' }" @click="expand=!expand">
|
|
|
- {{ !expand ? '展开' : '折叠' }} <a-icon :type="expand ? 'up' : 'down'" />
|
|
|
- </a>
|
|
|
- </span>
|
|
|
- </a-col>
|
|
|
+
|
|
|
</a-row>
|
|
|
</div>
|
|
|
|