湖库功能模块
This commit is contained in:
30
src/api/ecology/water/lake/inner.js
Normal file
30
src/api/ecology/water/lake/inner.js
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
const baseUri = '/lakeLibrary/lakeCityDict'
|
||||||
|
|
||||||
|
|
||||||
|
export const list = `${baseUri}/cityDictPage`
|
||||||
|
// 添加
|
||||||
|
export const addCityDict = function (data) {
|
||||||
|
return axios.post(`${baseUri}/addCityDict`,data)
|
||||||
|
}
|
||||||
|
// 修改
|
||||||
|
export const modifyCityDict = function (data) {
|
||||||
|
return axios.post(`${baseUri}/modifyCityDict`,data)
|
||||||
|
}
|
||||||
|
// 删除
|
||||||
|
export const batchRemove = function (data) {
|
||||||
|
return axios.post(`${baseUri}/batchRemove`,data)
|
||||||
|
}
|
||||||
|
// 复制
|
||||||
|
export const cityDictCopy = function (data) {
|
||||||
|
console.log('data',data)
|
||||||
|
return axios.post(`${baseUri}/cityDictCopy`,data)
|
||||||
|
}
|
||||||
|
// 详情
|
||||||
|
export const queryById = function (column) {
|
||||||
|
return axios.get(`${baseUri}/queryById`,{params:{column}})
|
||||||
|
}
|
||||||
|
// 获取年份下拉
|
||||||
|
export const getYear = function () {
|
||||||
|
return axios.get(`${baseUri}/getYear`)
|
||||||
|
}
|
||||||
30
src/api/ecology/water/lake/special.js
Normal file
30
src/api/ecology/water/lake/special.js
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
const baseUri = '/lakeLibrary/lakeSpecialDict'
|
||||||
|
|
||||||
|
|
||||||
|
export const list = `${baseUri}/specialDictPage`
|
||||||
|
// 添加
|
||||||
|
export const addSpecialDict = function (data) {
|
||||||
|
return axios.post(`${baseUri}/addSpecialDict`,data)
|
||||||
|
}
|
||||||
|
// 修改
|
||||||
|
export const modifySpecialDict = function (data) {
|
||||||
|
return axios.post(`${baseUri}/modifySpecialDict`,data)
|
||||||
|
}
|
||||||
|
// 删除
|
||||||
|
export const batchRemove = function (data) {
|
||||||
|
return axios.post(`${baseUri}/batchRemove`,data)
|
||||||
|
}
|
||||||
|
// 复制
|
||||||
|
export const specialDictCopy = function (data) {
|
||||||
|
console.log('data',data)
|
||||||
|
return axios.post(`${baseUri}/specialDictCopy`,data)
|
||||||
|
}
|
||||||
|
// 详情
|
||||||
|
export const queryById = function (column) {
|
||||||
|
return axios.get(`${baseUri}/queryById`,{params:{column}})
|
||||||
|
}
|
||||||
|
// 获取年份下拉
|
||||||
|
export const getYear = function () {
|
||||||
|
return axios.get(`${baseUri}/getYear`)
|
||||||
|
}
|
||||||
41
src/views/water/lake/dict/index.vue
Normal file
41
src/views/water/lake/dict/index.vue
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="ele-body">
|
||||||
|
<a-card :bordered="false">
|
||||||
|
<a-tabs v-model:activeKey="activeKey">
|
||||||
|
<a-tab-pane key="inner" tab="城市内湖库">
|
||||||
|
<inner></inner>
|
||||||
|
</a-tab-pane>
|
||||||
|
<a-tab-pane key="special" tab="专项湖库">
|
||||||
|
<special></special>
|
||||||
|
</a-tab-pane>
|
||||||
|
</a-tabs>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Special from "./special"
|
||||||
|
import Inner from "./inner"
|
||||||
|
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'waterLakeDict',
|
||||||
|
components: {
|
||||||
|
Special,
|
||||||
|
Inner
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
activeKey: 'inner'
|
||||||
|
};
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
336
src/views/water/lake/dict/inner.vue
Normal file
336
src/views/water/lake/dict/inner.vue
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
<!--内湖-->
|
||||||
|
<template>
|
||||||
|
<div class="ele-body">
|
||||||
|
<a-card :bordered="false">
|
||||||
|
<a-form :model="where" :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 v-model:value="where.year" allow-clear show-search>
|
||||||
|
<a-select-option v-for="(item) in yearOptions" :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-input v-model:value.trim="where.sectionName" placeholder="请输入" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||||
|
<a-space>
|
||||||
|
<a-button type="primary" @click="reload">查询</a-button>
|
||||||
|
<a-button @click="reset">重置</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
<a-row>
|
||||||
|
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
<a-modal v-model:visible="showNYear" :title="'批量复制'" :confirm-loading="loading"
|
||||||
|
:body-style="{ paddingBottom: '8px' }" @ok="copyBatch">
|
||||||
|
<a-form ref="form" :model="form" :rules="rules" :label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||||
|
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }">
|
||||||
|
<a-form-item label="新年份" name="nYear">
|
||||||
|
<a-input-number id="inputNumber" v-model:value="nYear" :min="1970" :max="2050" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</a-modal>
|
||||||
|
<a-modal v-model:visible="showEdit" :title="form.lakeCityDictId !== undefined ? '修改' : '添加'"
|
||||||
|
:confirm-loading="loading" :width="800" :body-style="{ paddingBottom: '8px' }" @ok="save">
|
||||||
|
<a-form ref="form" :model="form" :rules="rules" :label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||||
|
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }">
|
||||||
|
<a-form-item label="年份" name="year">
|
||||||
|
<a-input-number v-model:value="form.year" :min="1970" :max="2050" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="行政区域" name="regionName">
|
||||||
|
<a-input v-model:value="form.regionName" placeholder="请输入行政区域" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="点位名称" name="sectionName">
|
||||||
|
<a-input v-model:value="form.sectionName" placeholder="请输入点位名称" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
</a-form>
|
||||||
|
</a-modal>
|
||||||
|
<!-- 表格 -->
|
||||||
|
<ele-pro-table v-model:selection="selectionList" ref="table" row-key="lakeCityDictId" :datasource="url"
|
||||||
|
:columns="columns" :where="where" :scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
|
||||||
|
<template #toolbar>
|
||||||
|
<a-space>
|
||||||
|
<a-button @click="openEdit" type="primary">新增</a-button>
|
||||||
|
<a-dropdown>
|
||||||
|
<template #overlay>
|
||||||
|
<a-menu @click="setCYear">
|
||||||
|
<a-menu-item v-for="item in yearOptions" :key="item.value">
|
||||||
|
{{ item.label }}
|
||||||
|
</a-menu-item>
|
||||||
|
</a-menu>
|
||||||
|
</template>
|
||||||
|
<a-button>
|
||||||
|
批量复制
|
||||||
|
<DownOutlined />
|
||||||
|
</a-button>
|
||||||
|
</a-dropdown>
|
||||||
|
<a-popconfirm :disabled="selectionList.length == 0" :title="`确认删除${selectionList.length}条数据吗?`"
|
||||||
|
ok-text="Yes" cancel-text="No" @confirm="removeBatch">
|
||||||
|
<a-button :disabled="selectionList.length == 0" type="primary" ghost danger>删除
|
||||||
|
</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-button @click="exportData" type="primary">导出</a-button>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template #action="{ record }">
|
||||||
|
<a-space>
|
||||||
|
<a-button @click="openEdit(record)" type="primary" shape="round" size="small">修改</a-button>
|
||||||
|
<a-popconfirm :title="`确认删除这条数据吗?`" ok-text="Yes" cancel-text="No" @confirm="remove(record)">
|
||||||
|
<a-button type="primary" danger shape="round" size="small">删除</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
</ele-pro-table>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
<!-- 编辑弹窗 -->
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// import _ from "lodash";
|
||||||
|
import {
|
||||||
|
list,
|
||||||
|
addCityDict,
|
||||||
|
modifyCityDict,
|
||||||
|
batchRemove,
|
||||||
|
cityDictCopy,
|
||||||
|
// queryById,
|
||||||
|
getYear
|
||||||
|
} from "@/api/ecology/water/lake/inner";
|
||||||
|
import XLSX from "xlsx";
|
||||||
|
import {
|
||||||
|
DownOutlined
|
||||||
|
} from '@ant-design/icons-vue';
|
||||||
|
// import moment from "moment";
|
||||||
|
export default {
|
||||||
|
name: "LakeInner",
|
||||||
|
components: {
|
||||||
|
DownOutlined
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
data: [],
|
||||||
|
// 表格数据接口
|
||||||
|
url: list,
|
||||||
|
selection: [],
|
||||||
|
// 表格列配置
|
||||||
|
columns: [{
|
||||||
|
title: "年份",
|
||||||
|
dataIndex: "year",
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "行政区域",
|
||||||
|
dataIndex: "regionName",
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "点位名称",
|
||||||
|
dataIndex: "sectionName",
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "操作",
|
||||||
|
key: "action",
|
||||||
|
width: 150,
|
||||||
|
align: "center",
|
||||||
|
fixed: "right",
|
||||||
|
slots: {
|
||||||
|
customRender: "action",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
// 表格搜索条件
|
||||||
|
where: {},
|
||||||
|
// 表格选中数据
|
||||||
|
selectionList: [],
|
||||||
|
// 是否显示编辑弹窗
|
||||||
|
showEdit: false,
|
||||||
|
// 表单数据
|
||||||
|
form: {},
|
||||||
|
loading: false,
|
||||||
|
rules: {
|
||||||
|
year: [{
|
||||||
|
required: true,
|
||||||
|
message: '请输入年份'
|
||||||
|
}],
|
||||||
|
regionName: [{
|
||||||
|
required: true,
|
||||||
|
message: '请输入行政区域'
|
||||||
|
}],
|
||||||
|
sectionName: [{
|
||||||
|
required: true,
|
||||||
|
message: '请输入点位名称'
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
yearOptions: [],
|
||||||
|
showNYear: false,
|
||||||
|
cYear: undefined,
|
||||||
|
nYear: undefined,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getOptions();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/* 刷新表格 */
|
||||||
|
reload() {
|
||||||
|
this.$refs.table.reload({
|
||||||
|
where: this.where,
|
||||||
|
});
|
||||||
|
this.getOptions()
|
||||||
|
},
|
||||||
|
/* 重置搜索 */
|
||||||
|
reset() {
|
||||||
|
this.where = {};
|
||||||
|
this.reload();
|
||||||
|
},
|
||||||
|
/* 打开编辑弹窗 */
|
||||||
|
openEdit(row) {
|
||||||
|
// cloneRecord.mi
|
||||||
|
this.form = Object.assign({}, row);
|
||||||
|
this.showEdit = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.form.clearValidate(); // 清除表单验证信息
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async save() {
|
||||||
|
await this.$refs.form.validate();
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
const form = this.form;
|
||||||
|
console.log(form, 'form');
|
||||||
|
if (form.lakeCityDictId) {
|
||||||
|
modifyCityDict(form)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.showEdit = false;
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.$message.error(error.message);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hide();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addCityDict(form)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.showEdit = false;
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.$message.error(error.message);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hide();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* 删除单个 */
|
||||||
|
remove(row) {
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
batchRemove({'lakeCityDictIds':[row.lakeCityDictId]}).then((res) => {
|
||||||
|
hide();
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
hide();
|
||||||
|
this.$message.error(e.message);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/* 批量删除 */
|
||||||
|
removeBatch() {
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
const ids = this.selectionList.map((item) => item.lakeCityDictId);
|
||||||
|
batchRemove({'lakeCityDictIds':ids}).then((res) => {
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
this.$message.error(e.message);
|
||||||
|
}).finally(() => {
|
||||||
|
hide();
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getOptions() {
|
||||||
|
getYear().then(res => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.yearOptions = res.data.data.years.map(item => {
|
||||||
|
return {
|
||||||
|
label: item,
|
||||||
|
value: item
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
setCYear(e) {
|
||||||
|
this.cYear = e.key;
|
||||||
|
this.showNYear = true;
|
||||||
|
},
|
||||||
|
copyBatch() {
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
cityDictCopy({
|
||||||
|
copyYear: Number(this.cYear),
|
||||||
|
newYear: this.nYear
|
||||||
|
}).then(res => {
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
this.getOptions();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
this.showNYear = false;
|
||||||
|
}).catch(e => {
|
||||||
|
this.$message.error(e.message);
|
||||||
|
}).finally(() => {
|
||||||
|
hide();
|
||||||
|
})
|
||||||
|
},
|
||||||
|
exportData() {
|
||||||
|
const columns = this.columns.filter(item => item.dataIndex);
|
||||||
|
const arr = [];
|
||||||
|
const th = columns.map((item) => item.title);
|
||||||
|
arr.push(th);
|
||||||
|
this.data.forEach((d) => {
|
||||||
|
const td = columns.map((item) => d[item.dataIndex]);
|
||||||
|
arr.push(td);
|
||||||
|
});
|
||||||
|
|
||||||
|
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||||
|
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
</style>
|
||||||
441
src/views/water/lake/dict/special.vue
Normal file
441
src/views/water/lake/dict/special.vue
Normal file
@@ -0,0 +1,441 @@
|
|||||||
|
<!--专项-->
|
||||||
|
<template>
|
||||||
|
<div class="ele-body">
|
||||||
|
<a-card :bordered="false">
|
||||||
|
<a-form
|
||||||
|
:model="where"
|
||||||
|
: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 v-model:value="where.year" allow-clear show-search>
|
||||||
|
<a-select-option
|
||||||
|
v-for="(item) in yearOptions"
|
||||||
|
: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-input v-model:value.trim="where.sectionName" placeholder="请输入" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||||
|
<a-space>
|
||||||
|
<a-button type="primary" @click="reload">查询</a-button>
|
||||||
|
<a-button @click="reset">重置</a-button>
|
||||||
|
</a-space>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
<a-row>
|
||||||
|
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="showNYear"
|
||||||
|
:title="'批量复制'"
|
||||||
|
:confirm-loading="loading"
|
||||||
|
:body-style="{ paddingBottom: '8px' }"
|
||||||
|
@ok="copyBatch"
|
||||||
|
>
|
||||||
|
<a-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:rules="rules"
|
||||||
|
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||||
|
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
||||||
|
>
|
||||||
|
<a-form-item label="新年份" name="nYear">
|
||||||
|
<a-input-number id="inputNumber" v-model:value="nYear" :min="1970" :max="2050" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</a-modal>
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="showEdit"
|
||||||
|
:title="form.lakeSpecialDictId !== undefined ? '修改' : '添加'"
|
||||||
|
:confirm-loading="loading"
|
||||||
|
:width="500"
|
||||||
|
:body-style="{ paddingBottom: '8px' }"
|
||||||
|
@ok="save"
|
||||||
|
>
|
||||||
|
<a-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:rules="rules"
|
||||||
|
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||||
|
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
||||||
|
>
|
||||||
|
<a-form-item label="年份" name="year">
|
||||||
|
<a-input-number v-model:value="form.year" :min="1970" :max="2050" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="测站名称" name="testSiteName">
|
||||||
|
<a-input v-model:value="form.testSiteName" placeholder="请输入测站名称" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="测站代码" name="testSiteCode">
|
||||||
|
<a-input v-model:value="form.testSiteCode" placeholder="请输入测站代码" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="湖库名称" name="lakeReservoirName">
|
||||||
|
<a-input v-model:value="form.lakeReservoirName" placeholder="请输入湖库名称" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="湖库代码" name="lakeReservoirCode" >
|
||||||
|
<a-input v-model:value="form.lakeReservoirCode" placeholder="请输入湖库代码" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="断面名称" name="sectionName">
|
||||||
|
<a-input v-model:value="form.sectionName" placeholder="请输入断面名称" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="断面代码" name="sectionCode">
|
||||||
|
<a-input v-model:value="form.sectionCode" placeholder="请输入断面代码" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="控制属性" name="contrAttr" >
|
||||||
|
<a-input v-model:value="form.contrAttr" placeholder="请输入控制属性" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="所属流域" name="watershed">
|
||||||
|
<a-input v-model:value="form.watershed" placeholder="请输入所属流域" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="采样时间" name="samplingTime">
|
||||||
|
<a-date-picker
|
||||||
|
v-model:value="form.samplingTime"
|
||||||
|
valueFormat="YYYY-MM-DD"
|
||||||
|
placeholder="请输入采样时间" allow-clear
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="水期代码" name="waterCode">
|
||||||
|
<a-input v-model:value="form.waterCode" placeholder="请输入水期代码" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
</a-form>
|
||||||
|
</a-modal>
|
||||||
|
<!-- 表格 -->
|
||||||
|
<ele-pro-table
|
||||||
|
v-model:selection="selectionList"
|
||||||
|
ref="table"
|
||||||
|
row-key="lakeSpecialDictId"
|
||||||
|
:datasource="url"
|
||||||
|
:columns="columns"
|
||||||
|
:where="where"
|
||||||
|
:scroll="{ x: 'max-content' }"
|
||||||
|
@done="(d) => (data = d.data)"
|
||||||
|
>
|
||||||
|
<template #toolbar>
|
||||||
|
<a-space>
|
||||||
|
<a-button @click="openEdit" type="primary">新增</a-button>
|
||||||
|
<a-dropdown>
|
||||||
|
<template #overlay>
|
||||||
|
<a-menu @click="setCYear">
|
||||||
|
<a-menu-item v-for="item in yearOptions" :key="item.value">
|
||||||
|
{{ item.label }}
|
||||||
|
</a-menu-item>
|
||||||
|
</a-menu>
|
||||||
|
</template>
|
||||||
|
<a-button>
|
||||||
|
批量复制
|
||||||
|
<DownOutlined/>
|
||||||
|
</a-button>
|
||||||
|
</a-dropdown>
|
||||||
|
<a-popconfirm
|
||||||
|
:disabled="selectionList.length == 0"
|
||||||
|
:title="`确认删除${selectionList.length}条数据吗?`"
|
||||||
|
ok-text="Yes"
|
||||||
|
cancel-text="No"
|
||||||
|
@confirm="removeBatch"
|
||||||
|
>
|
||||||
|
<a-button
|
||||||
|
:disabled="selectionList.length == 0"
|
||||||
|
type="primary"
|
||||||
|
ghost
|
||||||
|
danger
|
||||||
|
>删除
|
||||||
|
</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-button @click="exportData" type="primary">导出</a-button>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
<template #action="{ record }">
|
||||||
|
<a-space>
|
||||||
|
<a-button
|
||||||
|
@click="openEdit(record)"
|
||||||
|
type="primary"
|
||||||
|
shape="round"
|
||||||
|
size="small"
|
||||||
|
>修改</a-button
|
||||||
|
>
|
||||||
|
<a-popconfirm
|
||||||
|
:title="`确认删除这条数据吗?`"
|
||||||
|
ok-text="Yes"
|
||||||
|
cancel-text="No"
|
||||||
|
@confirm="remove(record)"
|
||||||
|
>
|
||||||
|
<a-button type="primary" danger shape="round" size="small"
|
||||||
|
>删除</a-button
|
||||||
|
>
|
||||||
|
</a-popconfirm>
|
||||||
|
</a-space>
|
||||||
|
</template>
|
||||||
|
</ele-pro-table>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
<!-- 编辑弹窗 -->
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
list,
|
||||||
|
addSpecialDict,
|
||||||
|
modifySpecialDict,
|
||||||
|
batchRemove,
|
||||||
|
specialDictCopy,
|
||||||
|
getYear
|
||||||
|
} from "@/api/ecology/water/lake/special";
|
||||||
|
import {DownOutlined} from '@ant-design/icons-vue';
|
||||||
|
import XLSX from "xlsx";
|
||||||
|
export default {
|
||||||
|
name: "autonomous",
|
||||||
|
components: {DownOutlined},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
data: [],
|
||||||
|
// 表格数据接口
|
||||||
|
|
||||||
|
url: list,
|
||||||
|
selection: [],
|
||||||
|
// 表格列配置
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
title: "年份",
|
||||||
|
dataIndex: "year",
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "测站名称",
|
||||||
|
dataIndex: "testSiteName",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "测站代码",
|
||||||
|
dataIndex: "testSiteCode",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "湖库名称",
|
||||||
|
dataIndex: "lakeReservoirName",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "湖库代码",
|
||||||
|
dataIndex: "lakeReservoirCode",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "断面名称",
|
||||||
|
dataIndex: "sectionName",
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "断面代码",
|
||||||
|
dataIndex: "sectionCode",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "控制属性",
|
||||||
|
dataIndex: "contrAttr",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "所属流域",
|
||||||
|
dataIndex: "watershed",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "采样时间",
|
||||||
|
dataIndex: "samplingTime",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "水期代码",
|
||||||
|
dataIndex: "waterCode",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "操作",
|
||||||
|
key: "action",
|
||||||
|
width: 150,
|
||||||
|
align: "center",
|
||||||
|
fixed: "right",
|
||||||
|
slots: {
|
||||||
|
customRender: "action",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
// 表格搜索条件
|
||||||
|
where: {},
|
||||||
|
// 表格选中数据
|
||||||
|
selectionList: [],
|
||||||
|
// 是否显示编辑弹窗
|
||||||
|
showEdit: false,
|
||||||
|
// 表单数据
|
||||||
|
form: {},
|
||||||
|
loading: false,
|
||||||
|
rules: {
|
||||||
|
year: [{required: true, message: '请输入年份'}],
|
||||||
|
sectionName:[{
|
||||||
|
required:true,message: "请输入点位名称",
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
yearOptions: [],
|
||||||
|
showNYear:false,
|
||||||
|
cYear: undefined,
|
||||||
|
nYear:undefined,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getOptions();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
minLeqChange(e){
|
||||||
|
console.log(e)
|
||||||
|
},
|
||||||
|
/* 刷新表格 */
|
||||||
|
reload() {
|
||||||
|
|
||||||
|
this.$refs.table.reload({
|
||||||
|
where: this.where,
|
||||||
|
});
|
||||||
|
this.getOptions();
|
||||||
|
},
|
||||||
|
/* 重置搜索 */
|
||||||
|
reset() {
|
||||||
|
this.where = {};
|
||||||
|
this.reload();
|
||||||
|
},
|
||||||
|
/* 打开编辑弹窗 */
|
||||||
|
openEdit(row) {
|
||||||
|
// cloneRecord.mi
|
||||||
|
this.form = Object.assign({}, row);
|
||||||
|
this.showEdit = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.form.clearValidate(); // 清除表单验证信息
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async save() {
|
||||||
|
await this.$refs.form.validate();
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
const form = this.form;
|
||||||
|
if (form.lakeSpecialDictId) {
|
||||||
|
modifySpecialDict(form)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.showEdit = false;
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.$message.error(error.message);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hide();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addSpecialDict(form)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.showEdit = false;
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.$message.error(error.message);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hide();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* 删除单个 */
|
||||||
|
remove(row) {
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
batchRemove({'lakeSpecialDictIds':[row.lakeSpecialDictId]}).then((res) => {
|
||||||
|
hide();
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
hide();
|
||||||
|
this.$message.error(e.message);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/* 批量删除 */
|
||||||
|
removeBatch() {
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
const ids = this.selectionList.map((item) => item.lakeSpecialDictId);
|
||||||
|
batchRemove({'lakeSpecialDictIds':ids}).then((res) => {
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
this.$message.error(e.message);
|
||||||
|
}).finally(() => {
|
||||||
|
hide();
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getOptions(){
|
||||||
|
getYear().then(res => {
|
||||||
|
if (res.data.code == 0) {
|
||||||
|
this.yearOptions = res.data.data.years.map(item => {
|
||||||
|
return {
|
||||||
|
label: item,
|
||||||
|
value: item
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
setCYear(e){
|
||||||
|
this.cYear = e.key;
|
||||||
|
this.showNYear = true;
|
||||||
|
},
|
||||||
|
copyBatch(){
|
||||||
|
const hide = this.$message.loading('请求中..', 0);
|
||||||
|
specialDictCopy({copyYear:Number(this.cYear),newYear:this.nYear}).then(res=>{
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message.success(res.data.msg);
|
||||||
|
this.reload();
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
this.showNYear = false;
|
||||||
|
}).catch(e => {
|
||||||
|
this.$message.error(e.message);
|
||||||
|
}).finally(() => {
|
||||||
|
hide();
|
||||||
|
})
|
||||||
|
},
|
||||||
|
exportData(){
|
||||||
|
const columns = this.columns.filter(item=>item.dataIndex);
|
||||||
|
const arr = [];
|
||||||
|
const th = columns.map((item) => item.title);
|
||||||
|
arr.push(th);
|
||||||
|
this.data.forEach((d) => {
|
||||||
|
const td = columns.map((item) => d[item.dataIndex]);
|
||||||
|
arr.push(td);
|
||||||
|
});
|
||||||
|
|
||||||
|
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||||
|
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user