|
@@ -5,20 +5,20 @@
|
|
|
<div class="page-form-title-box">
|
|
|
<el-form :model="queryParams" class="form-box" ref="queryForm"
|
|
|
:inline="true" style="width:100%;">
|
|
|
- <el-form-item label="" prop="queryParamsData2">
|
|
|
- <el-select v-model="queryParams.queryParamsData2" placeholder="检查类型" style="width: 160px">
|
|
|
- <el-option
|
|
|
- v-for="dict in optionList"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="" prop="queryParamsData1">
|
|
|
+ <!--<el-form-item label="" prop="queryParamsData2">-->
|
|
|
+ <!--<el-select v-model="queryParams.queryParamsData2" placeholder="检查类型" style="width: 160px">-->
|
|
|
+ <!--<el-option-->
|
|
|
+ <!--v-for="dict in optionList"-->
|
|
|
+ <!--:key="dict.value"-->
|
|
|
+ <!--:label="dict.label"-->
|
|
|
+ <!--:value="dict.value"-->
|
|
|
+ <!--/>-->
|
|
|
+ <!--</el-select>-->
|
|
|
+ <!--</el-form-item>-->
|
|
|
+ <el-form-item label="" prop="searchValue">
|
|
|
<el-input
|
|
|
maxLength="30"
|
|
|
- v-model="queryParams.queryParamsData1"
|
|
|
+ v-model="queryParams.searchValue"
|
|
|
placeholder="依据名称/操作人"
|
|
|
style="width: 160px"
|
|
|
/>
|
|
@@ -88,7 +88,7 @@
|
|
|
<script>
|
|
|
//import { getDicts } from "@/api/commonality/noPermission";
|
|
|
//import { systemUserSelect } from "@/api/commonality/permission";
|
|
|
- //import { getInfo } from "@/api/basicsModules/index";
|
|
|
+ import { securityCheckBasisList } from '@/api/safetyCheck/index'
|
|
|
import addPage from "./addPage.vue";
|
|
|
export default {
|
|
|
name: 'index',
|
|
@@ -110,7 +110,7 @@
|
|
|
queryParams:{
|
|
|
page:1,
|
|
|
pageSize:20,
|
|
|
- queryParamsData1:"",
|
|
|
+ searchValue:"",
|
|
|
queryParamsData2 :null,
|
|
|
},
|
|
|
//时间数据
|
|
@@ -148,7 +148,7 @@
|
|
|
this.$set(this,'queryParams',{
|
|
|
page:1,
|
|
|
pageSize:20,
|
|
|
- queryParamsData1:"",
|
|
|
+ searchValue:"",
|
|
|
queryParamsData2 :null,
|
|
|
});
|
|
|
this.getList();
|
|
@@ -164,7 +164,7 @@
|
|
|
obj.startTime = "";
|
|
|
obj.endTime = "";
|
|
|
}
|
|
|
- getListFunction(obj).then(response => {
|
|
|
+ securityCheckBasisList(obj).then(response => {
|
|
|
this.$set(this,'loading',false);
|
|
|
this.$set(this,'dataList',response.data.records);
|
|
|
this.$set(this,'total',response.data.total);
|