326 lines
6.7 KiB
Vue
326 lines
6.7 KiB
Vue
<template>
|
||
<view :class="{ gray: store.isgray == 1 }">
|
||
<!-- <view style="margin-left: 20rpx;"> <uni-title :title="strDate + ':生产数据'" type="h1" color="red" /> -->
|
||
<!-- </view> -->
|
||
<view class="container">
|
||
<view v-for="(item, index) in shishiArr" :key="index" class="card-item" @click="handleCardClick(item.gas)">
|
||
<view class="card">
|
||
<text class="title">{{ item.gas }}</text>
|
||
<view class="content">
|
||
<text class="label">日油量</text>
|
||
<text class="value">{{ item.rcwy || '-' }}</text>
|
||
</view>
|
||
<view class="content">
|
||
<text class="label">月累计</text>
|
||
<text class="value">{{ item.yl || '-' }}</text>
|
||
</view>
|
||
<view class="content">
|
||
<text class="label">年累计</text>
|
||
<text class="value">{{ item.nl || '-' }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- 数据弹窗 -->
|
||
<uni-popup ref="popup" type="bottom" background-color="#fff">
|
||
<view class="popup-content">
|
||
<view class="popup-header">
|
||
<text class="title">原油数据详情 单位(吨)</text>
|
||
<uni-icons type="closeempty" size="24" color="#666" @click="closePopup"></uni-icons>
|
||
</view>
|
||
|
||
<scroll-view scroll-X="true" scroll-Y="true" class="table-container">
|
||
<view class="table">
|
||
<!-- 表头 -->
|
||
<view class="tr header">
|
||
<view class="th">序号</view>
|
||
<view class="th">名称</view>
|
||
<view class="th">日油量</view>
|
||
<view class="th">月累计 </view>
|
||
<view class="th">年累计 </view>
|
||
</view>
|
||
|
||
<!-- 表格内容 -->
|
||
<view class="tr" v-for="(item, index) in dataJinri" :key="index"
|
||
:class="{ even: index % 2 === 0 }">
|
||
<view class="td">{{ index }}</view>
|
||
<view class="td">{{ item.dw }}</view>
|
||
<view class="td">
|
||
{{ formatNumber(item.rcwy) }}
|
||
</view>
|
||
<view class="td">{{ formatNumber(item.yl) }}</view>
|
||
<view class="td">
|
||
{{ formatNumber(item.nl) }}
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 空数据提示 -->
|
||
<view v-if="!dataJinri.length" class="empty">
|
||
暂无相关数据
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</uni-popup>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import {
|
||
ref,
|
||
onMounted,
|
||
computed,
|
||
nextTick,
|
||
watchEffect
|
||
} from 'vue';
|
||
import {
|
||
onLoad
|
||
} from '@dcloudio/uni-app';
|
||
import {
|
||
queryJinriYuanyouShengchansj
|
||
} from '@/api/shengchan.js';
|
||
import {
|
||
formatDate,
|
||
getDateAfterDays
|
||
} from '@/utils/dateTime.js';
|
||
import {
|
||
beforeJump
|
||
} from '@/utils/index.js';
|
||
import {
|
||
useStore
|
||
} from '@/store';
|
||
|
||
const store = useStore();
|
||
import dataCom from '@/bpm/dataCom.vue';
|
||
|
||
const shishiArr = ref([{
|
||
gas: '原油产量',
|
||
rcwy: '',
|
||
yl: '',
|
||
nl: ''
|
||
},
|
||
|
||
]);
|
||
|
||
const dataJinri = ref([]);
|
||
const dataJinriSum = ref([]);
|
||
const popup = ref(null);
|
||
// 点击卡片处理
|
||
const handleCardClick = () => {
|
||
popup.value.open();
|
||
};
|
||
|
||
// 关闭弹窗
|
||
const closePopup = () => {
|
||
popup.value.close();
|
||
};
|
||
onMounted(() => {
|
||
getJinriYuanyouShengchansj();
|
||
// getYearShengchansj();
|
||
});
|
||
|
||
const strDate = ref('');
|
||
// 数字格式化
|
||
const formatNumber = (num) => {
|
||
if (typeof num !== 'number') return '-';
|
||
return num.toFixed(4).replace(/\.?0+$/, '');
|
||
};
|
||
|
||
|
||
|
||
|
||
|
||
const getJinriYuanyouShengchansj = () => {
|
||
const now = new Date();
|
||
if (now.getHours() < 11) {
|
||
strDate.value = formatDate(getDateAfterDays(now, -1)).toString(); //11点之前 头一天的数据
|
||
} else {
|
||
strDate.value = formatDate(now).toString();
|
||
}
|
||
let queryParms = {};
|
||
dataJinri.value = [];
|
||
dataJinriSum.value = [];
|
||
queryParms.scrq = strDate.value;
|
||
queryParms.pageSize = 100;
|
||
console.log(queryParms);
|
||
queryJinriYuanyouShengchansj(queryParms).then((res) => {
|
||
if (res.success) {
|
||
console.log(res);
|
||
dataJinri.value = res.result.records;
|
||
dataJinriSum.value = sumByOil(dataJinri.value); //包含gas unit rq cq totalGas
|
||
|
||
|
||
console.log(dataJinriSum.value);
|
||
|
||
nextTick();
|
||
shishiArr.value.forEach((item) => {
|
||
dataJinriSum.value.forEach((itemjinri) => {
|
||
|
||
item.rcwy = itemjinri.rcwy.toFixed(4);
|
||
item.nl = itemjinri.nl.toFixed(4);
|
||
item.yl = itemjinri.yl.toFixed(4);
|
||
|
||
});
|
||
});
|
||
// getYearShengchansj(); //再获取今年以来的数据
|
||
}
|
||
});
|
||
};
|
||
|
||
|
||
function sumByOil(records) {
|
||
console.log(records);
|
||
const summaryMap = {};
|
||
try {
|
||
records.forEach((record) => {
|
||
const gas = record.gas;
|
||
if (!summaryMap[gas]) {
|
||
// 初始化该 gas 类型的汇总对象
|
||
summaryMap[gas] = {
|
||
rcwy: 0,
|
||
yl: 0,
|
||
nl: 0
|
||
};
|
||
}
|
||
// 无论是否是第一次遇到该 gas 类型,都进行累加操作
|
||
summaryMap[gas].rcwy += record.rcwy || 0;
|
||
summaryMap[gas].yl += record.yl || 0;
|
||
summaryMap[gas].nl += record.nl || 0
|
||
});
|
||
return Object.values(summaryMap);
|
||
} catch (error) {
|
||
//TODO handle the exception
|
||
console.log(error);
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.container {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
padding: 20rpx;
|
||
gap: 20rpx;
|
||
}
|
||
|
||
.popup-content {
|
||
padding: 30rpx;
|
||
max-height: 70vh;
|
||
}
|
||
|
||
.popup-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 30rpx;
|
||
padding-bottom: 20rpx;
|
||
border-bottom: 2rpx solid #eee;
|
||
|
||
.title {
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
color: #333;
|
||
}
|
||
}
|
||
|
||
.table-container {
|
||
width: 100%;
|
||
height: 30vh;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.table {
|
||
min-width: 100%;
|
||
border: 2rpx solid #e8e8e8;
|
||
|
||
.tr {
|
||
display: flex;
|
||
border-bottom: 2rpx solid #e8e8e8;
|
||
|
||
&.header {
|
||
background-color: #fafafa;
|
||
font-weight: 600;
|
||
}
|
||
|
||
&.even {
|
||
background-color: #f8f8f8;
|
||
}
|
||
}
|
||
|
||
.th,
|
||
.td {
|
||
flex: 1;
|
||
min-width: 80rpx;
|
||
padding: 10rpx;
|
||
font-size: 20rpx;
|
||
font-weight: 500;
|
||
color: #333;
|
||
text-align: center;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.th {
|
||
background-color: #f0f0f0;
|
||
}
|
||
|
||
.td.negative {
|
||
color: #ff4444;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
|
||
.empty {
|
||
padding: 40rpx;
|
||
text-align: center;
|
||
color: #888;
|
||
font-size: 16rpx;
|
||
}
|
||
|
||
.card-item {
|
||
flex: 1 1 200rpx; // 基础宽度300rpx,自动伸缩 selectedGas formatNumber
|
||
min-width: 200rpx;
|
||
max-width: calc(50% - 10rpx); // 最大不超过容器一半(考虑间距)
|
||
|
||
@media (min-width: 768px) {
|
||
max-width: calc(33.33% - 14rpx); // 大屏显示3列
|
||
}
|
||
}
|
||
|
||
.card {
|
||
background: #ffffff;
|
||
border-radius: 16rpx;
|
||
padding: 10rpx;
|
||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
|
||
|
||
.title {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
font-weight: 600;
|
||
color: #333;
|
||
margin-bottom: 16rpx;
|
||
}
|
||
|
||
.content {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 10rpx;
|
||
|
||
&:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.label {
|
||
font-size: 24rpx;
|
||
color: #666;
|
||
}
|
||
|
||
.value {
|
||
font-size: 28rpx;
|
||
color: #0000ff;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
}
|
||
</style> |