Compare commits

...

6 Commits

Author SHA1 Message Date
zwq
fe2408c667 更新大屏 2026-07-01 09:38:25 +08:00
a2375325a0 Merge pull request 'projects/qhd-line-zhp' (#467) from projects/qhd-line-zhp into projects/qhd-line-test
Reviewed-on: #467
2025-12-23 08:52:44 +08:00
‘937886381’
04d5896f6e Merge branch 'projects/qhd-line-test' into projects/qhd-line-zhp 2025-12-23 08:51:19 +08:00
‘937886381’
46a23c249c 修改 2025-12-23 08:49:37 +08:00
242a52b98e Merge pull request 'projects/qhd-line-zhp' (#465) from projects/qhd-line-zhp into projects/qhd-line-test
Reviewed-on: #465
2025-12-17 16:30:08 +08:00
‘937886381’
945237557f 修改 2025-12-17 16:27:13 +08:00
26 changed files with 2649 additions and 1671 deletions

View File

@@ -12,8 +12,8 @@ ENV = 'development'
VUE_APP_TITLE = 智能监控分析系统 VUE_APP_TITLE = 智能监控分析系统
# 芋道管理系统/开发环境 # 芋道管理系统/开发环境
VUE_APP_BASE_API = 'http://172.16.32.79:48082' # VUE_APP_BASE_API = 'http://172.16.32.79:48082'
# VUE_APP_BASE_API = 'http://line.kszny.picaiba.com' VUE_APP_BASE_API = 'http://line.kszny.picaiba.com'
# 路由懒加载 # 路由懒加载

BIN
dist.zip

Binary file not shown.

View File

@@ -111,3 +111,17 @@ export function getProcessAutoReportNew(data) {
data: data, data: data,
}); });
} }
export function getProcessAutoReportLastGroup(data) {
return request({
url: '/monitoring/production-monitor/getProcessAutoReportLastGroup',
method: 'post',
data: data,
});
}
export function getPLlistByFactory(data) {
return request({
url: 'base/production-line/listByFactory',
method: 'post',
data: data,
});
}

View File

@@ -15,3 +15,11 @@ export function getPdlDataOneDay(data) {
data: data data: data
}) })
} }
// 获得近24小时产线生产数据-新版
export function getSectionDataOneDay(data) {
return request({
url: '/monitoring/production-monitor/getSectionDataOneDay',
method: 'post',
data: data
})
}

View File

@@ -2,7 +2,7 @@
<div class='centerBottomL'> <div class='centerBottomL'>
<div class='title'> <div class='title'>
<svg-icon icon-class="dataBoard3" class='icon'/> <svg-icon icon-class="dataBoard3" class='icon'/>
<span>月数据</span> <span>月数据</span>
</div> </div>
<div class='dataBox' style='top:50px'> <div class='dataBox' style='top:50px'>
<p> <p>
@@ -37,7 +37,7 @@ export default {
watch: { watch: {
dataObj(val) { dataObj(val) {
val.monthAndLastMonth && val.monthAndLastMonth.forEach(item => { val.monthAndLastMonth && val.monthAndLastMonth.forEach(item => {
if (item.dataType === "月") { if (item.dataType === "月") {
this.monthData = item this.monthData = item
} }
}) })

View File

@@ -1,62 +1,195 @@
<template> <template>
<div ref="centerTopBox" class='centerTopBox'> <div ref="centerTopBox" class="centerTopBox">
<div> <div>
<video src="/static/videos/01.webm" muted autoplay loop class='videoStyle'></video> <video
src="/static/videos/01.webm"
muted
autoplay
loop
class="videoStyle"></video>
<div class="zhegaiceng" v-if="dataObj">
<div <div
class='eqTipBox' v-show="
v-show='showTooltip' !dataObj.productionDet.find((val) => val.line == 1).isProduction
:style="'left:'+tooltipStyle.left+'px;top:'+tooltipStyle.top+'px;'" "
> class="production-line1"
<p><span class='eqTipTitle'>设备名称:</span><span class='eqTipNum'>{{eqTipMsg.name}}</span></p> data-line="1"
<p><span class='eqTipTitle'>进口数量:</span><span class='eqTipNum'>{{eqTipMsg.input}}</span></p> data-status="stopped">
<p><span class='eqTipTitle'>出口数量:</span><span class='eqTipNum'>{{eqTipMsg.output}}</span></p> <!-- 半透明渐变遮罩 -->
<p><span class='eqTipTitle'>报警状态:</span> <div class="line-mask"></div>
<span class='eqTipNum'> <!-- 状态标签 -->
<img v-show='eqTipMsg.alarm' :src='dotY' width='16'/> <div class="line-status-tag">
<img v-show='!eqTipMsg.alarm' :src='dotG' width='16'/> <span class="status-dot stopped"></span>
产线1 已停产
</div>
</div>
<div
v-show="
!dataObj.productionDet.find((val) => val.line == 2).isProduction
"
class="production-line2"
data-line="2"
data-status="stopped">
<!-- 半透明渐变遮罩 -->
<div class="line-mask"></div>
<!-- 状态标签 -->
<div class="line-status-tag">
<span class="status-dot stopped"></span>
产线2 已停产
</div>
</div>
<div
v-show="
!dataObj.productionDet.find((val) => val.line == 3).isProduction
"
class="production-line3"
data-line="3"
data-status="stopped">
<!-- 半透明渐变遮罩 -->
<div class="line-mask"></div>
<!-- 状态标签 -->
<div class="line-status-tag">
<span class="status-dot stopped"></span>
产线3 已停产
</div>
</div>
<div
v-show="
!dataObj.productionDet.find((val) => val.line == 4).isProduction
"
class="production-line4"
data-line="4"
data-status="stopped">
<!-- 半透明渐变遮罩 -->
<div class="line-mask"></div>
<!-- 状态标签 -->
<div class="line-status-tag">
<span class="status-dot stopped"></span>
产线4 已停产
</div>
</div>
<div
v-show="
!dataObj.productionDet.find((val) => val.line == 5).isProduction
"
class="production-line5"
data-line="5"
data-status="stopped">
<!-- 半透明渐变遮罩 -->
<div class="line-mask"></div>
<!-- 状态标签 -->
<div class="line-status-tag">
<span class="status-dot stopped"></span>
产线5 已停产
</div>
</div>
</div>
<div
class="eqTipBox"
v-show="showTooltip"
:style="
'left:' + tooltipStyle.left + 'px;top:' + tooltipStyle.top + 'px;'
">
<p>
<span class="eqTipTitle">设备名称:</span>
<span class="eqTipNum">{{ eqTipMsg.name }}</span>
</p>
<p>
<span class="eqTipTitle">进口数量:</span>
<span class="eqTipNum">{{ eqTipMsg.input }}</span>
</p>
<p>
<span class="eqTipTitle">出口数量:</span>
<span class="eqTipNum">{{ eqTipMsg.output }}</span>
</p>
<p>
<span class="eqTipTitle">报警状态:</span>
<span class="eqTipNum">
<img v-show="eqTipMsg.alarm" :src="dotY" width="16" />
<img v-show="!eqTipMsg.alarm" :src="dotG" width="16" />
{{ eqTipMsg.alarm ? '报警' : '未报警' }} {{ eqTipMsg.alarm ? '报警' : '未报警' }}
</span> </span>
</p> </p>
<p><span class='eqTipTitle'>在线状态:</span> <p>
<span class='eqTipNum'> <span class="eqTipTitle">在线状态:</span>
<img v-show='eqTipMsg.status' :src='dotG' width='16'/> <span class="eqTipNum">
<img v-show='!eqTipMsg.status' :src='dotR' width='16'/> <img v-show="eqTipMsg.status" :src="dotG" width="16" />
<img v-show="!eqTipMsg.status" :src="dotR" width="16" />
{{ eqTipMsg.status ? '在线' : '离线' }} {{ eqTipMsg.status ? '在线' : '离线' }}
</span> </span>
</p> </p>
</div> </div>
<!-- 设备 --> <!-- 设备 -->
<div class='eqBox'> <div class="eqBox">
<!-- line-从上到下-从右往左 --> <!-- line-从上到下-从右往左 -->
<span <span
v-for='(item,index) in eqList' v-for="(item, index) in eqList"
:key='index' :key="index"
:style="'width:'+item.w+'px;height:'+item.h+'px;left:'+item.l+'px;top:'+item.t+'px'" :style="
'width:' +
item.w +
'px;height:' +
item.h +
'px;left:' +
item.l +
'px;top:' +
item.t +
'px'
"
@mouseenter="handleMouseEnter(item, $event)" @mouseenter="handleMouseEnter(item, $event)"
@mouseleave="handleMouseLeave" @mouseleave="handleMouseLeave"></span>
></span>
</div> </div>
</div> </div>
<div class='centerTopTopBox'> <div class="centerTopTopBox">
<div style='display: inline-block;'> <div style="display: inline-block">
<img src="../../../../assets/images/dataBoard/centerNumB.png" alt="" width='203'> <img
<p class='num'>{{dataObj?.productRate || '-'}}%</p> src="../../../../assets/images/dataBoard/centerNumB.png"
<p class='title'>成品率</p> alt=""
width="203" />
<p class="num" style="font-size: 25px">
<span style="color: #2e7dff">
{{ dataObj?.productRateYesterday ?? '-' }}%
</span>
<span style="color: #999">/</span>
<span style="color: #ff8a00">
{{ dataObj?.productRate30day ?? '-' }}%
</span>
</p>
<p class="title">昨日/近30天成品率</p>
</div> </div>
<div style='display: inline-block;'> <div style="display: inline-block">
<img src="../../../../assets/images/dataBoard/centerNumY.png" alt="" width='261'> <img
<p class='num' style='width: 260px;padding-left: 20px;'>{{dataObj?.todayProduct ? formatThousands(dataObj.todayProduct) : '-'}}</p> src="../../../../assets/images/dataBoard/centerNumY.png"
<p class='title' style='color:#FFB625'>今日产量</p> alt=""
width="261" />
<p class="num" style="width: 260px; padding-left: 20px">
{{
dataObj?.todayProduct ? formatThousands(dataObj.todayProduct) : '-'
}}
</p>
<p class="title" style="color: #ffb625">当日产量</p>
</div> </div>
<div style='display: inline-block;'> <div style="display: inline-block">
<img src="../../../../assets/images/dataBoard/centerNumY.png" alt="" width='261'> <img
<p class='num' style='width: 260px;padding-left: 20px;'>{{dataObj?.monthProduct ? formatThousands(dataObj.monthProduct) : '-'}}</p> src="../../../../assets/images/dataBoard/centerNumY.png"
<p class='title' style='color:#FFB625'>本月产量</p> alt=""
width="261" />
<p class="num" style="width: 260px; padding-left: 20px">
{{
dataObj?.monthProduct ? formatThousands(dataObj.monthProduct) : '-'
}}
</p>
<p class="title" style="color: #ffb625">当月产量</p>
</div> </div>
<div style='display: inline-block;'> <div style="display: inline-block">
<img src="../../../../assets/images/dataBoard/centerNumB.png" alt="" width='203'> <img
<p class='num'>{{dataObj?.alarmNum ? formatThousands(dataObj.alarmNum) : '-'}}</p> src="../../../../assets/images/dataBoard/centerNumB.png"
<p class='title'>设备报警数</p> alt=""
width="203" />
<p class="num">
{{ dataObj?.alarmNum ? formatThousands(dataObj.alarmNum) : '-' }}
</p>
<p class="title">设备报警数</p>
</div> </div>
</div> </div>
</div> </div>
@@ -69,7 +202,7 @@ export default {
showTooltip: false, showTooltip: false,
tooltipStyle: { tooltipStyle: {
left: 0, left: 0,
top: 0 top: 0,
}, },
dotY: require('../../../../assets/images/dataBoard/dotY.png'), dotY: require('../../../../assets/images/dataBoard/dotY.png'),
dotR: require('../../../../assets/images/dataBoard/dotR.png'), dotR: require('../../../../assets/images/dataBoard/dotR.png'),
@@ -188,44 +321,45 @@ export default {
{ name: 'A5-包装清洗机-1', id: 501501, w: 30, h: 18, l: 185, t: 473 }, { name: 'A5-包装清洗机-1', id: 501501, w: 30, h: 18, l: 185, t: 473 },
{ name: 'A5-包装清洗机-2', id: 501502, w: 30, h: 18, l: 185, t: 511 }, { name: 'A5-包装清洗机-2', id: 501502, w: 30, h: 18, l: 185, t: 511 },
{ name: 'A5-铺纸机-1', id: 501601, w: 18, h: 15, l: 144, t: 475 }, { name: 'A5-铺纸机-1', id: 501601, w: 18, h: 15, l: 144, t: 475 },
{name:'A5-铺纸机-2',id:501602,w:18,h:15,l:144,t:511} { name: 'A5-铺纸机-2', id: 501602, w: 18, h: 15, l: 144, t: 511 },
], ],
eqTipMsg: { eqTipMsg: {
name: '', name: '',
input: null, input: null,
output: null, output: null,
alarm: '未报警', alarm: '未报警',
status:'在线' status: '在线',
} },
} };
}, },
props: { props: {
scaleNum: { scaleNum: {
type: Number, type: Number,
default: 1 default: 1,
}, },
dataObj: { dataObj: {
type: Object, type: Object,
default: () => {} default: () => {},
} },
}, },
watch: { watch: {
scaleNum(val) { scaleNum(val) {
this.scaleNum = val this.scaleNum = val;
}, },
dataObj(val) { dataObj(val) {
val.equipmentDets && val.equipmentDets.forEach(item => { val.equipmentDets &&
this.eqList.forEach(eq => { val.equipmentDets.forEach((item) => {
this.eqList.forEach((eq) => {
if (eq.id == item.id) { if (eq.id == item.id) {
eq.name = item.name eq.name = item.name;
eq.input = item.input eq.input = item.input;
eq.output = item.output eq.output = item.output;
eq.alarm = item.isError eq.alarm = item.isError;
eq.status = item.isRun eq.status = item.isRun;
}
})
})
} }
});
});
},
}, },
mounted() {}, mounted() {},
methods: { methods: {
@@ -243,7 +377,7 @@ export default {
this.showTooltip = false; this.showTooltip = false;
}, },
updateTooltipPosition(event) { updateTooltipPosition(event) {
const rect = this.$refs.centerTopBox.getBoundingClientRect() const rect = this.$refs.centerTopBox.getBoundingClientRect();
const offset = 15; const offset = 15;
const tooltipWidth = 315 * this.scaleNum; const tooltipWidth = 315 * this.scaleNum;
const tooltipHeight = 170 * this.scaleNum; const tooltipHeight = 170 * this.scaleNum;
@@ -261,9 +395,9 @@ export default {
} }
this.tooltipStyle.left = posX / this.scaleNum; this.tooltipStyle.left = posX / this.scaleNum;
this.tooltipStyle.top = posY / this.scaleNum; this.tooltipStyle.top = posY / this.scaleNum;
} },
} },
} };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
p { p {
@@ -272,7 +406,8 @@ p{
.centerTopBox { .centerTopBox {
width: 1041px; width: 1041px;
height: 600px; height: 600px;
background: url('../../../../assets/images/dataBoard/center-top.png') no-repeat; background: url('../../../../assets/images/dataBoard/center-top.png')
no-repeat;
background-size: 100%; background-size: 100%;
position: absolute; position: absolute;
left: 440px; left: 440px;
@@ -296,7 +431,7 @@ p{
span { span {
display: inline-block; display: inline-block;
font-size: 20px; font-size: 20px;
color: #FFFFFF; color: #ffffff;
letter-spacing: 1px; letter-spacing: 1px;
vertical-align: middle; vertical-align: middle;
} }
@@ -314,6 +449,82 @@ p{
text-overflow: ellipsis; text-overflow: ellipsis;
} }
} }
.zhegaiceng {
.production-line1 {
position: absolute;
left: 3px;
top: 160px;
width: 99%;
height: 70px;
}
.production-line2 {
position: absolute;
left: 3px;
top: 232px;
width: 99%;
height: 75px;
}
.production-line3 {
position: absolute;
left: 3px;
top: 306px;
width: 99%;
height: 68px;
}
.production-line4 {
position: absolute;
left: 3px;
top: 372px;
width: 99%;
height: 86px;
}
.production-line5 {
position: absolute;
left: 3px;
top: 460px;
width: 99%;
height: 80px;
}
.line-mask {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(
to right,
rgba(14, 14, 14, 0.9),
rgba(14, 14, 14, 0.7),
rgba(14, 14, 14, 0.9)
);
}
.line-status-tag {
position: absolute;
top: 50%;
left: 40%;
transform: translateY(-50%);
padding: 6px 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 4px;
font-size: 25px;
z-index: 10;
/* 新增:让内部元素 flex 垂直居中 */
display: flex;
align-items: center; /* 核心:垂直居中 */
gap: 6px; /* 控制点和文字的间距,避免重叠 */
}
.status-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
/* 移除可能影响对齐的 margin-top/margin-bottom */
margin: 0;
}
.status-dot.stopped {
background: #ff3d3d;
}
}
.eqBox { .eqBox {
span { span {
display: inline-block; display: inline-block;
@@ -333,7 +544,7 @@ p{
box-sizing: border-box; box-sizing: border-box;
font-weight: 500; font-weight: 500;
font-size: 38px; font-size: 38px;
color: #FFFFFF; color: #ffffff;
text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.62); text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.62);
text-align: center; text-align: center;
position: absolute; position: absolute;
@@ -342,7 +553,7 @@ p{
.title { .title {
font-weight: 500; font-weight: 500;
font-size: 20px; font-size: 20px;
color: #00C8F7; color: #00c8f7;
letter-spacing: 2px; letter-spacing: 2px;
text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.62); text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.62);
text-align: center; text-align: center;

View File

@@ -1,17 +1,20 @@
<template> <template>
<div class='leftBottomBox'> <div class="leftBottomBox">
<div class='title'> <div class="title">
<svg-icon icon-class="dataBoard2" class='icon'/> <svg-icon icon-class="dataBoard2" class="icon" />
<span>投入产出及良品率</span> <span>投入产出及良品率</span>
</div> </div>
<div v-if='xData.length === 0' class='noData'>暂无数据</div> <div v-if="xData.length === 0" class="noData">暂无数据</div>
<div v-else> <div v-else>
<div class="top_legend"> <div class="top_legend">
<span class="chart_legend_icon1">投入</span> <span class="chart_legend_icon1">投入</span>
<span class="chart_legend_icon2">产出</span> <span class="chart_legend_icon2">产出</span>
<span><span class="chart_legend_icon3"></span>良品率</span> <span>
<span class="chart_legend_icon3"></span>
良品率
</span>
</div> </div>
<div id='inOutputChart' style='width: 400px;height: 290px;'></div> <div id="inOutputChart" style="width: 400px; height: 290px"></div>
</div> </div>
</div> </div>
</template> </template>
@@ -22,25 +25,26 @@ export default {
props: { props: {
dataObj: { dataObj: {
type: Object, type: Object,
default: () => {} default: () => {},
} },
}, },
watch: { watch: {
dataObj(val) { dataObj(val) {
this.xData = [] this.xData = [];
this.inputData = [] this.inputData = [];
this.outputData = [] this.outputData = [];
this.goodRateData = [] this.goodRateData = [];
val.monthBar && val.monthBar.forEach(item => { val.monthBar &&
this.xData.push(item.dataType) val.monthBar.forEach((item) => {
this.inputData.push(item.inputNum) this.xData.push(item.dataType);
this.outputData.push(item.outputNum) this.inputData.push(item.inputNum);
this.goodRateData.push(item.goodRate) this.outputData.push(item.outputNum);
}) this.goodRateData.push(item.goodRate.toFixed(2));
});
this.$nextTick(() => { this.$nextTick(() => {
this.initChart(); this.initChart();
}) });
} },
}, },
data() { data() {
return { return {
@@ -50,7 +54,7 @@ export default {
inputData: [], inputData: [],
outputData: [], outputData: [],
goodRateData: [], goodRateData: [],
} };
}, },
mounted() {}, mounted() {},
methods: { methods: {
@@ -60,10 +64,10 @@ export default {
this.chart !== '' && this.chart !== '' &&
this.chart !== undefined this.chart !== undefined
) { ) {
this.chart.dispose() // 页面多次刷新会出现警告Dom已经初始化了一个实例这是销毁实例 this.chart.dispose(); // 页面多次刷新会出现警告Dom已经初始化了一个实例这是销毁实例
} }
this.chartDom = document.getElementById('inOutputChart') this.chartDom = document.getElementById('inOutputChart');
this.chart = echarts.init(this.chartDom) this.chart = echarts.init(this.chartDom);
var option; var option;
option = { option = {
grid: { top: 40, right: 10, bottom: 5, left: 10, containLabel: true }, grid: { top: 40, right: 10, bottom: 5, left: 10, containLabel: true },
@@ -71,85 +75,90 @@ export default {
show: false, show: false,
}, },
xAxis: { xAxis: {
type: "category", type: 'category',
data: this.xData, data: this.xData,
axisLabel: { axisLabel: {
color: "#fff", color: '#fff',
fontSize: 10, fontSize: 10,
interval: 0, interval: 0,
rotate:30 rotate: 30,
}, },
axisTick: { show: false }, axisTick: { show: false },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
width: 2, width: 2,
color: "#5982B2", color: '#5982B2',
}, },
}, },
}, },
yAxis: [{ yAxis: [
name: "单位/片", {
name: '单位/片',
nameTextStyle: { nameTextStyle: {
color: "#DFF1FE", color: '#DFF1FE',
fontSize: 12, fontSize: 12,
}, },
type: "value", type: 'value',
axisLabel: { axisLabel: {
color: "#DFF1FE", color: '#DFF1FE',
fontSize: 12, fontSize: 12,
formatter: "{value}", formatter: '{value}',
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
width: 2, width: 2,
color: "#5982B2", color: '#5982B2',
}, },
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
width: 2, width: 2,
color: "#5982B2", color: '#5982B2',
}, },
}, },
},{ },
name: "良品率/%", {
name: '良品率/%',
nameTextStyle: { nameTextStyle: {
color: "#DFF1FE", color: '#DFF1FE',
fontSize: 12, fontSize: 12,
}, },
type: "value", type: 'value',
max: 100,
min: 80,
axisLabel: { axisLabel: {
color: "#DFF1FE", color: '#DFF1FE',
fontSize: 12, fontSize: 12,
formatter: "{value}", formatter: '{value}',
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
width: 2, width: 2,
color: "#5982B2", color: '#5982B2',
}, },
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
width: 2, width: 2,
color: "#5982B2", color: '#5982B2',
}, },
}, },
}], },
],
tooltip: { tooltip: {
trigger: "axis", trigger: 'axis',
axisPointer: { axisPointer: {
type: "shadow", type: 'shadow',
}, },
className: "qhd-chart-tooltip", className: 'qhd-chart-tooltip',
show: true, show: true,
}, },
series: [ series: [
{ {
data: this.inputData, data: this.inputData,
type: "bar", type: 'bar',
barWidth: 10, barWidth: 10,
barGap: 0, barGap: 0,
itemStyle: { itemStyle: {
@@ -161,7 +170,7 @@ export default {
}, },
{ {
data: this.outputData, data: this.outputData,
type: "bar", type: 'bar',
barWidth: 10, barWidth: 10,
itemStyle: { itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
@@ -172,7 +181,7 @@ export default {
}, },
{ {
data: this.goodRateData, data: this.goodRateData,
type: "line", type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
symbol: 'circle', symbol: 'circle',
symbolSize: 7, symbolSize: 7,
@@ -183,20 +192,21 @@ export default {
{ offset: 0.2, color: 'rgba(18, 255, 245, 0.2)' }, { offset: 0.2, color: 'rgba(18, 255, 245, 0.2)' },
{ offset: 0.4, color: 'rgba(18, 255, 245, 0)' }, { offset: 0.4, color: 'rgba(18, 255, 245, 0)' },
]), ]),
} },
} },
], ],
} };
option && this.chart.setOption(option); option && this.chart.setOption(option);
} },
} },
} };
</script> </script>
<style lang='scss' scoped> <style lang="scss" scoped>
.leftBottomBox { .leftBottomBox {
width: 402px; width: 402px;
height: 332px; height: 332px;
background: url('../../../../assets/images/dataBoard/left-bottom.png') no-repeat; background: url('../../../../assets/images/dataBoard/left-bottom.png')
no-repeat;
background-size: 100%; background-size: 100%;
position: absolute; position: absolute;
left: 23px; left: 23px;
@@ -212,7 +222,7 @@ export default {
} }
span { span {
font-size: 24px; font-size: 24px;
color: #52FFF1; color: #52fff1;
line-height: 24px; line-height: 24px;
vertical-align: middle; vertical-align: middle;
} }
@@ -231,21 +241,21 @@ export default {
} }
.chart_legend_icon1:before { .chart_legend_icon1:before {
display: inline-block; display: inline-block;
content: ""; content: '';
width: 10px; width: 10px;
height: 10px; height: 10px;
margin-right: 5px; margin-right: 5px;
border-radius: 2px; border-radius: 2px;
background: #73F8E0; background: #73f8e0;
} }
.chart_legend_icon2:before { .chart_legend_icon2:before {
display: inline-block; display: inline-block;
content: ""; content: '';
width: 10px; width: 10px;
height: 10px; height: 10px;
margin-right: 5px; margin-right: 5px;
border-radius: 2px; border-radius: 2px;
background: #497EFF; background: #497eff;
} }
.chart_legend_icon3 { .chart_legend_icon3 {
display: inline-block; display: inline-block;
@@ -253,15 +263,15 @@ export default {
height: 8px; height: 8px;
margin-right: 8px; margin-right: 8px;
border-radius: 4px; border-radius: 4px;
background: #73F8E0; background: #73f8e0;
position: relative; position: relative;
} }
.chart_legend_icon3:before { .chart_legend_icon3:before {
display: inline-block; display: inline-block;
content: ""; content: '';
width: 16px; width: 16px;
height: 2px; height: 2px;
background: #73F8E0; background: #73f8e0;
position: absolute; position: absolute;
top: 3px; top: 3px;
left: -4px; left: -4px;

View File

@@ -6,7 +6,7 @@
</div> </div>
<div class='title-split'> <div class='title-split'>
<img src="../../../../assets//images/dataBoard/leftbar.png" alt=""> <img src="../../../../assets//images/dataBoard/leftbar.png" alt="">
<span class='text'></span> <span class='text'></span>
<img src="../../../../assets//images/dataBoard/rightbar.png" alt=""> <img src="../../../../assets//images/dataBoard/rightbar.png" alt="">
</div> </div>
<div class='data-box'> <div class='data-box'>
@@ -20,11 +20,11 @@
</div> </div>
<div class='right-data' style="top:15px;"> <div class='right-data' style="top:15px;">
<p><span class='num'>{{todayData?.inputNum ? formatThousands(todayData.inputNum) : '-'}}</span><span class='text'>片数</span></p> <p><span class='num'>{{todayData?.inputNum ? formatThousands(todayData.inputNum) : '-'}}</span><span class='text'>片数</span></p>
<p><span class='num'>{{todayData?.inputArea ? formatThousands(todayData.inputArea) : '-'}}</span><span class='text'>面积/</span></p> <!-- <p><span class='num'>{{todayData?.inputArea ? formatThousands(todayData.inputArea) : '-'}}</span><span class='text'>面积/</span></p> -->
</div> </div>
<div class='right-data' style="top:132px;"> <div class='right-data' style="top:132px;">
<p><span class='num'>{{todayData?.outputNum ? formatThousands(todayData.outputNum) : '-'}}</span><span class='text'>片数</span></p> <p><span class='num'>{{todayData?.outputNum ? formatThousands(todayData.outputNum) : '-'}}</span><span class='text'>片数</span></p>
<p><span class='num'>{{todayData?.outputArea ? formatThousands(todayData.outputArea) : '-'}}</span><span class='text'>面积/</span></p> <!-- <p><span class='num'>{{todayData?.outputArea ? formatThousands(todayData.outputArea) : '-'}}</span><span class='text'>面积/</span></p> -->
</div> </div>
</div> </div>
<div class='title-split'> <div class='title-split'>
@@ -43,11 +43,11 @@
</div> </div>
<div class='right-data' style="top:15px;"> <div class='right-data' style="top:15px;">
<p><span class='num'>{{yesterdayData?.inputNum ? formatThousands(yesterdayData.inputNum) : '-'}}</span><span class='text'>片数</span></p> <p><span class='num'>{{yesterdayData?.inputNum ? formatThousands(yesterdayData.inputNum) : '-'}}</span><span class='text'>片数</span></p>
<p><span class='num'>{{yesterdayData?.inputArea ? formatThousands(yesterdayData.inputArea) : '-'}}</span><span class='text'>面积/</span></p> <!-- <p><span class='num'>{{yesterdayData?.inputArea ? formatThousands(yesterdayData.inputArea) : '-'}}</span><span class='text'>面积/</span></p> -->
</div> </div>
<div class='right-data' style="top:132px;"> <div class='right-data' style="top:132px;">
<p><span class='num'>{{yesterdayData?.outputNum ? formatThousands(yesterdayData.outputNum) : '-'}}</span><span class='text'>片数</span></p> <p><span class='num'>{{yesterdayData?.outputNum ? formatThousands(yesterdayData.outputNum) : '-'}}</span><span class='text'>片数</span></p>
<p><span class='num'>{{yesterdayData?.outputArea ? formatThousands(yesterdayData.outputArea) : '-'}}</span><span class='text'>面积/</span></p> <!-- <p><span class='num'>{{yesterdayData?.outputArea ? formatThousands(yesterdayData.outputArea) : '-'}}</span><span class='text'>面积/</span></p> -->
</div> </div>
</div> </div>
</div> </div>
@@ -155,6 +155,7 @@ export default {
color: #FFFFFF; color: #FFFFFF;
letter-spacing: 1px; letter-spacing: 1px;
text-shadow: 0px 4px 2px rgba(0,0,0,0.62); text-shadow: 0px 4px 2px rgba(0,0,0,0.62);
line-height: 90px;
} }
} }
} }

View File

@@ -2,7 +2,7 @@
<div class='rightBottomBox'> <div class='rightBottomBox'>
<div class='title'> <div class='title'>
<svg-icon icon-class="dataBoard3" class='icon'/> <svg-icon icon-class="dataBoard3" class='icon'/>
<span><span class='dotted'></span>班组生产排名</span> <span><span class='dotted'></span>班组生产排名</span>
</div> </div>
<div class='rankingLeft'> <div class='rankingLeft'>
<div class='rankingLeftTitle'>产量</div> <div class='rankingLeftTitle'>产量</div>

View File

@@ -21,7 +21,7 @@
</div> </div>
<div class='box' style='width: 115px;'> <div class='box' style='width: 115px;'>
<p class='name'> <p class='name'>
<span style='margin-right: 3px;'>月</span> <span style='margin-right: 3px;'>月</span>
<img v-show='nokSumDet.month >= nokSumDet.lastMonth' src="../../../../assets/images/dataBoard/arrUp.png" alt="" width='5' height='15'> <img v-show='nokSumDet.month >= nokSumDet.lastMonth' src="../../../../assets/images/dataBoard/arrUp.png" alt="" width='5' height='15'>
<img v-show='nokSumDet.month < nokSumDet.lastMonth' src="../../../../assets/images/dataBoard/arrDown.png" alt="" width='5' height='15'> <img v-show='nokSumDet.month < nokSumDet.lastMonth' src="../../../../assets/images/dataBoard/arrDown.png" alt="" width='5' height='15'>
</p> </p>
@@ -29,7 +29,7 @@
</div> </div>
<div class='box' style='width: 110px;'> <div class='box' style='width: 110px;'>
<p class='name'> <p class='name'>
<span style='margin-right: 3px;'>年</span> <span style='margin-right: 3px;'>年</span>
<img v-show='nokSumDet.year >= nokSumDet.lastYear' src="../../../../assets/images/dataBoard/arrUp.png" alt="" width='5' height='15'> <img v-show='nokSumDet.year >= nokSumDet.lastYear' src="../../../../assets/images/dataBoard/arrUp.png" alt="" width='5' height='15'>
<img v-show='nokSumDet.year < nokSumDet.lastYear' src="../../../../assets/images/dataBoard/arrDown.png" alt="" width='5' height='15'> <img v-show='nokSumDet.year < nokSumDet.lastYear' src="../../../../assets/images/dataBoard/arrDown.png" alt="" width='5' height='15'>
</p> </p>

View File

@@ -89,6 +89,31 @@ export default {
}, },
created() {}, created() {},
methods: { methods: {
dataFormSubmit() {
this.$refs["dataForm"].validate((valid) => {
if (!valid) {
return false;
}
// 修改的提交
if (this.dataForm.id) {
this.urlOptions.updateURL(this.dataForm).then(response => {
this.$modal.msgSuccess("修改成功");
this.visible = false;
this.$emit("refreshDataList");
});
return;
}
// 添加的提交
this.urlOptions.createURL(this.dataForm).then(response => {
if (response.code === 1001033 || response.code === 1001034) {
return this.$modal.msgError(response.msg);
}
this.$modal.msgSuccess("新增成功");
this.visible = false;
this.$emit("refreshDataList");
});
});
},
}, },
}; };
</script> </script>

View File

@@ -120,6 +120,29 @@ export default {
.label; .label;
} }
}); });
},
dataFormSubmit() {
this.$refs["dataForm"].validate((valid) => {
if (!valid) {
return false;
}
// 修改的提交
if (this.dataForm.id) {
this.urlOptions.updateURL(this.dataForm).then(response => {
this.$modal.msgSuccess("修改成功");
this.visible = false;
this.$emit("refreshDataList");
});
return;
}
// 添加的提交
this.urlOptions.createURL(this.dataForm).then(response => {
console.log('response', response);
this.$modal.msgSuccess("新增成功");
this.visible = false;
this.$emit("refreshDataList");
});
});
}, },
}, },
}; };

View File

@@ -7,46 +7,20 @@
--> -->
<template> <template>
<div class="app-container"> <div class="app-container">
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @select-changed="handleSearchBarChanged"
:formConfigs="formConfig"
ref="searchBarForm"
@select-changed="handleSearchBarChanged"
@headBtnClick="buttonClick" /> @headBtnClick="buttonClick" />
<div v-if="showData.length"> <div v-if="showData.length">
<base-table <base-table class="right-aside" v-loading="dataListLoading" :table-props="tableProps" :page="1" :limit="999"
class="right-aside"
v-loading="dataListLoading"
:table-props="tableProps"
:page="1"
:limit="999"
:table-data="showData"> :table-data="showData">
<method-btn <method-btn v-if="showData.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
v-if="showData.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<barChart <barChart v-for="item in chartData" :key="item.name + 'echart'" style="margin-top: 50px" height="600px"
v-for="item in chartData" :id="item.name + 'echart'" :title="item.name + ' 节拍趋势图'" :bar-data="item" />
:key="item.name + 'echart'"
style="margin-top: 50px"
height="600px"
:id="item.name + 'echart'"
:title="item.name + ' 节拍趋势图'"
:bar-data="item" />
</div> </div>
<div v-else class="no-data-bg"></div> <div v-else class="no-data-bg"></div>
<base-dialog <base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="addOrUpdateVisible" @cancel="handleCancel"
:dialogTitle="addOrEditTitle" @confirm="handleConfirm" :before-close="handleCancel" close-on-click-modal top="0" width="50%">
:dialogVisible="addOrUpdateVisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel"
close-on-click-modal
top="0"
width="50%">
<eq-detail ref="eqDetail" /> <eq-detail ref="eqDetail" />
<slot name="footer"> <slot name="footer">
<el-row slot="footer" type="flex" justify="end"> <el-row slot="footer" type="flex" justify="end">
@@ -64,7 +38,7 @@
<script> <script>
import eqDetail from './eq-detail'; import eqDetail from './eq-detail';
import { parseTime } from '../../mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getPdList } from '@/api/core/monitoring/auto'; import { getPLlistByFactory } from '@/api/core/monitoring/auto';
import { getNewCTNow, getNewCTCharts } from '@/api/core/analysis/index'; import { getNewCTNow, getNewCTCharts } from '@/api/core/analysis/index';
import { getFactoryPage } from '@/api/core/base/factory'; import { getFactoryPage } from '@/api/core/base/factory';
// import codeFilter from '../../mixins/code-filter' // import codeFilter from '../../mixins/code-filter'
@@ -135,6 +109,8 @@ export default {
label: '工厂', label: '工厂',
selectOptions: [], selectOptions: [],
param: 'factoryId', param: 'factoryId',
collapseTags: true,
multiple: true,
onchange: true, onchange: true,
}, },
{ {
@@ -142,6 +118,7 @@ export default {
label: '产线', label: '产线',
selectOptions: [], selectOptions: [],
param: 'lineId', param: 'lineId',
collapseTags: true,
multiple: true, multiple: true,
}, },
{ {
@@ -183,7 +160,7 @@ export default {
// 获取当前时间 // 获取当前时间
const now = new Date(); const now = new Date();
// 获取前一天的同一时间 // 获取前一天的同一时间
const yesterday = new Date(now.getTime() - 24 * 60 * 60 * 1000); const yesterday = new Date(now.getTime());
// 设置为00:00:00 // 设置为00:00:00
yesterday.setHours(0, 0, 0, 0); yesterday.setHours(0, 0, 0, 0);
// 设置为23:59:59 // 设置为23:59:59
@@ -232,9 +209,9 @@ export default {
return exportTableOut; return exportTableOut;
}, },
getPdLineList() { getPdLineList() {
getPdList().then((res) => { // getPLlistByFactory().then((res) => {
this.formConfig[1].selectOptions = res.data || []; // this.formConfig[1].selectOptions = res.data || [];
}); // });
const params = { const params = {
pageSize: 100, pageSize: 100,
pageNo: 1, pageNo: 1,
@@ -274,7 +251,7 @@ export default {
handleSearchBarChanged({ param, value }) { handleSearchBarChanged({ param, value }) {
this.listQuery.lineId = []; this.listQuery.lineId = [];
this.$refs.searchBarForm.formInline.lineId = undefined; this.$refs.searchBarForm.formInline.lineId = undefined;
getPdList(value).then((res) => { getPLlistByFactory({ factoryIds: this.$refs.searchBarForm.formInline.factoryId }).then((res) => {
this.formConfig[1].selectOptions = res.data || []; this.formConfig[1].selectOptions = res.data || [];
}); });
}, },

View File

@@ -92,6 +92,8 @@ export default {
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'), filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
}, },
{ prop: 'name', label: '设备类型名称' }, { prop: 'name', label: '设备类型名称' },
{ prop: 'isCraft', label: '是否为生产设备',
filter: (val) => val?'是': '否', },
{ prop: 'code', label: '设备类型编码' }, { prop: 'code', label: '设备类型编码' },
{ prop: 'remark', label: '备注' }, { prop: 'remark', label: '备注' },
], ],

View File

@@ -80,7 +80,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20"> <!-- <el-row :gutter="20">
<el-col :span="12"> <el-col :span="12">
<el-form-item label=" 基板类型" prop="typeDictValue"> <el-form-item label=" 基板类型" prop="typeDictValue">
<el-select :disabled="isdetail" v-model="dataForm.typeDictValue" clearable style="width: 100%" <el-select :disabled="isdetail" v-model="dataForm.typeDictValue" clearable style="width: 100%"
@@ -89,7 +89,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row> -->
</el-form> </el-form>
<small-title style="margin: 16px 0; padding-left: 8px" :no-padding="true"> <small-title style="margin: 16px 0; padding-left: 8px" :no-padding="true">

View File

@@ -17,14 +17,14 @@
:table-props="tableProps" :table-props="tableProps"
:table-data="tableData" :table-data="tableData"
:max-height="tableH" :max-height="tableH"
@emitFun="handleEmitFun" :span-method="mergeColumnHandler"
/> @emitFun="handleEmitFun" />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import { getPdlDataOneDay } from '@/api/core/monitoring/data24' import { getSectionDataOneDay } from '@/api/core/monitoring/data24';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin'; import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
@@ -35,7 +35,7 @@ export default {
data() { data() {
return { return {
urlOptions: { urlOptions: {
getDataListURL: getPdlDataOneDay getDataListURL: getSectionDataOneDay,
}, },
initing: false, initing: false,
queryParams: { queryParams: {
@@ -45,6 +45,7 @@ export default {
list: [], list: [],
arr: [], arr: [],
spanArr: [], spanArr: [],
spanArrProLine: [], // 产线合并行数组
timeList: [], timeList: [],
tableData: [], tableData: [],
tableProps: [], tableProps: [],
@@ -58,78 +59,130 @@ export default {
methods: { methods: {
/** 构建tableProps - 依据第一个元素所提供的信息 */ /** 构建tableProps - 依据第一个元素所提供的信息 */
buildProps(plData) { buildProps(plData) {
plData.forEach(item => { this.timeList = []; // 重置避免重复
this.timeList.push(item.name) this.arr = []; // 重置避免重复
}) plData.forEach((item) => {
const timeArray = Array.from(new Set(this.timeList)) this.timeList.push(item.name);
console.log('nihc', timeArray) });
const timeArray = Array.from(new Set(this.timeList));
for (const times of timeArray) { for (const times of timeArray) {
if (times !== '投入数' && times !== '产出数' && times !== '报废数量' && times !== '产出面积') { if (!['投入数', '产出数', '报废数量', '报废比例'].includes(times)) {
const subprop = { const subprop = {
label: times.slice(0, 10) + ' ' + times.slice(11), label: `${times.slice(0, 10)} ${times.slice(11)}`,
align: 'center', align: 'center',
children: [ children: [
{ prop: times + '_in', label: '投入数量', {
filter: (val) => (val != null ? val.toFixed(2) : '-'), }, prop: `${times}_in`,
{ prop: times + '_out', label: '产出数量', label: '投入数',
filter: (val) => (val != null ? val.toFixed(2) : '-'), }, filter: (val) => (val != null ? val : '-'),
{ prop: times + '_junk', label: '报废数量',
filter: (val) => (val != null ? val.toFixed(2) : '-'), },
{ prop: times + '_area', label: '产出面积',
filter: (val) => (val != null ? val.toFixed(2) : '-'), }
]
}
this.arr.push(subprop)
}
}
this.tableProps = this.arr
}, },
setRowSpan(arr) { {
let count = 0 prop: `${times}_out`,
label: '产出数',
filter: (val) => (val != null ? val : '-'),
},
{
prop: `${times}_junk`,
label: '报废数量',
filter: (val) => (val != null ? val : '-'),
},
{
prop: `${times}_area`,
label: '报废比例',
filter: (val) => (val != null ? val.toFixed(2) : '-'),
},
],
};
this.arr.push(subprop);
}
}
this.tableProps = [
{
prop: 'proLineName',
label: '产线',
fixed: 'left',
width: 120,
showOverflowTooltip: true,
},
{
prop: 'spec',
label: '产品规格',
fixed: 'left',
width: 110,
showOverflowTooltip: true,
filter: (val) => val != null ? val.join(' / ') : '-',
},
{
prop: 'sectionName',
label: '工段名称',
fixed: 'left',
width: 120,
showOverflowTooltip: true,
},
{
prop: 'allNum',
label: '生产总数',
fixed: 'left',
showOverflowTooltip: true,
},
...this.arr
];
},
/** 通用合并行计算方法 */
calcRowSpan(arr) {
const spanArr = [];
let count = 0;
arr.forEach((item, index) => { arr.forEach((item, index) => {
if (index === 0) { if (index === 0) {
this.spanArr.push(1) spanArr.push(1);
} else { } else {
if (item === arr[index - 1]) { if (item === arr[index - 1]) {
this.spanArr[count] += 1 spanArr[count] += 1;
this.spanArr.push(0) spanArr.push(0);
} else { } else {
count = index count = index;
this.spanArr.push(1) spanArr.push(1);
} }
} }
}) });
console.log('打印数组长度', this.spanArr) return spanArr;
}, },
/** 把 list 里的数据转换成 tableProps 对应的格式 */ /** 把 list 里的数据转换成 tableProps 对应的格式 */
convertList(list) { convertList(list) {
let sectionArr= [] this.tableData = []; // 重置避免重复
console.log('打印看下数据list', list) const proLineNames = []; // 存储产线名称用于计算合并
list.forEach((ele, index) => { const specNames = []; // 存储规格名称用于计算合并
let tempData = []
ele.data.forEach(item => { list.forEach((ele) => {
item.children.forEach(params => { const tempData = {};
if (params.dynamicName === '投入数量') { // 基础字段赋值
tempData[item.dynamicName + '_in'] = params.dynamicValue tempData.proLineName = ele.proLineName;
} else if (params.dynamicName === '产出数量') { tempData.spec = ele.spec;
tempData[item.dynamicName + '_out'] = params.dynamicValue tempData.sectionName = ele.sectionName;
} else if (params.dynamicName === '报废数量') { tempData.allNum = ele.allNum;
tempData[item.dynamicName + '_junk'] = params.dynamicValue
} else { // 动态字段赋值
tempData[item.dynamicName + '_area'] = params.dynamicValue ele.data.forEach((item) => {
} item.children.forEach((params) => {
}) const keyMap = {
}) '投入数': `${item.dynamicName}_in`,
tempData['proLineName'] = ele.proLineName '产出数': `${item.dynamicName}_out`,
tempData['spec'] = ele.spec '报废数量': `${item.dynamicName}_junk`,
this.tableData.push(tempData) '报废比例': `${item.dynamicName}_area`,
console.log('看看数据', this.tableData, tempData) };
const { proLineName } = tempData const key = keyMap[params.dynamicName];
sectionArr.push(proLineName) if (key) tempData[key] = params.dynamicValue;
}) });
this.setRowSpan(sectionArr) });
console.log('工段名称列表', sectionArr)
this.tableData.push(tempData);
proLineNames.push(ele.proLineName);
specNames.push(ele.spec);
});
// 计算合并行数组
this.spanArrProLine = this.calcRowSpan(proLineNames);
}, },
buildData(data) { buildData(data) {
@@ -138,38 +191,55 @@ export default {
/** 合并table列的规则 */ /** 合并table列的规则 */
mergeColumnHandler({ row, column, rowIndex, columnIndex }) { mergeColumnHandler({ row, column, rowIndex, columnIndex }) {
if (columnIndex == 0) { // 列索引0: 产线列, 列索引1: 产品规格列
if (this.spanArr[rowIndex]) { if (columnIndex === 0) {
return [ return {
this.spanArr[rowIndex], // row span rowspan: this.spanArrProLine[rowIndex] || 0,
1, // col span colspan: this.spanArrProLine[rowIndex] ? 1 : 0
]; };
} else {
return [0, 0];
} }
if (columnIndex === 1) {
return {
rowspan: this.spanArrProLine[rowIndex] || 0,
colspan: this.spanArrProLine[rowIndex] ? 1 : 0
};
} }
// 其他列不合并
return { rowspan: 1, colspan: 1 };
}, },
async getList() { async getList() {
this.urlOptions.getDataListURL().then(res => { this.urlOptions.getDataListURL().then((res) => {
console.log('看看数据', res) console.log('看看数据', res);
this.arr = [ this.arr = [
{ {
prop: 'proLineName', prop: 'proLineName',
label: '产线', label: '产线',
fixed: 'left', fixed: 'left',
showOverflowTooltip: true showOverflowTooltip: true,
}, },
{ {
prop: 'spec', prop: 'spec',
label: '产品规格', label: '产品规格',
fixed: 'left', fixed: 'left',
showOverflowTooltip: true showOverflowTooltip: true,
} },
] {
prop: 'sectionName',
label: '工段名称',
fixed: 'left',
showOverflowTooltip: true,
},
{
prop: 'allNum',
label: '生产总数',
fixed: 'left',
showOverflowTooltip: true,
},
];
this.buildProps(res.data.nameData); this.buildProps(res.data.nameData);
this.buildData(res.data.data); this.buildData(res.data.data);
}) });
// // const data = this.res.data; // // const data = this.res.data;
// // console.log('recent-24', data); // // console.log('recent-24', data);

View File

@@ -348,7 +348,7 @@ export default {
dataListLoading: false, dataListLoading: false,
tableProps, tableProps,
tableBtn: [ tableBtn: [
this.$auth.hasPermi(`monitoring:group-off:update`) this.$auth.hasPermi(`monitoring:group-off:detail`)
? { ? {
type: 'eq', type: 'eq',
btnName: '详情', btnName: '详情',

View File

@@ -34,9 +34,9 @@
<el-tabs v-model="activeLabel" :stretch="true" @tab-click="handleTabClick"> <el-tabs v-model="activeLabel" :stretch="true" @tab-click="handleTabClick">
<el-tab-pane :label="'全部数据'" name="table"> <el-tab-pane :label="'全部数据'" name="table">
<base-table-s ref="lineCurrentShiftTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" <base-table-s ref="lineCurrentShiftTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'"
:page="1" :limit="100" :table-props="tableProps" :table-data="tableData" :max-height="300" /> :page="1" :limit="100" :table-props="tableProps" :table-data="tableData" :max-height="220" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane :label="'\u3000当天生产折线图\u3000'" name="graph"> <el-tab-pane :label="'\u3000生产折线图\u3000'" name="graph">
<div style="height: 230px;" v-if="activeLabel == 'graph'" class="graph"> <div style="height: 230px;" v-if="activeLabel == 'graph'" class="graph">
<barChart v-if="tableData && tableData.length > 0" ref="barChart" height="230px" <barChart v-if="tableData && tableData.length > 0" ref="barChart" height="230px"
:bar-data="tableData" /> :bar-data="tableData" />
@@ -59,7 +59,7 @@
<base-table-s ref="lineTodayTable" style="margin-bottom: 16px;" v-if="activeLabelDay == 'table'" <base-table-s ref="lineTodayTable" style="margin-bottom: 16px;" v-if="activeLabelDay == 'table'"
:page="1" :limit="100" :table-props="tableProps" :table-data="tableData2" :max-height="300" /> :page="1" :limit="100" :table-props="tableProps" :table-data="tableData2" :max-height="300" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane :label="'\u3000当天生产折线图\u3000'" name="graph"> <el-tab-pane :label="'\u3000生产折线图\u3000'" name="graph">
<div style="height: 230px;" v-if="activeLabelDay == 'graph'" class="graph"> <div style="height: 230px;" v-if="activeLabelDay == 'graph'" class="graph">
<barChart v-if="tableData2 && tableData2.length > 0" ref="barChart" height="230px" <barChart v-if="tableData2 && tableData2.length > 0" ref="barChart" height="230px"
:bar-data="tableData2" /> :bar-data="tableData2" />
@@ -72,50 +72,30 @@
</div> </div>
</div> </div>
<div class="content-inner" v-if="listQuery.timeType === 3"> <div class="content-inner" v-if="listQuery.timeType === 3">
<!-- 当班数据占1/2剩余高度 -->
<div class="content-card energyOverlimitLog"> <div class="content-card energyOverlimitLog">
<span class="blue-block"></span> <span class="blue-block"></span>
<span class="tip">上一班数据</span> <span class="tip" v-if="listQuery.startTime && listQuery.endTime">
<el-row style="margin-top: 10px;"> <span>{{ reportTypeMap[listQuery.reportType] }}</span>
<el-col class="custom-tabs"> <span>
<el-tabs v-model="activeLabel" :stretch="true" @tab-click="handleTabClick"> {{ parseTime(listQuery.startTime) }} {{
<el-tab-pane :label="'全部数据'" name="table"> parseTime(listQuery.endTime) }}
<base-table-s ref="lineCurrentShiftTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" </span>
:page="1" :limit="100" :table-props="tableProps" :table-data="tableData" :max-height="300" /> </span>
</el-tab-pane> <span class="tip" v-else>生产数据 </span>
<el-tab-pane :label="'\u3000当天生产折线图\u3000'" name="graph"> <div class="graph">
<div style="height: 230px;" v-if="activeLabel == 'graph'" class="graph"> <base-table-s ref="lineCustomTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" :page="1"
<barChart v-if="tableData && tableData.length > 0" ref="barChart" height="230px" :limit="100" :table-props="tableProps" :max-height="300" :table-data="tableDataCustom" />
:bar-data="tableData" />
<div v-else class="no-data-bg"></div>
</div> </div>
</el-tab-pane>
</el-tabs>
</el-col>
</el-row>
</div> </div>
<!-- 当天数据占1/2剩余高度 -->
<div class="content-card energyOverlimitLog"> <div class="content-card energyOverlimitLog">
<span class="blue-block"></span> <span class="blue-block"></span>
<span class="tip">当天数据</span> <span class="tip">生产折线图</span>
<el-row style="margin-top: 10px;"> <div style="width: 100%;height: 100%;" class="graph">
<el-col class="custom-tabs"> <barChart v-if="tableDataCustom && tableDataCustom.length > 0" ref="barChart"
<el-tabs v-model="activeLabelDay" :stretch="true" @tab-click="handleTabClick"> :bar-data="tableDataCustom" />
<el-tab-pane :label="'全部数据'" name="table">
<base-table-s ref="lineTodayTable" style="margin-bottom: 16px;" v-if="activeLabelDay == 'table'"
:page="1" :limit="100" :table-props="tableProps" :table-data="tableData2" :max-height="300" />
</el-tab-pane>
<el-tab-pane :label="'\u3000当天生产折线图\u3000'" name="graph">
<div style="height: 230px;" v-if="activeLabelDay == 'graph'" class="graph">
<barChart v-if="tableData2 && tableData2.length > 0" ref="barChart" height="230px"
:bar-data="tableData2" />
<div v-else class="no-data-bg"></div> <div v-else class="no-data-bg"></div>
</div> </div>
</el-tab-pane>
</el-tabs>
</el-col>
</el-row>
</div> </div>
</div> </div>
<!-- 3.2 时间维度为自定义时的内容两个平分高度的div --> <!-- 3.2 时间维度为自定义时的内容两个平分高度的div -->
@@ -129,7 +109,7 @@
parseTime(listQuery.endTime) }} parseTime(listQuery.endTime) }}
</span> </span>
</span> </span>
<span class="tip" v-else>生产表格数据 </span> <span class="tip" v-else>生产数据 </span>
<div class="graph"> <div class="graph">
<base-table-s ref="lineCustomTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" :page="1" <base-table-s ref="lineCustomTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" :page="1"
:limit="100" :table-props="tableProps" :max-height="300" :table-data="tableDataCustom" /> :limit="100" :table-props="tableProps" :max-height="300" :table-data="tableDataCustom" />
@@ -186,7 +166,7 @@
parseTime(listQuery.endTime) }} parseTime(listQuery.endTime) }}
</span> </span>
</span> </span>
<span class="tip" v-else>生产表格数据 </span> <span class="tip" v-else>生产数据 </span>
<base-table-s ref="productCustomTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" :page="1" <base-table-s ref="productCustomTable" style="margin-bottom: 16px;" v-if="activeLabel == 'table'" :page="1"
:limit="100" :table-props="productTableProps" :table-data="productTableData" :max-height="300" /> :limit="100" :table-props="productTableProps" :table-data="productTableData" :max-height="300" />
</div> </div>
@@ -199,7 +179,7 @@
<script> <script>
import { parseTime } from '@/filter/code-filter'; import { parseTime } from '@/filter/code-filter';
import { import {
getLineAuto, getPdList, getPdlAutoReportNewSearchNow, getProductAuto, getLineAuto, getPLlistByFactory, getPdlAutoReportNewSearchNow, getProcessAutoReportLastGroup,
getProcessAutoReportGroup, getProcessAutoReportDay, getProcessAutoReportNew, getPdlAutoReportNewSearchLastGroup getProcessAutoReportGroup, getProcessAutoReportDay, getProcessAutoReportNew, getPdlAutoReportNewSearchLastGroup
} from '@/api/core/monitoring/auto'; } from '@/api/core/monitoring/auto';
import { getFactoryPage } from '@/api/core/base/factory'; import { getFactoryPage } from '@/api/core/base/factory';
@@ -210,7 +190,160 @@ import barChart from './BarChart.vue';
import ButtonNav from '@/components/ButtonNav'; import ButtonNav from '@/components/ButtonNav';
import { listData } from '@/api/system/dict/data'; import { listData } from '@/api/system/dict/data';
// 表格列配置 // 表格列配置
const tableProps = [
export default {
components: { barChart, ButtonNav, baseTableS },
data() {
return {
urlOptions: { getDataListURL: getLineAuto },
listQuery: {
lineId: [],
pageSize: 10,
pageNo: 1,
total: 1,
timeType: 1 // 1-当天2-自定义
},
isPeriodicReport: false,
reportTypeMap: {
1: '日报',
2: '周报',
3: '月报',
4: '年报'
},
activeLabel: 'table', // 当班数据tab
activeLabelDay: 'table', // 当天数据tab
fileName: '',
headFormValue: {},
dataListLoading: false,
factoryColumns: [],
factoryColumnsDay: [],
activeName: 'product',
tableBtn: [],
showData: [],
tableData: [],
tableData2: [], // 示例数据,实际从接口获取
productTableData: [],
productTableDataDay: [],
tableDataCustom: [],
list: [], // 折线图数据
timeTypeOptions: {
productLine: [ // 按产线监控(包含上一班)
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' },
{ id: 3, name: '上一班' }
],
product: [ // 按产品监控(不含上一班)
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' },
{ id: 3, name: '上一班' }
]
},
formConfig: [
{
type: 'select',
label: '时间维度',
selectOptions: [
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' },
{ id: 3, name: '上一班' }
],
width: 100,
onchange: true,
// defaultSelect: 1,
clearable: false,
param: 'timeType'
},
{
type: '',
label: '查询类型',
selectOptions: [
{ id: 1, name: '统计数据' },
{ id: 2, name: '周期性汇总报表' }
],
width: 120,
onchange: true,
param: 'searchType'
},
{
type: 'select',
label: '工厂',
selectOptions: [],
param: 'factoryId',
multiple: true,
onchange: true
},
{
type: 'select',
label: '产线',
selectOptions: [],
param: 'lineId',
multiple: true,
onchange: true
},
{
type: 'select',
label: '产品工艺',
selectOptions: [],
param: 'process',
multiple: true,
labelField: 'label',
valueField: 'label',
},
{
type: '',
label: '产品类型',
selectOptions: [
{ id: 1, name: '面板' },
{ id: 2, name: '背板' },
],
multiple: true,
param: 'processType',
},
{
type: '',
label: '报表类型',
selectOptions: [
{ id: 1, name: '日' },
{ id: 2, name: '周' },
{ id: 3, name: '月' },
{ id: 4, name: '年' }
],
onchange: true,
width: 80,
param: 'reportType'
},
{
type: '',
label: '时间范围',
dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'timestamp',
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'timeVal',
width: 350
},
{ type: 'button', btnName: '查询', name: 'search', color: 'primary' },
{ type: 'separate' },
{ type: 'button', btnName: '导出', name: 'export', color: 'warning' },
{
type: 'button',
btnName: '重置',
name: 'reset',
},
// {
// type: 'label', // 初始隐藏
// label: '刷新时间', // 自定义标识
// // slot: 'currentTimeSlot', // 自定义插槽名
// // width: 200, // 宽度适配
// },
]
};
},
computed: {
tableProps() {
const props = [
{ {
prop: 'factoryName', prop: 'factoryName',
label: '工厂', label: '工厂',
@@ -233,6 +366,12 @@ const tableProps = [
label: '产品工艺', label: '产品工艺',
fixed: true fixed: true
}, },
(this.isPeriodicReport ? {
prop: 'reportDate',
label: '日期',
fixed: true,
width: 120
} : ''),
{ {
prop: 'inputN', prop: 'inputN',
label: '投入', label: '投入',
@@ -379,157 +518,8 @@ const tableProps = [
] ]
} }
]; ];
return props
export default {
components: { barChart, ButtonNav, baseTableS },
data() {
return {
urlOptions: { getDataListURL: getLineAuto },
listQuery: {
lineId: [],
pageSize: 10,
pageNo: 1,
total: 1,
timeType: 1 // 1-当天2-自定义
}, },
reportTypeMap: {
1: '日报',
2: '周报',
3: '月报',
4: '年报'
},
activeLabel: 'table', // 当班数据tab
activeLabelDay: 'table', // 当天数据tab
fileName: '',
headFormValue:{},
dataListLoading: false,
tableProps,
factoryColumns: [],
factoryColumnsDay: [],
activeName: 'product',
tableBtn: [],
showData: [],
tableData: [],
tableData2: [], // 示例数据,实际从接口获取
productTableData: [],
productTableDataDay: [],
tableDataCustom: [],
list: [], // 折线图数据
timeTypeOptions: {
productLine: [ // 按产线监控(包含上一班)
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' },
{ id: 3, name: '上一班' }
],
product: [ // 按产品监控(不含上一班)
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' }
]
},
formConfig: [
{
type: 'select',
label: '时间维度',
selectOptions: [
{ id: 1, name: '当天' },
{ id: 2, name: '自定义' },
{ id: 3, name: '上一班' }
],
width: 100,
onchange: true,
// defaultSelect: 1,
clearable: false,
param: 'timeType'
},
{
type: '',
label: '查询类型',
selectOptions: [
{ id: 1, name: '统计数据' },
{ id: 2, name: '周期性汇总报表' }
],
width: 120,
onchange: true,
param: 'searchType'
},
{
type: 'select',
label: '工厂',
selectOptions: [],
param: 'factoryId',
multiple: true,
onchange: true
},
{
type: 'select',
label: '产线',
selectOptions: [],
param: 'lineId',
multiple: true,
onchange: true
},
{
type: 'select',
label: '产品工艺',
selectOptions: [],
param: 'process',
multiple: true,
labelField: 'label',
valueField: 'label',
},
{
type: '',
label: '产品类型',
selectOptions: [
{ id: 1, name: '面板' },
{ id: 2, name: '背板' },
],
multiple: true,
param: 'processType',
},
{
type: '',
label: '报表类型',
selectOptions: [
{ id: 1, name: '日' },
{ id: 2, name: '周' },
{ id: 3, name: '月' },
{ id: 4, name: '年' }
],
onchange: true,
width: 80,
param: 'reportType'
},
{
type: '',
label: '时间范围',
dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'timestamp',
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'timeVal',
width: 350
},
{ type: 'button', btnName: '查询', name: 'search', color: 'primary' },
{ type: 'separate' },
{ type: 'button', btnName: '导出', name: 'export', color: 'warning' },
{
type: 'button',
btnName: '重置',
name: 'reset',
},
// {
// type: 'label', // 初始隐藏
// label: '刷新时间', // 自定义标识
// // slot: 'currentTimeSlot', // 自定义插槽名
// // width: 200, // 宽度适配
// },
]
};
},
computed: {
productTableProps() { productTableProps() {
// 当班数据的完整表头(基础列 + 当班动态表头) // 当班数据的完整表头(基础列 + 当班动态表头)
const baseColumns = [ const baseColumns = [
@@ -549,20 +539,33 @@ export default {
prop: 'processType', prop: 'processType',
label: '产品类型', label: '产品类型',
filter: (val) => (val === 1 ? '面板' : '背板'), filter: (val) => (val === 1 ? '面板' : '背板'),
fixed: true,
sortable: true, sortable: true,
fixed: true
}, },
{ {
prop: 'factoryName', prop: 'factoryName',
label: '工厂', label: '工厂',
fixed: true fixed: true
} },
(this.isPeriodicReport ? {
prop: 'reportDate',
label: '日期',
fixed: true,
width: 120
} : ''),
]; ];
return [...baseColumns, ...this.factoryColumns]; return [...baseColumns, ...this.factoryColumns];
}, },
productTablePropsDay() { productTablePropsDay() {
// 当天数据的完整表头(基础列 + 当天动态表头) // 当天数据的完整表头(基础列 + 当天动态表头)
const baseColumns = [ const baseColumns = [
{
prop: 'sizes',
label: '规格',
width: 105,
showOverflowtooltip: true,
fixed: true
},
{ {
prop: 'process', prop: 'process',
label: '产品工艺', label: '产品工艺',
@@ -579,7 +582,13 @@ export default {
prop: 'factoryName', prop: 'factoryName',
label: '工厂', label: '工厂',
fixed: true fixed: true
} },
(this.isPeriodicReport ? {
prop: 'reportDate',
label: '日期',
fixed: true,
width: 120
} : ''),
]; ];
return [...baseColumns, ...this.factoryColumnsDay]; return [...baseColumns, ...this.factoryColumnsDay];
} }
@@ -702,60 +711,73 @@ export default {
type: 'label', type: 'label',
label: `刷新时间: ${this.formatCurrentTime()}`, label: `刷新时间: ${this.formatCurrentTime()}`,
}; };
this.listQuery.timeType = 1; this.listQuery.timeType = 3;
if (this.$refs.searchBarForm) { if (this.$refs.searchBarForm) {
this.$refs.searchBarForm.formInline.timeType = 1; this.$refs.searchBarForm.formInline.timeType = 3;
} }
if (timeItemIndex > -1) { if (timeItemIndex > -1) {
this.formConfig.splice(timeItemIndex, 1, timeLabel); this.formConfig.splice(timeItemIndex, 1, timeLabel);
} else { } else {
this.formConfig.push(timeLabel); this.formConfig.push(timeLabel);
} }
this.getProductList(); this.getProductLastList();
} }
}, },
// 导出表格 // 导出表格改为async方法支持await调用
handleExport() { async handleExport() {
// 按产线监控 // 按产线监控
if (this.activeName === 'productLine') { if (this.activeName === 'productLine') {
if (this.listQuery.timeType === 1) { if (this.listQuery.timeType === 1) {
// 产线-当天:导出当班 + 当天两个表格(自定义汇总文件名) // 产线-当天:导出当班 + 当天两个表格(自定义汇总文件名)
this.exportMultipleTables([ await this.exportMultipleTables([
{ ref: 'lineCurrentShiftTable', name: '产线监控_当班数据' }, { ref: 'lineCurrentShiftTable', name: '产线监控_当班数据' },
{ ref: 'lineTodayTable', name: '产线监控_当天数据' } { ref: 'lineTodayTable', name: '产线监控_当天数据' }
], '产线监控_当班及当天数据汇总'); // 传入自定义汇总文件名 ], '产线监控_当班及当天数据汇总'); // 传入自定义汇总文件名
} else if (this.listQuery.timeType === 1) { } else if (this.listQuery.timeType === 3) {
// 产线-当天:导出当班 + 当天两个表格(自定义汇总文件名) // 修复:注释错误,原为“产线-当天”,实际是“产线-上一班”
this.exportMultipleTables([ // 产线-上一班:导出单个表格
{ ref: 'lineCurrentShiftTable', name: '产线监控_上一班数据' }, await this.exportSingleTable('lineCustomTable', '产线监控_上一班时间数据');
{ ref: 'lineTodayTable', name: '产线监控_当天数据' }
], '产线监控_当班及当天数据汇总'); // 传入自定义汇总文件名
} else { } else {
// 产线-自定义:导出一个表格(自定义文件名) // 产线-自定义:导出一个表格(自定义文件名)
this.exportSingleTable('lineCustomTable', '产线监控_自定义时间数据'); await this.exportSingleTable('lineCustomTable', '产线监控_自定义时间数据');
} }
} }
// 按产品监控 // 按产品监控
else { else {
if (this.listQuery.timeType === 1) { if (this.listQuery.timeType === 1) {
// 产品-当天:导出当班 + 当天两个表格(自定义汇总文件名) // 产品-当天:导出当班 + 当天两个表格(自定义汇总文件名)
this.exportMultipleTables([ await this.exportMultipleTables([
{ ref: 'productCurrentShiftTable', name: '产品监控_当班数据' }, { ref: 'productCurrentShiftTable', name: '产品监控_当班数据' },
{ ref: 'productTodayTable', name: '产品监控_当天数据' } { ref: 'productCurrentShiftTable', name: '产品监控_当天数据' }
], '产品监控_当班及当天数据汇总'); // 传入自定义汇总文件名 ], '产品监控_当班及当天数据汇总'); // 传入自定义汇总文件名
} else if (this.listQuery.timeType === 3) {
// 修复:注释错误,原为“产线-当天”,实际是“产品-上一班”
// 产品-上一班:导出单个表格
await this.exportSingleTable('productCustomTable', '产品监控_上一班时间数据');
} else { } else {
// 产品-自定义:导出一个表格(自定义文件名) // 产品-自定义:导出一个表格(自定义文件名)
this.exportSingleTable('productCustomTable', '产品监控_自定义时间数据'); await this.exportSingleTable('productCustomTable', '产品监控_自定义时间数据');
} }
} }
}, },
// 导出单个表格(保持原有逻辑,文件名由调用方传入,已区分不同场景 // 导出单个表格(改为async方法使用await获取DOM
exportSingleTable(refName, fileName) { async exportSingleTable(refName, fileName) {
const table = this.getTableDom(refName); try {
if (!table) return; // 关键修复使用await等待getTableDom返回DOM元素而非Promise
const table = await this.getTableDom(refName);
if (!table) {
this.$message.warning(`无法导出:${refName}表格DOM获取失败`);
return;
}
// 确认table是原生DOM元素后再调用cloneNode
if (!(table instanceof HTMLElement)) {
this.$message.error(`无法导出:${refName}表格不是合法的DOM元素`);
return;
}
const clonedTable = table.cloneNode(true); const clonedTable = table.cloneNode(true);
this.adjustTableForExport(clonedTable); this.adjustTableForExport(clonedTable);
@@ -763,16 +785,31 @@ export default {
const workbook = XLSX.utils.table_to_book(clonedTable); const workbook = XLSX.utils.table_to_book(clonedTable);
const fullName = `${fileName}_${this.formatDate()}.xlsx`; const fullName = `${fileName}_${this.formatDate()}.xlsx`;
XLSX.writeFile(workbook, fullName); XLSX.writeFile(workbook, fullName);
} catch (error) {
this.$message.error(`导出表格失败:${error.message}`);
console.error('单个表格导出错误:', error);
}
}, },
// 导出多个表格(新增自定义汇总文件名参数,适配不同选项卡 // 导出多个表格(改为async方法使用await获取DOM
exportMultipleTables(tables, customSummaryName) { async exportMultipleTables(tables, customSummaryName) {
try {
const workbook = XLSX.utils.book_new(); const workbook = XLSX.utils.book_new();
let hasValidTable = false; let hasValidTable = false;
tables.forEach(({ ref, name }) => { // 遍历表格配置使用await获取每个表格的DOM
const table = this.getTableDom(ref); for (const { ref, name } of tables) { // 改用for...of循环支持await
if (!table) return; const table = await this.getTableDom(ref);
if (!table) {
this.$message.warning(`${ref}表格DOM获取失败跳过该表格`);
continue;
}
// 确认table是原生DOM元素
if (!(table instanceof HTMLElement)) {
this.$message.warning(`${ref}表格不是合法的DOM元素跳过该表格`);
continue;
}
hasValidTable = true; hasValidTable = true;
const clonedTable = table.cloneNode(true); const clonedTable = table.cloneNode(true);
@@ -780,30 +817,65 @@ export default {
const worksheet = XLSX.utils.table_to_sheet(clonedTable); const worksheet = XLSX.utils.table_to_sheet(clonedTable);
XLSX.utils.book_append_sheet(workbook, worksheet, name); XLSX.utils.book_append_sheet(workbook, worksheet, name);
}); }
if (!hasValidTable) { if (!hasValidTable) {
this.$message.warning('未找到有效表格数据'); this.$message.warning('未找到有效表格数据,导出失败');
return; return;
} }
// 动态生成汇总文件名:自定义名称 + 日期 // 动态生成汇总文件名:自定义名称 + 日期
const fullName = `${customSummaryName}_${this.formatDate()}.xlsx`; const fullName = `${customSummaryName}_${this.formatDate()}.xlsx`;
XLSX.writeFile(workbook, fullName); XLSX.writeFile(workbook, fullName);
} catch (error) {
this.$message.error(`导出多个表格失败:${error.message}`);
console.error('多个表格导出错误:', error);
}
}, },
// 辅助方法获取表格DOM元素包含表头
getTableDom(refName) { /**
* 获取表格DOM元素支持异步重试
* @param {string} refName - 表格的ref名称
* @param {number} retryCount - 当前重试次数(内部使用,外部调用无需传参)
* @returns {Promise<HTMLElement|null>} 表格DOM元素Promise
*/
async getTableDom(refName, retryCount = 0) {
// 1. 配置常量,便于维护
const maxRetry = 5; // 最大重试次数
const retryDelay = 300; // 每次重试延迟时间(ms)
// 2. 设置激活标签,确保重试时也能执行该逻辑
this.activeLabel = 'table';
this.activeLabelDay = 'table';
// 若需调试,可保留日志
// console.log(`[getTableDom-${refName}] activeLabel:`, this.activeLabel, 'activeLabelDay:', this.activeLabelDay);
// 3. 获取表格组件
const tableComponent = this.$refs[refName]; const tableComponent = this.$refs[refName];
// 4. 表格组件不存在时,处理重试逻辑
if (!tableComponent) { if (!tableComponent) {
this.$message.warning(`未找到${refName}表格`); // 达到最大重试次数,返回失败
if (retryCount >= maxRetry) {
this.$message.warning(`未找到${refName}表格,已达到最大重试次数(${maxRetry}次)`);
return null; return null;
} }
// 获取完整表格容器(包含表头和表体)
// 未达到最大重试次数,延迟后重试
this.$message.warning(`未找到${refName}表格,将进行第${retryCount + 1}次重试...`);
await new Promise(resolve => setTimeout(resolve, retryDelay));
// 递归调用并返回结果
return this.getTableDom(refName, retryCount + 1);
}
// 5. 获取完整表格容器(包含表头和表体)
const tableContainer = tableComponent.$el.querySelector('.el-table'); const tableContainer = tableComponent.$el.querySelector('.el-table');
if (!tableContainer) { if (!tableContainer) {
this.$message.warning(`${refName}表格数据为空`); this.$message.warning(`${refName}表格容器不存在(可能表格数据为空`);
return null; return null;
} }
// 6. 成功获取表格DOM返回结果
return tableContainer; return tableContainer;
}, },
@@ -868,7 +940,7 @@ export default {
if (mainTable && allHeaderRows.length > 0) { if (mainTable && allHeaderRows.length > 0) {
const newThead = document.createElement('thead'); const newThead = document.createElement('thead');
// 按层级添加表头行 // 按层级添加表头行
allHeaderRows.forEach(cells => { allHeaderRows.forEach((cells, rowIndex) => {
const newTr = document.createElement('tr'); const newTr = document.createElement('tr');
cells.forEach(cell => { cells.forEach(cell => {
// 复制单元格避免DOM残留引用问题 // 复制单元格避免DOM残留引用问题
@@ -879,6 +951,18 @@ export default {
}); });
// 将新表头插入主表体最前面 // 将新表头插入主表体最前面
mainTable.insertBefore(newThead, mainTable.firstChild); mainTable.insertBefore(newThead, mainTable.firstChild);
// ================ 新增:修改第一列表头为“序号” ================
// 找到第一层级的第一个表头单元格(<th>
const firstHeaderCell = newThead.querySelector('tr:first-child th:first-child');
if (firstHeaderCell) {
// 清空原有内容,设置为“序号”
firstHeaderCell.innerHTML = ''; // 清空原有内容(包括子元素)
firstHeaderCell.textContent = '序号'; // 设置纯文本“序号”(更稳定)
// 可选:添加样式(如居中,根据需求调整)
// firstHeaderCell.style.textAlign = 'center';
}
// =============================================================
} }
// 7. 合并固定列数据到主表体仅处理tbody数据 // 7. 合并固定列数据到主表体仅处理tbody数据
@@ -909,6 +993,23 @@ export default {
} }
}); });
} }
// ================ 可选优化为tbody第一列添加序号数字 ================
// 如果表格体的第一列原本无数据可补充1、2、3...的序号
if (mainTable) {
const tbodyRows = mainTable.querySelectorAll('tbody tr');
tbodyRows.forEach((row, index) => {
const firstTd = row.querySelector('td:first-child');
if (firstTd) {
// 清空原有内容设置为序号index+1因为索引从0开始
firstTd.innerHTML = '';
firstTd.textContent = index + 1;
// 可选:居中显示
// firstTd.style.textAlign = 'center';
}
});
}
// =============================================================
}, },
// 辅助方法:格式化日期(用于文件名) // 辅助方法:格式化日期(用于文件名)
@@ -924,7 +1025,9 @@ export default {
}, },
// 获取产线和工厂列表 // 获取产线和工厂列表
getPdLineList() { getPdLineList() {
getPdList().then(res => { getPLlistByFactory({
factoryIds: this.listQuery.factoryIds
}).then(res => {
this.formConfig[3].selectOptions = res.data || []; this.formConfig[3].selectOptions = res.data || [];
}); });
@@ -1071,9 +1174,13 @@ export default {
} else { } else {
this.getDataList(); this.getDataList();
} }
} else {
if (this.listQuery.timeType === 3) {
this.getProductLastList();
} else { } else {
this.getProductList(); this.getProductList();
} }
}
break; break;
case 'export': case 'export':
this.handleExport(); this.handleExport();
@@ -1162,6 +1269,9 @@ export default {
// 格式化数据lineDetList提取到外层键名加lineId前缀 // 格式化数据lineDetList提取到外层键名加lineId前缀
const formatData = (rawList) => { const formatData = (rawList) => {
if (!Array.isArray(rawList) || rawList.length === 0) {
return [];
}
return rawList.map(item => { return rawList.map(item => {
// 解构出 lineDetList 和其他字段rest // 解构出 lineDetList 和其他字段rest
const { lineDetList = [], ...rest } = item; const { lineDetList = [], ...rest } = item;
@@ -1210,6 +1320,9 @@ export default {
// 格式化数据lineDetList提取到外层键名加lineId前缀 // 格式化数据lineDetList提取到外层键名加lineId前缀
const formatData = (rawList) => { const formatData = (rawList) => {
if (!Array.isArray(rawList) || rawList.length === 0) {
return [];
}
return rawList.map(item => { return rawList.map(item => {
// 解构出 lineDetList 和其他字段rest // 解构出 lineDetList 和其他字段rest
const { lineDetList = [], ...rest } = item; const { lineDetList = [], ...rest } = item;
@@ -1270,7 +1383,72 @@ export default {
} }
}, },
async getProductLastList() {
console.log('last');
this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10;
this.listQuery.factoryId = this.headFormValue.factoryId || []
this.listQuery.process = this.headFormValue.process ? this.headFormValue.process : [];
this.listQuery.lineId = undefined;
this.listQuery.processType = this.headFormValue.processType ? this.headFormValue.processType : [];
this.listQuery.reportType = this.headFormValue.reportType || undefined;
this.listQuery.timeType = this.headFormValue.timeType ? this.headFormValue.timeType : this.listQuery.timeType;
this.listQuery.searchType = this.headFormValue.searchType || undefined
if (this.listQuery.timeType === 3) {
const resGroup = await getProcessAutoReportLastGroup(this.listQuery);
console.log('resGroup', resGroup);
// 格式化数据lineDetList提取到外层键名加lineId前缀
const formatData = (rawList) => {
if (!Array.isArray(rawList) || rawList.length === 0) {
return [];
}
return rawList.map(item => {
// 解构出 lineDetList 和其他字段rest
const { lineDetList = [], ...rest } = item;
// 遍历 lineDetList 中的每一项,逐个格式化并合并
const formattedLineData = lineDetList.reduce((acc, lineData) => {
// 取当前 lineData 的 lineId 作为前缀(确保存在,否则用空字符串)
const lineIdPrefix = lineData.lineId ? String(lineData.lineId) : '';
// 为当前 lineData 的每个字段添加 lineId 前缀,合并到累加器中
Object.entries(lineData).forEach(([key, value]) => {
const newKey = lineIdPrefix ? `${lineIdPrefix}${key}` : key;
acc[newKey] = value;
});
return acc;
}, {}); // 初始值为空对象
// 合并外层字段和所有格式化后的 lineDetList 字段
return { ...rest, ...formattedLineData };
});
};
// 处理当班和当天数据(分别存储)
this.productTableData = formatData(resGroup.data.list); // 当班数据
console.log(this.productTableData, 'productTableData');
// --------------------------
// 生成当班数据的动态表头
// --------------------------
const groupLineDatas = [];
resGroup.data.list.forEach(item => {
if (item.lineDetList && item.lineDetList.length) {
groupLineDatas.push(...item.lineDetList);
}
});
// 去重当班数据的产线按lineId
const uniqueGroupLines = Array.from(
new Map(groupLineDatas.map(line => [line.lineId, line])).values()
);
// 生成当班数据的表头(一级:产线名,二级:指标)
this.factoryColumns = this.generateLineColumns(uniqueGroupLines);
}
},
// 生成动态表头:一级为产线名,二级为产线数据指标 // 生成动态表头:一级为产线名,二级为产线数据指标
generateLineColumns(lines) { generateLineColumns(lines) {
// lines为去重后的产线列表单个元素为一条产线数据 // lines为去重后的产线列表单个元素为一条产线数据
@@ -1366,8 +1544,8 @@ export default {
}, },
// 为当天时调用的接口 // 为当天时调用的接口
getLastDayDataList() { getLastDayDataList() {
getPdlAutoReportNewSearchLastGroup().then((response) => { getPdlAutoReportNewSearchLastGroup(this.listQuery).then((response) => {
this.tableData = response.data.classData.map((item, index) => { this.tableDataCustom = response.data.classData.map((item, index) => {
item.originalLossNum = item.original?.lossNum; item.originalLossNum = item.original?.lossNum;
item.originalLossArea = item.original?.lossArea; item.originalLossArea = item.original?.lossArea;
item.edgeLossNum = item.edge?.lossNum; item.edgeLossNum = item.edge?.lossNum;
@@ -1388,7 +1566,7 @@ export default {
}); });
}, },
getDayDataList() { getDayDataList() {
getPdlAutoReportNewSearchNow().then((response) => { getPdlAutoReportNewSearchNow(this.listQuery).then((response) => {
this.tableData = response.data.classData.map((item, index) => { this.tableData = response.data.classData.map((item, index) => {
item.originalLossNum = item.original?.lossNum; item.originalLossNum = item.original?.lossNum;
item.originalLossArea = item.original?.lossArea; item.originalLossArea = item.original?.lossArea;
@@ -1452,6 +1630,44 @@ export default {
// 搜索栏下拉选择变化 // 搜索栏下拉选择变化
handleSearchBarChanged({ param, value }) { handleSearchBarChanged({ param, value }) {
if (param === 'timeType') { if (param === 'timeType') {
this.isPeriodicReport = false
this.tableData2 = []
this.tableDataCustom = []
this.tableData = []
const resetCommon = () => {
// 重置搜索表单的筛选条件
if (this.$refs.searchBarForm) {
const form = this.$refs.searchBarForm.formInline;
form.timeVal = undefined;
form.timeType = 1;
form.reportType = undefined;
form.searchType = undefined;
form.lineId = undefined;
form.factoryId = undefined;
form.process = undefined;
form.processType = undefined;
}
// 重置查询参数
this.listQuery = {
...this.listQuery, // 保留分页等基础参数
factoryId: undefined,
process: undefined,
lineId: undefined,
processType: undefined,
reportType: undefined,
timeType: 1,
searchType: undefined,
startTime: undefined,
endTime: undefined
};
// 重置表单配置中公共隐藏的项
this.formConfig[1].type = ''; // 隐藏查询类型
this.formConfig[6].type = ''; // 隐藏报表类型
this.formConfig[7].type = ''; // 隐藏时间范围
};
// 3. 执行公共重置
resetCommon();
this.listQuery.timeType = value; this.listQuery.timeType = value;
const timeItemIndex = this.formConfig.findIndex(item => const timeItemIndex = this.formConfig.findIndex(item =>
item.label?.includes('刷新时间') item.label?.includes('刷新时间')
@@ -1482,15 +1698,59 @@ export default {
} }
} else if (param === 'searchType') { } else if (param === 'searchType') {
this.isPeriodicReport = value === 2;
if (this.$refs.searchBarForm && this.$refs.searchBarForm.formInline) {
const formInline = this.$refs.searchBarForm.formInline;
formInline.reportType = ''
// 精准判断只有字段存在时才置为undefined不存在则不处理
if ('timeVal' in formInline) {
formInline.timeVal = undefined;
}
if ('timeValWeek' in formInline) {
formInline.timeValWeek = undefined;
}
if ('timeValMonth' in formInline) {
formInline.timeValMonth = undefined;
}
if ('timeValYear' in formInline) {
formInline.timeValYear = undefined;
}
}
// const formInline = this.$refs.searchBarForm.formInline;
this.listQuery.startTime = undefined
this.listQuery.endTime = undefined
console.log(this.listQuery, 'list');
if (value === 1) { if (value === 1) {
// 统计数据:显示时间范围,隐藏报表类型 // 统计数据:显示时间范围,隐藏报表类型
this.formConfig[7].type = 'datePicker'; this.formConfig[7] = {
type: 'datePicker',
label: '时间范围',
dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'timestamp',
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'timeVal',
width: 350
};
this.formConfig[6].type = ''; this.formConfig[6].type = '';
this.$refs.searchBarForm.formInline.timeVal = undefined;
} else { } else {
// 周期性报表:显示报表类型,隐藏时间范围 // 周期性报表:显示报表类型,隐藏时间范围
this.formConfig[6].type = 'select'; this.formConfig[6].type = 'select';
this.formConfig[7].type = 'datePicker'; this.formConfig[7] = {
type: 'datePicker',
label: '时间范围',
dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'timestamp',
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'timeVal',
width: 350
};
} }
} else if (param === 'reportType') { } else if (param === 'reportType') {
if (this.$refs.searchBarForm && this.$refs.searchBarForm.formInline) { if (this.$refs.searchBarForm && this.$refs.searchBarForm.formInline) {
@@ -1568,7 +1828,9 @@ export default {
// 切换工厂时刷新产线列表 // 切换工厂时刷新产线列表
this.listQuery.lineId = []; this.listQuery.lineId = [];
this.$refs.searchBarForm.formInline.lineId = undefined; this.$refs.searchBarForm.formInline.lineId = undefined;
getPdList(value).then(res => { getPLlistByFactory({
factoryIds: value
}).then(res => {
this.formConfig[3].selectOptions = res.data || []; this.formConfig[3].selectOptions = res.data || [];
}); });
} }

View File

@@ -101,7 +101,7 @@ const tableProps = [
}, },
{ {
prop: 'thick', prop: 'thick',
label: '玻璃度/mm' label: '玻璃度/mm'
}, },
]; ];

View File

@@ -358,8 +358,8 @@ export default {
handleExport() { handleExport() {
// 处理查询参数 // 处理查询参数
let params = { ...this.listQuery }; let params = { ...this.listQuery };
params.pageNo = undefined; // params.pageNo = undefined;
params.pageSize = undefined; // params.pageSize = undefined;
this.$modal.confirm('是否确认导出下片日志?').then(() => { this.$modal.confirm('是否确认导出下片日志?').then(() => {
this.exportLoading = true; this.exportLoading = true;
return exportDownLogData(params); return exportDownLogData(params);

File diff suppressed because it is too large Load Diff

View File

@@ -216,7 +216,7 @@ import {
import { getTree } from '@/api/base/equipment'; import { getTree } from '@/api/base/equipment';
import { getEquipmentTypePage } from '@/api/base/equipmentType'; import { getEquipmentTypePage } from '@/api/base/equipmentType';
import { getEquipmentOverall } from '@/api/base/equipment'; import { getEquipmentOverall } from '@/api/base/equipment';
import { getTenantId } from '@/utils/auth'
// import * as XLSX from 'xlsx'; // import * as XLSX from 'xlsx';
// import FileSaver from 'file-saver'; // import FileSaver from 'file-saver';
import ButtonNav from '@/components/ButtonNav'; import ButtonNav from '@/components/ButtonNav';
@@ -569,7 +569,7 @@ export default {
const token = getAccessToken(); const token = getAccessToken();
const headers = new Headers({ const headers = new Headers({
Authorization: `Bearer ${token}`, Authorization: `Bearer ${token}`,
'tenant-id': store.getters.userId, 'tenant-id': getTenantId(),
'Content-Type': 'text/event-stream', 'Content-Type': 'text/event-stream',
}); });

View File

@@ -34,28 +34,7 @@ export default {
mixins: [basicPageMixin], mixins: [basicPageMixin],
data() { data() {
return { return {
// tableBtn: [
// this.$auth.hasPermi('base:quality-inspection-type:update')
// ? {
// type: 'edit',
// btnName: '修改',
// }
// : undefined,
// this.$auth.hasPermi('base:quality-inspection-type:delete')
// ? {
// type: 'delete',
// btnName: '删除',
// }
// : undefined,
// ].filter((v) => v),
tableProps: [ tableProps: [
// {
// prop: 'createTime',
// label: '添加时间',
// fixed: true,
// width: 180,
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
// },
{ prop: 'factoryName', label: '工厂' }, { prop: 'factoryName', label: '工厂' },
{ prop: 'lineName', label: '产线' }, { prop: 'lineName', label: '产线' },
{ prop: 'remark', label: '玻璃编号' }, { prop: 'remark', label: '玻璃编号' },
@@ -74,42 +53,7 @@ export default {
}, },
{ prop: 'reason', label: '判等原因' }, { prop: 'reason', label: '判等原因' },
{ prop: 'specifications', label: '规格' }, { prop: 'specifications', label: '规格' },
// {
// label: '操作',
// alignt: 'center',
// subcomponent: {
// render: function (h) {
// return h('div', null, [
// h(
// 'el-button',
// {
// props: {
// icon: 'el-icon-edit',
// size: 'mini',
// type: 'text',
// },
// },
// ' 修改'
// ),
// h(
// 'el-button',
// {
// props: {
// icon: 'el-icon-edit',
// size: 'mini',
// type: 'text',
// },
// },
// ' 修改'
// ),
// ]);
// },
// },
// },
], ],
//
searchBarFormConfig: [ searchBarFormConfig: [
{ {
type: 'select', type: 'select',
@@ -135,13 +79,13 @@ export default {
label: '时间范围', label: '时间范围',
dateType: 'datetimerange', dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss', format: 'yyyy-MM-dd HH:mm:ss',
// valueFormat: 'timestamp', valueFormat: 'timestamp',
valueFormat: 'yyyy-MM-dd HH:mm:ss',
rangeSeparator: '-', rangeSeparator: '-',
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
param: 'timeVal', param: 'timeVal',
width: 350 width: 350,
defaultSelect: [],
}, },
{ {
type: 'button', type: 'button',
@@ -149,23 +93,9 @@ export default {
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
// {
// type: 'button',
// btnName: '重置',
// name: 'reset',
// },
{ {
type: 'separate', type: 'separate',
}, },
// {
// type: this.$auth.hasPermi('base:quality-inspection-type:create')
// ? 'button'
// : '',
// btnName: '新增',
// name: 'add',
// plain: true,
// color: 'success',
// },
{ {
type: this.$auth.hasPermi('base:quality-inspection-type:export') type: this.$auth.hasPermi('base:quality-inspection-type:export')
? 'button' ? 'button'
@@ -215,11 +145,55 @@ export default {
// deep: true // deep: true
// }, // },
// }, // },
created() { mounted() {
const { startTimestamp, endTimestamp } = this.getThreeDaysAgoThisTimeToNowTimeStamps();
// 找到时间范围的配置项并赋值对应你代码中的timeVal参数
this.searchBarFormConfig[3].defaultSelect = [startTimestamp, endTimestamp]; // 赋值给日期选择器
this.queryParams.startTime = startTimestamp;
this.queryParams.endTime = endTimestamp;
this.getList(); this.getList();
this.getDict() this.getDict()
}, },
methods: { methods: {
getThreeDaysAgoThisTimeToNowTimeStamps() {
const now = new Date();
// 1. 计算三天前的当前时刻使用setDate直接修改日期保留时分秒等信息
const threeDaysAgoThisTime = new Date(now); // 复制当前日期对象,避免修改原对象
threeDaysAgoThisTime.setDate(threeDaysAgoThisTime.getDate() - 3); // 日期减3天时分秒保持和当前一致
// 2. 获取时间戳(毫秒级和秒级)
// 开始时间戳:三天前的当前时刻
const startTimestamp = threeDaysAgoThisTime.getTime(); // 毫秒级
const startTimestampSec = Math.floor(startTimestamp / 1000); // 秒级
// 结束时间戳:当前时刻
const endTimestamp = now.getTime(); // 毫秒级
const endTimestampSec = Math.floor(endTimestamp / 1000); // 秒级
// 封装日期格式化函数转换为yyyy-MM-dd HH:mm:ss格式
const formatDateTime = (date) => {
const y = date.getFullYear();
// 月份是从0开始的所以要+1补零确保是两位
const m = String(date.getMonth() + 1).padStart(2, '0');
const d = String(date.getDate()).padStart(2, '0');
const h = String(date.getHours()).padStart(2, '0');
const min = String(date.getMinutes()).padStart(2, '0');
const s = String(date.getSeconds()).padStart(2, '0');
return `${y}-${m}-${d} ${h}:${min}:${s}`;
};
// 格式化后的字符串:三天前的当前时刻 和 当前时刻
const startDateTimeStr = formatDateTime(threeDaysAgoThisTime);
const endDateTimeStr = formatDateTime(now);
return {
startTimestamp, // 三天前当前时刻的毫秒级时间戳
endTimestamp, // 当前时刻的毫秒级时间戳
startTimestampSec, // 三天前当前时刻的秒级时间戳
endTimestampSec, // 当前时刻的秒级时间戳
startDateTimeStr, // yyyy-MM-dd HH:mm:ss格式的开始时间字符串
endDateTimeStr // yyyy-MM-dd HH:mm:ss格式的结束时间字符串
};
},
getDict() { getDict() {
getPdList().then(res => { getPdList().then(res => {
this.searchBarFormConfig[1].selectOptions = res.data || []; this.searchBarFormConfig[1].selectOptions = res.data || [];
@@ -250,11 +224,6 @@ export default {
this.queryParams.startTime = btn.timeVal ? btn.timeVal[0] : undefined this.queryParams.startTime = btn.timeVal ? btn.timeVal[0] : undefined
this.queryParams.endTime = btn.timeVal ? btn.timeVal[1] : undefined this.queryParams.endTime = btn.timeVal ? btn.timeVal[1] : undefined
this.queryParams.checkNum = btn.checkNum ? btn.checkNum : undefined this.queryParams.checkNum = btn.checkNum ? btn.checkNum : undefined
// keys.forEach((key) => {
// this.queryParams[key] = btn[key] || null;
// });
this.getList(); this.getList();
break; break;
case 'add': case 'add':
@@ -263,10 +232,6 @@ export default {
case 'export': case 'export':
this.handleExport(); this.handleExport();
break; break;
// case 'reset':
// this.$refs['search-bar'].resetForm();
// this.resetQuery();
// break;
} }
}, },
/** 查询列表 */ /** 查询列表 */

View File

@@ -150,7 +150,8 @@ export default {
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
param: 'timeVal', param: 'timeVal',
width: 350 width: 350,
defaultSelect: [],
}, },
{ {
type: 'button', type: 'button',
@@ -226,11 +227,56 @@ export default {
// deep: true // deep: true
// }, // },
// }, // },
created() { mounted() {
const { startTimestamp, endTimestamp } = this.getThreeDaysAgoThisTimeToNowTimeStamps();
// 找到时间范围的配置项并赋值对应你代码中的timeVal参数
this.searchBarFormConfig[2].defaultSelect = [startTimestamp, endTimestamp]; // 赋值给日期选择器
this.queryParams.startTime = startTimestamp;
this.queryParams.endTime = endTimestamp;
this.getList(); this.getList();
this.getDict() this.getDict()
}, },
methods: { methods: {
getThreeDaysAgoThisTimeToNowTimeStamps() {
const now = new Date();
// 1. 计算三天前的当前时刻使用setDate直接修改日期保留时分秒等信息
const threeDaysAgoThisTime = new Date(now); // 复制当前日期对象,避免修改原对象
threeDaysAgoThisTime.setDate(threeDaysAgoThisTime.getDate() - 3); // 日期减3天时分秒保持和当前一致
// 2. 获取时间戳(毫秒级和秒级)
// 开始时间戳:三天前的当前时刻
const startTimestamp = threeDaysAgoThisTime.getTime(); // 毫秒级
const startTimestampSec = Math.floor(startTimestamp / 1000); // 秒级
// 结束时间戳:当前时刻
const endTimestamp = now.getTime(); // 毫秒级
const endTimestampSec = Math.floor(endTimestamp / 1000); // 秒级
// 封装日期格式化函数转换为yyyy-MM-dd HH:mm:ss格式
const formatDateTime = (date) => {
const y = date.getFullYear();
// 月份是从0开始的所以要+1补零确保是两位
const m = String(date.getMonth() + 1).padStart(2, '0');
const d = String(date.getDate()).padStart(2, '0');
const h = String(date.getHours()).padStart(2, '0');
const min = String(date.getMinutes()).padStart(2, '0');
const s = String(date.getSeconds()).padStart(2, '0');
return `${y}-${m}-${d} ${h}:${min}:${s}`;
};
// 格式化后的字符串:三天前的当前时刻 和 当前时刻
const startDateTimeStr = formatDateTime(threeDaysAgoThisTime);
const endDateTimeStr = formatDateTime(now);
return {
startTimestamp, // 三天前当前时刻的毫秒级时间戳
endTimestamp, // 当前时刻的毫秒级时间戳
startTimestampSec, // 三天前当前时刻的秒级时间戳
endTimestampSec, // 当前时刻的秒级时间戳
startDateTimeStr, // yyyy-MM-dd HH:mm:ss格式的开始时间字符串
endDateTimeStr // yyyy-MM-dd HH:mm:ss格式的结束时间字符串
};
},
getDict() { getDict() {
getPdList().then(res => { getPdList().then(res => {
this.searchBarFormConfig[1].selectOptions = res.data || []; this.searchBarFormConfig[1].selectOptions = res.data || [];

View File

@@ -98,8 +98,8 @@ export default {
init(data) { init(data) {
this.visible = true; this.visible = true;
this.factoryName = data.factoryName || ''; this.factoryName = data.factoryName || '未知工厂';
this.lineName = data.lineName || ''; this.lineName = data.lineName || '未知产线';
if (data.startTime && data.endTime) { if (data.startTime && data.endTime) {
const start = moment(data.startTime).format('yyyy-MM-DD HH:mm:ss'); const start = moment(data.startTime).format('yyyy-MM-DD HH:mm:ss');

View File

@@ -152,7 +152,8 @@ export default {
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
param: 'timeVal', param: 'timeVal',
width: 350 width: 350,
defaultSelect: [],
}, },
{ {
type: 'button', type: 'button',
@@ -225,11 +226,56 @@ export default {
// deep: true // deep: true
// }, // },
// }, // },
created() { mounted() {
const { startTimestamp, endTimestamp } = this.getThreeDaysAgoThisTimeToNowTimeStamps();
// 找到时间范围的配置项并赋值对应你代码中的timeVal参数
this.searchBarFormConfig[2].defaultSelect = [startTimestamp, endTimestamp]; // 赋值给日期选择器
this.queryParams.startTime = startTimestamp;
this.queryParams.endTime = endTimestamp;
this.getList(); this.getList();
this.getDict() this.getDict()
}, },
methods: { methods: {
getThreeDaysAgoThisTimeToNowTimeStamps() {
const now = new Date();
// 1. 计算三天前的当前时刻使用setDate直接修改日期保留时分秒等信息
const threeDaysAgoThisTime = new Date(now); // 复制当前日期对象,避免修改原对象
threeDaysAgoThisTime.setDate(threeDaysAgoThisTime.getDate() - 3); // 日期减3天时分秒保持和当前一致
// 2. 获取时间戳(毫秒级和秒级)
// 开始时间戳:三天前的当前时刻
const startTimestamp = threeDaysAgoThisTime.getTime(); // 毫秒级
const startTimestampSec = Math.floor(startTimestamp / 1000); // 秒级
// 结束时间戳:当前时刻
const endTimestamp = now.getTime(); // 毫秒级
const endTimestampSec = Math.floor(endTimestamp / 1000); // 秒级
// 封装日期格式化函数转换为yyyy-MM-dd HH:mm:ss格式
const formatDateTime = (date) => {
const y = date.getFullYear();
// 月份是从0开始的所以要+1补零确保是两位
const m = String(date.getMonth() + 1).padStart(2, '0');
const d = String(date.getDate()).padStart(2, '0');
const h = String(date.getHours()).padStart(2, '0');
const min = String(date.getMinutes()).padStart(2, '0');
const s = String(date.getSeconds()).padStart(2, '0');
return `${y}-${m}-${d} ${h}:${min}:${s}`;
};
// 格式化后的字符串:三天前的当前时刻 和 当前时刻
const startDateTimeStr = formatDateTime(threeDaysAgoThisTime);
const endDateTimeStr = formatDateTime(now);
return {
startTimestamp, // 三天前当前时刻的毫秒级时间戳
endTimestamp, // 当前时刻的毫秒级时间戳
startTimestampSec, // 三天前当前时刻的秒级时间戳
endTimestampSec, // 当前时刻的秒级时间戳
startDateTimeStr, // yyyy-MM-dd HH:mm:ss格式的开始时间字符串
endDateTimeStr // yyyy-MM-dd HH:mm:ss格式的结束时间字符串
};
},
getDict() { getDict() {
getPdList().then(res => { getPdList().then(res => {
this.searchBarFormConfig[1].selectOptions = res.data || []; this.searchBarFormConfig[1].selectOptions = res.data || [];