|
@@ -2,14 +2,14 @@
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
|
|
<el-form-item label="预计检测时间" prop="detdate">
|
|
|
<el-date-picker v-model="queryParams.detdate" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss" type="daterange"
|
|
|
range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:59:59']" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="检测维保结果" prop="detresult">
|
|
|
<el-select v-model="queryParams.detresult" placeholder="请选择检测维保结果" clearable size="small">
|
|
|
- <el-option v-for="dict in this.getDictDatas(DICT_TYPE.SYSTEM_LOGIN_RESULT)"
|
|
|
+ <el-option v-for="dict in this.getDictDatas(DICT_TYPE.BACKEND_DET_RESULT)"
|
|
|
:key="dict.value" :label="dict.label" :value="dict.value"/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
@@ -21,10 +21,10 @@
|
|
|
|
|
|
<!-- 操作工具栏 -->
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
+ <!-- <el-col :span="1.5">
|
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
v-hasPermi="['backend:fpd-detection:create']">新增</el-button>
|
|
|
- </el-col>
|
|
|
+ </el-col> -->
|
|
|
<el-col :span="1.5">
|
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
|
|
|
v-hasPermi="['backend:fpd-detection:export']">导出</el-button>
|