市级饮用水页面框架

This commit is contained in:
庞东林
2021-12-09 16:34:51 +08:00
parent 93692924f5
commit 77ae7e4124
9 changed files with 785 additions and 41 deletions

View File

@@ -23,6 +23,12 @@
:scroll="{ x: 'max-content' }"
@done="(d) => (data = d.data)"
>
<template #footer>
<div class="footer">
饮用水源水质监测累积月份统计样品数10
</div>
</template>
<template #waterCode="{ text, record }">
<span>
{{
@@ -87,6 +93,7 @@ export default {
},
data() {
return {
current:0,
data: [],
locale,
bill: {},
@@ -180,6 +187,7 @@ export default {
};
this.reload();
},
exportFile() {
const columns = [...tableColumns];
const arr = [];
@@ -197,4 +205,7 @@ export default {
</script>
<style scoped lang="less">
.footer{
text-align: right;
}
</style>