统计代码优化

This commit is contained in:
shixiaoman
2021-11-24 18:33:51 +08:00
parent 694ecf71ef
commit c6ddce366d
8 changed files with 88 additions and 74 deletions

View File

@@ -35,9 +35,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<a-spin :spinning="loading">
<ele-pro-table ref="table" :datasource="datasource" :columns="columns" :where="where" <ele-pro-table ref="table" :datasource="datasource" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)"> :scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -147,9 +149,7 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
// this.$refs.table.reload({ this.loading = true;
// where: this.where,
// });
listWaterSiteMonthTotal(this.where).then((res) => { listWaterSiteMonthTotal(this.where).then((res) => {
if (res.data.code == 0) { if (res.data.code == 0) {
this.$message.success(res.data.msg); this.$message.success(res.data.msg);
@@ -157,6 +157,7 @@
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -43,6 +43,7 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<a-spin :spinning="loading">
<ele-pro-table ref="table" :datasource="momData" :columns="columnsMom" :where="where" <ele-pro-table ref="table" :datasource="momData" :columns="columnsMom" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)"> :scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
@@ -50,6 +51,7 @@
<ele-pro-table ref="table" :datasource="yoyData" :columns="columnsYoy" :where="where" <ele-pro-table ref="table" :datasource="yoyData" :columns="columnsYoy" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)"> :scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -186,6 +188,7 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
this.loading = true;
listWaterSiteYoy(this.where).then((res) => { listWaterSiteYoy(this.where).then((res) => {
console.log(res.data.data); console.log(res.data.data);
if (res.data.code == 0) { if (res.data.code == 0) {
@@ -199,6 +202,7 @@
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -30,9 +30,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<a-spin :spinning="loading">
<ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where" :scroll="{ x: 'max-content' }" <ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where" :scroll="{ x: 'max-content' }"
@done="(d) => (data = d.data)"> @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -54,7 +56,6 @@
return { return {
data: [], data: [],
momData: [], momData: [],
yoyData: [],
datasource: {}, datasource: {},
columns: [{ columns: [{
title: '断面名称', title: '断面名称',
@@ -118,19 +119,18 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
this.loading=true;
listMonthCompositeIndex(this.where).then((res) => { listMonthCompositeIndex(this.where).then((res) => {
console.log(res.data.data); console.log(res.data.data);
if (res.data.code == 0) { if (res.data.code == 0) {
this.$message.success(res.data.msg); this.$message.success(res.data.msg);
res.data.data.momData.forEach((m) => { res.data.data.forEach((m) => {
this.momData.push(m); this.momData.push(m);
}) })
res.data.data.yoyData.forEach((y) => {
this.yoyData.push(y);
})
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading=false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -36,9 +36,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where" :scroll="{ x: 'max-content' }" <a-spin :spinning="loading">
@done="(d) => (data = d.data)"> <ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -69,8 +71,8 @@
}, },
{ {
title: '断面名称', title: '断面名称',
dataIndex: 'stationName', dataIndex: 'sectionName',
key: 'stationName', key: 'sectionName',
}, },
{ {
title: '考核城市', title: '考核城市',
@@ -126,19 +128,19 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
this.loading = true;
listMonthWaterQualitySandard(this.where).then((res) => { listMonthWaterQualitySandard(this.where).then((res) => {
console.log(res.data.data); console.log(res.data.data);
if (res.data.code == 0) { if (res.data.code == 0) {
this.$message.success(res.data.msg); this.$message.success(res.data.msg);
res.data.data.momData.forEach((m) => { res.data.data.forEach((m) => {
m.transnormalItem = "--"
this.momData.push(m); this.momData.push(m);
}) })
res.data.data.yoyData.forEach((y) => {
this.yoyData.push(y);
})
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -33,9 +33,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where" :scroll="{ x: 'max-content' }" <a-spin :spinning="loading">
@done="(d) => (data = d.data)"> <ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -121,11 +123,12 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
this.loading = true;
listMonthCompositeIndex(this.where).then((res) => { listMonthCompositeIndex(this.where).then((res) => {
console.log(res.data.data); console.log(res.data.data);
if (res.data.code == 0) { if (res.data.code == 0) {
this.$message.success(res.data.msg); this.$message.success(res.data.msg);
res.data.data.momData.forEach((m) => { res.data.data.forEach((m) => {
this.momData.push(m); this.momData.push(m);
}) })
res.data.data.yoyData.forEach((y) => { res.data.data.yoyData.forEach((y) => {
@@ -134,6 +137,7 @@
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -1,4 +1,4 @@
<!-- 江河水查看数据页面--> <!-- 当月水质目标-->
<template> <template>
<div class="ele-body"> <div class="ele-body">
<a-card :bordered="false"> <a-card :bordered="false">
@@ -33,9 +33,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where" :scroll="{ x: 'max-content' }" <a-spin :spinning="loading">
@done="(d) => (data = d.data)"> <ele-pro-table ref="table" :datasource="momData" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -57,7 +59,6 @@
return { return {
data: [], data: [],
momData: [], momData: [],
yoyData: [],
datasource: {}, datasource: {},
columns: [{ columns: [{
title: '断面类型', title: '断面类型',
@@ -66,8 +67,8 @@
}, },
{ {
title: '断面名称', title: '断面名称',
dataIndex: 'stationName', dataIndex: 'sectionName',
key: 'stationName', key: 'sectionName',
}, },
{ {
title: '考核城市', title: '考核城市',
@@ -123,19 +124,18 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
this.loading = true;
listMonthWaterQualitySandard(this.where).then((res) => { listMonthWaterQualitySandard(this.where).then((res) => {
console.log(res.data.data); console.log(res.data.data);
if (res.data.code == 0) { if (res.data.code == 0) {
this.$message.success(res.data.msg); this.$message.success(res.data.msg);
res.data.data.momData.forEach((m) => { res.data.data.forEach((m) => {
this.momData.push(m); this.momData.push(m);
}) })
res.data.data.yoyData.forEach((y) => {
this.yoyData.push(y);
})
} else { } else {
this.$message.error(res.data.msg); this.$message.error(res.data.msg);
} }
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -127,9 +127,7 @@
methods: { methods: {
/* 刷新表格 */ /* 刷新表格 */
reload() { reload() {
// this.$refs.table.reload({ this.loading = true;
// where: this.where,
// });
autonomyWaterFunctionTotal().then((res) => { autonomyWaterFunctionTotal().then((res) => {
res.data.data.forEach((e) => { res.data.data.forEach((e) => {
e.wTemp = "-1"; e.wTemp = "-1";
@@ -165,6 +163,7 @@
e.lprlMajorOverStandardItemsMultiples = "-1"; e.lprlMajorOverStandardItemsMultiples = "-1";
}) })
this.datasource = res.data.data; this.datasource = res.data.data;
this.loading = false;
}); });
}, },
/* 重置搜索 */ /* 重置搜索 */

View File

@@ -31,9 +31,11 @@
</a-row> </a-row>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
<a-spin :spinning="loading">
<ele-pro-table ref="table" :datasource="datasource" :columns="columns" :where="where" <ele-pro-table ref="table" :datasource="datasource" :columns="columns" :where="where"
:scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)"> :scroll="{ x: 'max-content' }" @done="(d) => (data = d.data)">
</ele-pro-table> </ele-pro-table>
</a-spin>
</a-card> </a-card>
</div> </div>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
@@ -107,6 +109,7 @@
}; };
}, },
mounted() { mounted() {
this.loading = true;
nationalWaterFunctionTotal().then((res) => { nationalWaterFunctionTotal().then((res) => {
res.data.data.forEach((e) => { res.data.data.forEach((e) => {
e.wTemp = "-1"; e.wTemp = "-1";
@@ -142,6 +145,7 @@
e.lprlMajorOverStandardItemsMultiples = "-1"; e.lprlMajorOverStandardItemsMultiples = "-1";
}) })
this.datasource = res.data.data; this.datasource = res.data.data;
this.loading = false;
}); });
}, },
created() { created() {