321 lines
8.5 KiB
Vue
321 lines
8.5 KiB
Vue
<template>
|
|
<a-form
|
|
:model="where"
|
|
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
|
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
|
>
|
|
<a-row>
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="断面名称:">
|
|
<a-select mode="multiple" v-model:value="where.sectionNameList" allowClear showSearch>
|
|
<a-select-option v-for="item in sectionOptions" :key="item.value"
|
|
>{{ item.label }}
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="起始时间:" name="startTime" >
|
|
<a-month-picker
|
|
v-model:value="where.startTime"
|
|
valueFormat="YYYY-MM"
|
|
:locale="locale"
|
|
placeholder="请输入起始时间"
|
|
allow-clear
|
|
/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="结束时间:" name="endTime">
|
|
<a-month-picker
|
|
v-model:value="where.endTime"
|
|
valueFormat="YYYY-MM"
|
|
:locale="locale"
|
|
placeholder="请输入结束时间"
|
|
allow-clear
|
|
/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
|
|
<a-space>
|
|
<a-button type="primary" @click="searchData">查询</a-button>
|
|
<a-button @click="reset">重置</a-button>
|
|
<a-button @click="exportFile">导出Excel</a-button>
|
|
</a-space>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
<a-row>
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="区域:">
|
|
<a-select
|
|
v-model:value="where.regionNameList"
|
|
allowClear
|
|
placeholder="未选择"
|
|
>
|
|
<a-select-option v-for="item in palceOptions" :key="item.value"
|
|
>{{ item.label }}
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="水质类别:">
|
|
<a-select
|
|
v-model:value="where.checked"
|
|
allowClear
|
|
placeholder="未选择"
|
|
>
|
|
<a-select-option :value="1">已审核</a-select-option>
|
|
<a-select-option :value="0">未审核</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col> -->
|
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
|
<a-form-item label="监测指标:">
|
|
<div class="input-item" @click="showModal">
|
|
<a-checkbox
|
|
:checked="checkAll"
|
|
:indeterminate="indeterminate"
|
|
>
|
|
全选
|
|
</a-checkbox>
|
|
</div>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<a-modal v-model:visible="visible" width="700px" title="监测指标" @ok="handleOk" @cancel="handleCancel">
|
|
<div :style="{ borderBottom: '1px solid #E9E9E9', marginBottom: '5px', paddingBottom: '5px' }">
|
|
<a-checkbox
|
|
v-model:checked="checkAll"
|
|
:indeterminate="indeterminate"
|
|
@change="onCheckAllChange"
|
|
>
|
|
全选
|
|
</a-checkbox>
|
|
</div>
|
|
|
|
<a-checkbox-group
|
|
style="width: 100%"
|
|
@change="handleChange"
|
|
v-model:value="filter"
|
|
>
|
|
<a-row>
|
|
<a-col
|
|
:span="8"
|
|
v-for="item in filterColumns"
|
|
:key="item.dataIndex"
|
|
>
|
|
<a-checkbox :value="item.dataIndex">{{ item.title }}</a-checkbox>
|
|
</a-col>
|
|
</a-row>
|
|
</a-checkbox-group>
|
|
|
|
</a-modal>
|
|
</a-form>
|
|
</template>
|
|
|
|
<script>
|
|
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
|
import { innerFilterColumns } from "./raw-colums";
|
|
import {getLakeDropdown} from "@/api/ecology/new-lake";
|
|
export default {
|
|
name: "inner-search",
|
|
props: {
|
|
// 表格搜索条件
|
|
searchForm: {
|
|
typeof: Object,
|
|
default: function () {
|
|
return {};
|
|
},
|
|
},
|
|
filterKeys:{
|
|
typeof: Object,
|
|
default: function () {
|
|
return [];
|
|
},
|
|
},
|
|
visiable:{
|
|
typeof:Boolean
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
indeterminate:false,
|
|
checkAll: true,
|
|
where: {},
|
|
filter:[],
|
|
columnsKey:[],
|
|
locale,
|
|
visible: false,
|
|
filterColumns: innerFilterColumns,
|
|
newCloumns:[],
|
|
oldCloumns:[],
|
|
filterItem:[],
|
|
palceOptions:[],
|
|
sectionOptions:[]
|
|
};
|
|
},
|
|
created(){
|
|
this.loadOptionData();
|
|
},
|
|
watch: {
|
|
searchForm(newV) {
|
|
this.where = newV;
|
|
},
|
|
filterKeys(newKeys){
|
|
this.initFilter(newKeys)
|
|
},
|
|
// 监控修改全选框图标状态
|
|
filter(newV){
|
|
if(newV.length !== this.filterColumns.length){
|
|
this.checkAll = false
|
|
this.indeterminate = false
|
|
if(newV.length){
|
|
this.indeterminate = true
|
|
}
|
|
}else{
|
|
this.checkAll = true
|
|
this.indeterminate = false
|
|
}
|
|
},
|
|
// 监听组件显示
|
|
visiable(val){
|
|
this.emitData(val)
|
|
}
|
|
},
|
|
mounted() {
|
|
this.where = this.searchForm;
|
|
this.filter = innerFilterColumns.map((item) => item.dataIndex);
|
|
this.columnsKey = [...this.filter]
|
|
this.newCloumns = [...innerFilterColumns];
|
|
this.oldCloumns = [...innerFilterColumns];
|
|
// this.$emit("buildColumns", innerFilterColumns);
|
|
this.initFilter(this.filterKeys);
|
|
this.emitData(true)
|
|
},
|
|
methods: {
|
|
|
|
emitData(val){
|
|
if(val && this.where.startTime && this.where.endTime){
|
|
this.searchData()
|
|
}
|
|
},
|
|
|
|
// 初始化选择
|
|
initFilter(newKeys){
|
|
let filterIndex =this.filterColumns.map(item=>(item.dataIndex))
|
|
const newList = filterIndex.filter((item) => {
|
|
return newKeys.indexOf(item) == -1
|
|
})
|
|
this.filter = newList;
|
|
},
|
|
|
|
/**获取下来框数据 */
|
|
loadOptionData() {
|
|
getLakeDropdown().then((res) => {
|
|
this.palceOptions = res.data.data.map((item) => {
|
|
return {
|
|
label: item.regionName,
|
|
value: item.regionName,
|
|
};
|
|
});
|
|
this.sectionOptions= res.data.data.map((item) => {
|
|
return {
|
|
label: item.sectionName,
|
|
value: item.sectionName,
|
|
};
|
|
});
|
|
});
|
|
|
|
},
|
|
|
|
// 指标全选
|
|
onCheckAllChange (e) {
|
|
this.filter = e.target.checked ? innerFilterColumns.map((item) => item.dataIndex) : []
|
|
|
|
},
|
|
|
|
handleChange(e) {
|
|
let newCloumns = [];
|
|
innerFilterColumns.forEach((item) => {
|
|
const index = e.indexOf(item.dataIndex);
|
|
if (index > -1) {
|
|
newCloumns.push(item);
|
|
}
|
|
});
|
|
this.newCloumns = newCloumns;
|
|
},
|
|
reset() {
|
|
this.where = {
|
|
checked: 1,
|
|
};
|
|
this.filter = innerFilterColumns.map((item) => item.dataIndex);
|
|
this.handleOk()
|
|
this.searchData();
|
|
|
|
},
|
|
searchData() {
|
|
this.where.filter = [...this.filter]
|
|
this.$emit("search", this.where);
|
|
},
|
|
exportFile() {
|
|
this.$emit("exportFile");
|
|
},
|
|
showModal() {
|
|
this.visible = true;
|
|
},
|
|
handleCancel(){
|
|
this.visible = false;
|
|
// 如果是取消,则还原上次勾选项
|
|
this.filter = this.oldCloumns.map(item=>item.dataIndex)
|
|
},
|
|
handleOk() {
|
|
this.visible = false;
|
|
this.oldCloumns = [...this.newCloumns];
|
|
|
|
let filterKey = []
|
|
|
|
this.columnsKey.forEach(key=>{
|
|
if(this.filter.indexOf(key) == -1){
|
|
filterKey.push(key)
|
|
}
|
|
})
|
|
|
|
this.$emit("filterColumns", filterKey);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.ant-calendar-picker {
|
|
width: 100%;
|
|
}
|
|
.input-item {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-variant: tabular-nums;
|
|
list-style: none;
|
|
font-feature-settings: "tnum";
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 4px 11px;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 14px;
|
|
line-height: 1.5715;
|
|
background-color: #fff;
|
|
background-image: none;
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 2px;
|
|
transition: all 0.3s;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
height: 32px;
|
|
}
|
|
</style> |