统计代码优化

This commit is contained in:
shixiaoman
2021-11-26 17:11:50 +08:00
parent 03d769b835
commit fa9a4e4324
5 changed files with 113 additions and 226 deletions

View File

@@ -32,7 +32,7 @@
</a-form>
<!-- 表格 -->
<a-spin :spinning="loading">
<ele-pro-table ref="table" :datasource="datasource" :columns="columns" :where="where"
<ele-pro-table ref="table" :datasource="url" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table>
</a-spin>
@@ -43,15 +43,15 @@
<script>
import {
// nationalWaterFunctionTotalUrl,
nationalWaterFunctionTotal
nationalWaterFunctionTotalUrl,
// nationalWaterFunctionTotal
} from "@/api/ecology/river-statis";
import {
listInfo
} from "@/api/ecology/water/river-api-relate";
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
import {
tableColumns
nationalTableColumns
} from "./colums";
import XLSX from "xlsx";
export default {
@@ -60,46 +60,16 @@
data() {
return {
data: [],
datasource: {
wTemp: '-1',
ph: '-1',
dissolvedOxygen: '-1',
cod: '-1',
fiveDayBod: '-1',
ammonia: '-1',
cu: '-1',
zn: '-1',
f: '-1',
se: '-1',
as: '-1',
hg: '-1',
cd: '-1',
cr6: '-1',
pb: '-1',
cyanide: '-1',
vPhen: '-1',
oils: '-1',
anSaa: '-1',
s: '-1',
coloOrg: '-1',
so4: '-1',
cl: '-1',
nitrateNitrogen: '-1',
fe: '-1',
mn: '-1',
nTotal: '-1',
transp: '-1',
chla: '-1'
},
// datasource: {},
locale,
bill: {},
// 表格数据接口
// url: nationalWaterFunctionTotalUrl,
url: nationalWaterFunctionTotalUrl,
selection: [],
tableColumns,
nationalTableColumns,
// 表格列配置
columns: [
...tableColumns,
...nationalTableColumns,
],
// 表格搜索条件
where: {},
@@ -110,51 +80,10 @@
},
mounted() {
this.loading = true;
nationalWaterFunctionTotal(this.where).then((res) => {
if (res.data.code == 0) {
if (res.data.data != null) {
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;
} else {
this.$message.success("未查询到数据");
}
} else {
this.$message.error(res.data.msg);
}
this.loading = false;
})
this.$refs.table.reload({
where: this.where,
});
this.loading = false;
},
created() {
@@ -172,51 +101,10 @@
/* 刷新表格 */
reload() {
this.loading = true;
nationalWaterFunctionTotal(this.where).then((res) => {
if (res.data.code == 0) {
if (res.data.data != null) {
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;
} else {
this.$message.success("未查询到数据");
}
} else {
this.$message.error(res.data.msg);
}
this.loading = false;
})
this.$refs.table.reload({
where: this.where,
});
this.loading = false;
},
/* 重置搜索 */
reset() {