mirror of https://gitee.com/lmlz_0/dc-ui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
3.3 KiB
135 lines
3.3 KiB
1 year ago
|
<template>
|
||
|
<div class="statisticalContainer">
|
||
|
<section class="search">
|
||
|
<el-card shadow="always">
|
||
|
<el-form
|
||
|
ref="searchFormRef"
|
||
|
:model="searchForm"
|
||
|
:rules="rules"
|
||
|
:inline="true"
|
||
|
label-width="120px"
|
||
|
class="searchForm"
|
||
|
status-icon
|
||
|
>
|
||
|
<el-form-item label="时间" prop="qDate">
|
||
|
<el-date-picker
|
||
|
v-model="searchForm.qDate"
|
||
|
type="date"
|
||
|
format="YYYY-MM-DD"
|
||
|
value-format="YYYY-MM-DD"
|
||
|
placeholder="请选择时间"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button type="primary" @click="submitForm(searchFormRef)"
|
||
|
>查询</el-button
|
||
|
>
|
||
|
<el-button @click="resetForm(searchFormRef)">重置</el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
</el-card>
|
||
|
</section>
|
||
|
<section class="statistical">
|
||
|
<el-card shadow="always">
|
||
|
<el-table class="statTable" :data="statData" border style="width: 100%">
|
||
|
<el-table-column prop="devicName" label="设备名" align="center" />
|
||
|
<el-table-column prop="paramName" label="参数名" align="center" />
|
||
|
<el-table-column prop="aval" label="均值" align="center" />
|
||
|
<el-table-column prop="aday" label="日" align="center" />
|
||
|
<el-table-column prop="amonth" label="月" align="center" />
|
||
|
</el-table>
|
||
|
<el-pagination
|
||
|
class="statPagination"
|
||
|
:page-sizes="[10, 20, 30, 40, 50]"
|
||
|
layout="sizes, prev, pager, next"
|
||
|
background
|
||
|
:total="statPage.total"
|
||
|
@size-change="handleSizeChange"
|
||
|
@current-change="handleCurrentChange"
|
||
|
/>
|
||
|
</el-card>
|
||
|
</section>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, reactive, onMounted } from "vue";
|
||
|
import { useDateFormat, useNow } from "@vueuse/core";
|
||
|
import { dcBusiDayReport } from "@/api/monitoring/static";
|
||
|
|
||
|
const searchFormRef = ref();
|
||
|
const searchForm = reactive({
|
||
|
qDate: "",
|
||
|
});
|
||
|
|
||
|
const rules = reactive({
|
||
|
qDate: [
|
||
|
{
|
||
|
type: "date",
|
||
|
required: true,
|
||
|
message: "请选择时间",
|
||
|
trigger: "change",
|
||
|
},
|
||
|
],
|
||
|
});
|
||
|
|
||
|
const today = useDateFormat(useNow(), "YYYY-MM-DD");
|
||
|
const statData = ref([]);
|
||
|
const statPage = reactive({
|
||
|
total: 0,
|
||
|
pageNum: 1,
|
||
|
pageSize: 10,
|
||
|
});
|
||
|
|
||
|
onMounted(() => {
|
||
|
searchForm.qDate = today.value;
|
||
|
getDayReport();
|
||
|
});
|
||
|
|
||
|
function getDayReport() {
|
||
|
//获取数据
|
||
|
const params = {
|
||
|
qDate: searchForm.qDate,
|
||
|
pageNum: statPage.pageNum,
|
||
|
pageSize: statPage.pageSize,
|
||
|
};
|
||
|
dcBusiDayReport(params).then((res) => {
|
||
|
if (res.code === 200) {
|
||
|
statData.value = res.rows;
|
||
|
statPage.total = res.total;
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const handleSizeChange = (val) => {
|
||
|
statPage.pageSize = val;
|
||
|
getDayReport();
|
||
|
};
|
||
|
const handleCurrentChange = (val) => {
|
||
|
statPage.pageNum = val;
|
||
|
getDayReport();
|
||
|
};
|
||
|
|
||
|
const submitForm = async (formEl) => {
|
||
|
if (!formEl) return;
|
||
|
await formEl.validate((valid, fields) => {
|
||
|
if (valid) {
|
||
|
getDayReport();
|
||
|
} else {
|
||
|
console.log("error submit!", fields);
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
const resetForm = (formEl) => {
|
||
|
if (!formEl) return;
|
||
|
formEl.resetFields();
|
||
|
searchForm.qDate = today.value;
|
||
|
getDayReport();
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
@import "./index.scss";
|
||
|
</style>
|