江河水统计数据代码提交
This commit is contained in:
@@ -1,142 +1,38 @@
|
||||
<!--江河水功能区自治区数据统计-->
|
||||
<!-- 江河水查看数据页面-->
|
||||
<template>
|
||||
<div class="ele-body">
|
||||
<a-card :bordered="false">
|
||||
<!-- 搜索表单 -->
|
||||
<a-form
|
||||
:model="where"
|
||||
:label-col="{ md: { span: 8 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 16 }, sm: { span: 24 } }"
|
||||
>
|
||||
<a-form :model="where" :label-col="{ md: { span: 8 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 16 }, 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.area" allowClear showSearch>
|
||||
<a-select-option
|
||||
v-for="item in areaOptions"
|
||||
:key="item.value"
|
||||
>{{ item.label }}</a-select-option
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col> -->
|
||||
<a-form-item label="断面名称">
|
||||
<a-select v-model:value="where.sectionName" allowClear showSearch>
|
||||
<a-select-option v-for="item in sectionInfo" :key="item.sectionName">{{ item.sectionName }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
<a-form-item label="起始日期:">
|
||||
<a-date-picker valueFormat="YYYY-MM-DD 00:00:00" v-model:value="where.timeStart"></a-date-picker>
|
||||
</a-form-item>
|
||||
<a-form-item label="结束日期:">
|
||||
<a-date-picker valueFormat="YYYY-MM-DD 23:59:59" v-model:value="where.timeEnd"></a-date-picker>
|
||||
</a-form-item>
|
||||
|
||||
<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="reload">查询</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-form>
|
||||
<a-modal
|
||||
v-model:visible="showEdit"
|
||||
:title="form.waterStationWaterFunctionAreaId !== undefined ? '修改记录' : '添加记录'"
|
||||
:confirm-loading="loading"
|
||||
:width="1000"
|
||||
:body-style="{ paddingBottom: '8px' }"
|
||||
@ok="save"
|
||||
>
|
||||
<a-form
|
||||
ref="form"
|
||||
:model="form"
|
||||
:rules="rules"
|
||||
:label-col="{ md: { span: 24 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 24 }, sm: { span: 24 } }"
|
||||
layout="vertical"
|
||||
labelAlign="left"
|
||||
>
|
||||
<a-row gutter="12" >
|
||||
<a-col :md="12" :sm="24">
|
||||
<a-form-item label="采样时间" name="monitorTime">
|
||||
<a-date-picker
|
||||
v-model:value="form.monitorTime"
|
||||
:locale="locale"
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :md="12" :sm="24">
|
||||
</a-col>
|
||||
<template v-for="(item,index) in tableCityColumns" :key="index">
|
||||
<template v-if="item.children">
|
||||
<a-col v-for="(citem,cindex) in item.children" :key="cindex" :md="12" :sm="24">
|
||||
<a-form-item :label="item.title + '-' + citem.title" :name="citem.dataIndex">
|
||||
<a-input
|
||||
v-model:value="form[citem.dataIndex]"
|
||||
:placeholder="'请输入' +item.title + '-' + citem.title"
|
||||
allow-clear
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</template>
|
||||
<template v-else>
|
||||
<a-col :md="12" :sm="24">
|
||||
<a-form-item :label="item.title" :name="item.dataIndex">
|
||||
<a-input
|
||||
v-model:value="form[item.dataIndex]"
|
||||
:placeholder="'请输入' + item.title"
|
||||
allow-clear
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
</a-row>
|
||||
</a-form>
|
||||
</a-modal>
|
||||
<!-- 表格 -->
|
||||
<ele-pro-table
|
||||
v-model:selection="selectionList"
|
||||
ref="table"
|
||||
row-key="waterStationWaterFunctionAreaId"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
>
|
||||
<template v-if="bill.checked != 1" #toolbar>
|
||||
<a-space>
|
||||
<a-button @click="openEdit" type="primary">新增</a-button>
|
||||
<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-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 ref="table" :datasource="datasource" :columns="columns" :where="where"
|
||||
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
|
||||
</ele-pro-table>
|
||||
</a-card>
|
||||
</div>
|
||||
@@ -144,181 +40,156 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import _ from "lodash";
|
||||
import {
|
||||
pageRiverStationUrl,
|
||||
saveRiverStation,
|
||||
removeRiverStation,
|
||||
removeBatchRiverStation,
|
||||
updateRiverStation,
|
||||
getRiverStationBill,
|
||||
} from "@/api/ecology/river-station";
|
||||
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
||||
import { tableCityColumns } from "./colums";
|
||||
// import utils from "./utils";
|
||||
export default {
|
||||
name: "AutoStatis",
|
||||
components: {},
|
||||
data() {
|
||||
const { billId } = this.$route.params;
|
||||
return {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
url: pageRiverStationUrl,
|
||||
selection: [],
|
||||
tableCityColumns,
|
||||
// 表格列配置
|
||||
columns: [
|
||||
...tableCityColumns,
|
||||
|
||||
{
|
||||
title: "创建人",
|
||||
dataIndex: "userName",
|
||||
sorter: true,
|
||||
},
|
||||
{
|
||||
title: "操作",
|
||||
key: "action",
|
||||
width: 150,
|
||||
align: "center",
|
||||
fixed: "right",
|
||||
slots: {
|
||||
customRender: "action",
|
||||
},
|
||||
},
|
||||
],
|
||||
// 表格搜索条件
|
||||
waterStationWaterFunctionAreaBillId: billId,
|
||||
where: {
|
||||
waterStationWaterFunctionAreaBillId: billId,
|
||||
},
|
||||
// 表格选中数据
|
||||
selectionList: [],
|
||||
// 是否显示编辑弹窗
|
||||
showEdit: false,
|
||||
// 表单数据
|
||||
form: {},
|
||||
loading: false,
|
||||
rules: {},
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
const { billId } = this.$route.params;
|
||||
getRiverStationBill(billId).then((res) => {
|
||||
this.bill = res.data.data;
|
||||
if (res.data.data.checked == 1) {
|
||||
this.columns.splice(this.columns.length - 1, 1);
|
||||
}
|
||||
});
|
||||
this.loadOptionData();
|
||||
},
|
||||
methods: {
|
||||
/**获取下来框数据 */
|
||||
loadOptionData() {},
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
console.log("--------------------------")
|
||||
console.log(this.url);
|
||||
this.$refs.table.reload({
|
||||
where: this.where,
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {
|
||||
waterStationWaterFunctionAreaBillId: this.waterStationWaterFunctionAreaBillId,
|
||||
import {
|
||||
// autonomyWaterFunctionTotalUrl,
|
||||
autonomyWaterFunctionTotal
|
||||
} from "@/api/ecology/river-statis";
|
||||
import {
|
||||
listInfo
|
||||
} from "@/api/ecology/water/river-autonomous";
|
||||
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
||||
import {
|
||||
tableColumns
|
||||
} from "./colums";
|
||||
import XLSX from "xlsx";
|
||||
export default {
|
||||
name: "RiverCollectWater",
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
data: [],
|
||||
locale,
|
||||
datasource: {},
|
||||
// 表格数据接口
|
||||
// url: autonomyWaterFunctionTotalUrl,
|
||||
selection: [],
|
||||
tableColumns,
|
||||
// 表格列配置
|
||||
columns: [
|
||||
...tableColumns,
|
||||
],
|
||||
// 表格搜索条件
|
||||
where: {},
|
||||
sectionInfo: {},
|
||||
loading: false,
|
||||
rules: {},
|
||||
};
|
||||
this.reload();
|
||||
},
|
||||
/* 显示编辑 */
|
||||
openEdit(record) {
|
||||
const cloneRecord = _.cloneDeep(record);
|
||||
this.form = Object.assign({}, cloneRecord);
|
||||
this.showEdit = true;
|
||||
this.$nextTick(() => {
|
||||
this.$refs.form.clearValidate(); // 清除表单验证信息
|
||||
mounted() {
|
||||
autonomyWaterFunctionTotal().then((res) => {
|
||||
res.data.data.forEach((e) => {
|
||||
e.wTemp = "-1";
|
||||
e.ph = "-1";
|
||||
e.dissolvedOxygen = "-1";
|
||||
e.cod = "-1";
|
||||
e.fiveDayBod = "-1";
|
||||
e.ammonia = "-1";
|
||||
e.cu = "-1";
|
||||
e.zn = "-1";
|
||||
e.f = "-1";
|
||||
e.se = "-1";
|
||||
e.as = "-1";
|
||||
e.hg = "-1";
|
||||
e.cd = "-1";
|
||||
e.cr6 = "-1";
|
||||
e.pb = "-1";
|
||||
e.cyanide = "-1";
|
||||
e.vPhen = "-1";
|
||||
e.oils = "-1";
|
||||
e.anSaa = "-1";
|
||||
e.s = "-1";
|
||||
e.coloOrg = "-1";
|
||||
e.so4 = "-1";
|
||||
e.cl = "-1";
|
||||
e.nitrateNitrogen = "-1";
|
||||
e.fe = "-1";
|
||||
e.mn = "-1";
|
||||
e.nTotal = "-1";
|
||||
e.transp = "-1";
|
||||
e.chla = "-1";
|
||||
e.ffeMajorOverStandardItemsMultiples = "-1";
|
||||
e.lprlMajorOverStandardItemsMultiples = "-1";
|
||||
})
|
||||
this.datasource = res.data.data;
|
||||
});
|
||||
},
|
||||
created() {
|
||||
listInfo().then((res) => {
|
||||
if (res.data.code == 0) {
|
||||
console.log(res.data.data)
|
||||
this.visibleWater = true;
|
||||
this.sectionInfo = res.data.data
|
||||
} else {
|
||||
this.$message.error(res.data.msg);
|
||||
}
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
// this.$refs.table.reload({
|
||||
// where: this.where,
|
||||
// });
|
||||
autonomyWaterFunctionTotal().then((res) => {
|
||||
res.data.data.forEach((e) => {
|
||||
e.wTemp = "-1";
|
||||
e.ph = "-1";
|
||||
e.dissolvedOxygen = "-1";
|
||||
e.cod = "-1";
|
||||
e.fiveDayBod = "-1";
|
||||
e.ammonia = "-1";
|
||||
e.cu = "-1";
|
||||
e.zn = "-1";
|
||||
e.f = "-1";
|
||||
e.se = "-1";
|
||||
e.as = "-1";
|
||||
e.hg = "-1";
|
||||
e.cd = "-1";
|
||||
e.cr6 = "-1";
|
||||
e.pb = "-1";
|
||||
e.cyanide = "-1";
|
||||
e.vPhen = "-1";
|
||||
e.oils = "-1";
|
||||
e.anSaa = "-1";
|
||||
e.s = "-1";
|
||||
e.coloOrg = "-1";
|
||||
e.so4 = "-1";
|
||||
e.cl = "-1";
|
||||
e.nitrateNitrogen = "-1";
|
||||
e.fe = "-1";
|
||||
e.mn = "-1";
|
||||
e.nTotal = "-1";
|
||||
e.transp = "-1";
|
||||
e.chla = "-1";
|
||||
e.ffeMajorOverStandardItemsMultiples = "-1";
|
||||
e.lprlMajorOverStandardItemsMultiples = "-1";
|
||||
})
|
||||
this.datasource = res.data.data;
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {};
|
||||
this.reload();
|
||||
},
|
||||
/* 导出 */
|
||||
exportFile() {
|
||||
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);
|
||||
});
|
||||
|
||||
save() {
|
||||
const hide = this.$message.loading("请求中..", 0);
|
||||
const form = _.cloneDeep(this.form);
|
||||
if (form.waterStationWaterFunctionAreaId) {
|
||||
updateRiverStation(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(() => {
|
||||
console.log("finallyfinallyfinallyfinally");
|
||||
hide();
|
||||
});
|
||||
} else {
|
||||
form.waterStationWaterFunctionAreaBillId = this.waterStationWaterFunctionAreaBillId;
|
||||
form.userId = this.$store.state.user.user.userId
|
||||
saveRiverStation(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();
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
}
|
||||
|
||||
},
|
||||
/* 删除单个 */
|
||||
remove(row) {
|
||||
const hide = this.$message.loading("请求中..", 0);
|
||||
removeRiverStation(row.waterStationWaterFunctionAreaId)
|
||||
.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.msg);
|
||||
})
|
||||
.finally(() => hide());
|
||||
},
|
||||
removeBatch() {
|
||||
const ids = this.selectionList.map((item) => item.waterStationWaterFunctionAreaId);
|
||||
const hide = this.$message.loading("请求中..", 0);
|
||||
removeBatchRiverStation(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.msg);
|
||||
})
|
||||
.finally(() => hide());
|
||||
},
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
|
||||
Reference in New Issue
Block a user