| | |
| | | <div class="app-container"> |
| | | <div class="filter-container"> |
| | | <div class="basic_search"> |
| | | <span>单位名称:</span> |
| | | <el-input v-model="listQuery.filter.riskUnitName" style="width:200px"> |
| | | <span>事件名称:</span> |
| | | <el-input v-model="listQuery.filter.riskEventName" style="width:200px"> |
| | | </el-input> |
| | | </div> |
| | | <div class="basic_search"> |
| | | <span>事件名称:</span> |
| | | <el-select v-model="listQuery.filter.dataSrc" clearable style="width:200px"> |
| | | <el-option |
| | | v-for="item in DataSrcList" |
| | | :key="item.id" |
| | | :value="item.text" |
| | | :label="item.text" |
| | | ></el-option> |
| | | </el-select> |
| | | </div> |
| | | <el-button class="filter-item" style="margin-left: 10px;margin-top: 10px" type="primary" icon="el-icon-refresh" @click="refreshHandle">搜索</el-button> |
| | | <el-button class="filter-item" style="margin-left: 10px;margin-top: 10px" type="primary" icon="el-icon-plus" @click="showRiskControlMeasureForm('','新增')" v-show="showCurrent">新增</el-button> |
| | |
| | | pageIndex:1, |
| | | pageSize:10, |
| | | filter:{ |
| | | riskUnitName:'', |
| | | riskEventName:'', |
| | | } |
| | | }, |
| | | } |
| | |
| | | this.riskControlMeasureForm = riskControlMeasureForm |
| | | this.$emit('closeDialog') |
| | | }) |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
| | | } |