更新汝阳bug
This commit is contained in:
parent
8ad8e3a5b4
commit
ca390fd764
10
.env.dev
10
.env.dev
@ -1,7 +1,7 @@
|
|||||||
###
|
###
|
||||||
# @Author: Do not edit
|
# @Author: Do not edit
|
||||||
# @Date: 2023-08-29 09:40:39
|
# @Date: 2023-08-29 09:40:39
|
||||||
# @LastEditTime: 2024-09-10 14:43:39
|
# @LastEditTime: 2024-11-25 14:31:39
|
||||||
# @LastEditors: zwq
|
# @LastEditors: zwq
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
@ -9,13 +9,11 @@
|
|||||||
ENV = 'development'
|
ENV = 'development'
|
||||||
|
|
||||||
# 页面标题
|
# 页面标题
|
||||||
VUE_APP_TITLE = 成本管理系统
|
VUE_APP_TITLE = 智能监控分析系统
|
||||||
|
|
||||||
# 芋道管理系统/开发环境
|
# 芋道管理系统/开发环境
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.49:48080'
|
# VUE_APP_BASE_API = 'http://192.168.8.22:48080'
|
||||||
VUE_APP_BASE_API = 'http://line.kszny.picaiba.com'
|
VUE_APP_BASE_API = 'http://172.16.32.40:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.40:48080'
|
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.188:48080'
|
|
||||||
|
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
# @Author: zwq
|
# @Author: zwq
|
||||||
# @Date: 2024-03-27 15:49:55
|
# @Date: 2024-03-27 15:49:55
|
||||||
# @LastEditors: zwq
|
# @LastEditors: zwq
|
||||||
# @LastEditTime: 2024-09-10 15:19:19
|
# @LastEditTime: 2024-10-30 11:08:47
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
# 生产环境配置
|
# 生产环境配置
|
||||||
ENV = 'production'
|
ENV = 'production'
|
||||||
|
|
||||||
# 页面标题
|
# 页面标题
|
||||||
VUE_APP_TITLE = 成本管理系统
|
VUE_APP_TITLE = 智能监控分析系统
|
||||||
|
|
||||||
# 芋道管理系统/生产环境
|
# 芋道管理系统/生产环境
|
||||||
# VUE_APP_BASE_API = '/prod-api'
|
# VUE_APP_BASE_API = '/prod-api'
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: dialogForm.vue
|
filename: dialogForm.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-11 15:55:13
|
date: 2023-09-11 15:55:13
|
||||||
@ -71,14 +71,14 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="工段排序" prop="sort">
|
<el-form-item label="工段设备排序" prop="sort">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
v-model="dataForm.sort"
|
v-model="dataForm.sort"
|
||||||
filterable
|
filterable
|
||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
@change="$emit('update', dataForm)"
|
@change="$emit('update', dataForm)"
|
||||||
placeholder="请输入工段排序" />
|
placeholder="请输入工段设备排序" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
@ -1,18 +1,26 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar
|
||||||
<div v-if="tableData.length">
|
:formConfigs="formConfig"
|
||||||
<base-table v-loading="dataListLoading" :span-method="mergeColumnHandler" :table-props="tableProps" :table-data="tableData" />
|
ref="searchBarForm"
|
||||||
<SearchBar :formConfigs="[{ label: '产线平衡分析图', type: 'title' }]" />
|
@headBtnClick="buttonClick" />
|
||||||
<balance-chart ref="lineChart" />
|
<div v-if="tableData.length">
|
||||||
</div>
|
<base-table
|
||||||
<div v-else class="no-data-bg"></div>
|
v-loading="dataListLoading"
|
||||||
<!-- <pagination
|
:span-method="mergeColumnHandler"
|
||||||
|
:max-height="tableH"
|
||||||
|
:table-props="tableProps"
|
||||||
|
:table-data="tableData" />
|
||||||
|
<SearchBar :formConfigs="[{ label: '产线平衡分析图', type: 'title' }]" />
|
||||||
|
<balance-chart ref="lineChart" />
|
||||||
|
</div>
|
||||||
|
<div v-else class="no-data-bg"></div>
|
||||||
|
<!-- <pagination
|
||||||
:limit.sync="listQuery.pageSize"
|
:limit.sync="listQuery.pageSize"
|
||||||
:page.sync="listQuery.pageNo"
|
:page.sync="listQuery.pageNo"
|
||||||
:total="listQuery.total"
|
:total="listQuery.total"
|
||||||
@pagination="getDataList" /> -->
|
@pagination="getDataList" /> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -20,8 +28,9 @@
|
|||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '../../mixins/code-filter';
|
||||||
import { getCT } from '@/api/core/analysis/index';
|
import { getCT } from '@/api/core/analysis/index';
|
||||||
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
||||||
import BalanceChart from '../balanceChart'
|
import BalanceChart from '../balanceChart';
|
||||||
import { time } from 'echarts';
|
import { time } from 'echarts';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
// import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
// import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
||||||
|
|
||||||
// const tableProps = [
|
// const tableProps = [
|
||||||
@ -46,92 +55,92 @@ import { time } from 'echarts';
|
|||||||
// ];
|
// ];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
BalanceChart
|
BalanceChart,
|
||||||
},
|
},
|
||||||
// mixins: [basicPage],
|
mixins: [tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getCT,
|
getDataListURL: getCT,
|
||||||
},
|
},
|
||||||
tableProps: [],
|
tableProps: [],
|
||||||
dataListLoading: false,
|
dataListLoading: false,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
// time: ''
|
// time: ''
|
||||||
endTime: undefined,
|
endTime: undefined,
|
||||||
lineId:undefined,
|
lineId: undefined,
|
||||||
startTime:undefined
|
startTime: undefined,
|
||||||
},
|
},
|
||||||
timeList: [],
|
timeList: [],
|
||||||
spanArr: [],
|
spanArr: [],
|
||||||
xData: [],
|
xData: [],
|
||||||
yData: [],
|
yData: [],
|
||||||
optionArrUrl: [getProductionLinePage],
|
optionArrUrl: [getProductionLinePage],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'lineIds',
|
param: 'lineIds',
|
||||||
defaultSelect: '',
|
defaultSelect: '',
|
||||||
multiple: false,
|
multiple: false,
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间',
|
label: '时间',
|
||||||
dateType: 'datetimerange',
|
dateType: 'datetimerange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
width: 350,
|
width: 350,
|
||||||
param: 'time',
|
param: 'time',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getArr();
|
this.getArr();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getArr() {
|
getArr() {
|
||||||
const params = {
|
const params = {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 500
|
limit: 500,
|
||||||
}
|
};
|
||||||
this.optionArrUrl.forEach((item, index) => {
|
this.optionArrUrl.forEach((item, index) => {
|
||||||
item(params).then((response) => {
|
item(params).then((response) => {
|
||||||
this.formConfig[index].selectOptions = response.data.list
|
this.formConfig[index].selectOptions = response.data.list;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
setRowSpan(arr) {
|
setRowSpan(arr) {
|
||||||
let count = 0
|
let count = 0;
|
||||||
arr.forEach((item, index) => {
|
arr.forEach((item, index) => {
|
||||||
if(index === 0) {
|
if (index === 0) {
|
||||||
this.spanArr.push(1)
|
this.spanArr.push(1);
|
||||||
} else {
|
} else {
|
||||||
if (item === arr[index - 1]) {
|
if (item === arr[index - 1]) {
|
||||||
this.spanArr[count] += 1
|
this.spanArr[count] += 1;
|
||||||
this.spanArr.push(0)
|
this.spanArr.push(0);
|
||||||
} else {
|
} else {
|
||||||
count = index
|
count = index;
|
||||||
this.spanArr.push(1)
|
this.spanArr.push(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
/** 合并table列的规则 */
|
/** 合并table列的规则 */
|
||||||
mergeColumnHandler({ row, column, rowIndex, columnIndex }) {
|
mergeColumnHandler({ row, column, rowIndex, columnIndex }) {
|
||||||
if (columnIndex == 0) {
|
if (columnIndex == 0) {
|
||||||
if (this.spanArr[rowIndex]) {
|
if (this.spanArr[rowIndex]) {
|
||||||
@ -144,117 +153,144 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getData() {
|
getData() {
|
||||||
// this.listQuery.lineId = '1672847052717821953'
|
// this.listQuery.lineId = '1672847052717821953'
|
||||||
// this.listQuery.startTime = '1693497600000';
|
// this.listQuery.startTime = '1693497600000';
|
||||||
// this.listQuery.endTime = '1693843200000';
|
// this.listQuery.endTime = '1693843200000';
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then(res => {
|
this.urlOptions.getDataListURL(this.listQuery).then((res) => {
|
||||||
console.log(res)
|
console.log(res);
|
||||||
let arr = [
|
let arr = [
|
||||||
{
|
{
|
||||||
prop: 'sectionName',
|
prop: 'sectionName',
|
||||||
label: '工段',
|
label: '工段',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equName',
|
prop: 'equName',
|
||||||
label: '设备',
|
label: '设备',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
}
|
width: 150
|
||||||
]
|
},
|
||||||
let sectionArr= []
|
];
|
||||||
res.data.data.forEach((ele, index) => {
|
let sectionArr = [];
|
||||||
let tempData = []
|
res.data.data.forEach((ele, index) => {
|
||||||
let eqData = []
|
let tempData = [];
|
||||||
let plData = []
|
let ggData = [];
|
||||||
ele.data.forEach((item, index) => {
|
let sbluData = [];
|
||||||
item.children.forEach(params => {
|
let sbsjData = [];
|
||||||
if (params.dynamicName === '设备CT') {
|
let cxluData = [];
|
||||||
tempData[item.dynamicName + '_eq'] = params.dynamicValue
|
let cxsjData = [];
|
||||||
eqData[index] = params.dynamicValue
|
ele.data.forEach((item, index) => {
|
||||||
} else {
|
item.children.forEach((params) => {
|
||||||
tempData[item.dynamicName + '_pl'] = params.dynamicValue
|
if (params.dynamicName === '生产规格') {
|
||||||
plData[index] = params.dynamicValue
|
tempData[item.dynamicName + '_gg'] = params.dynamicValue;
|
||||||
}
|
ggData[index] = params.dynamicValue;
|
||||||
})
|
} else if (params.dynamicName === '设备理论速度') {
|
||||||
})
|
tempData[item.dynamicName + '_sblu'] = params.dynamicValue;
|
||||||
const equipment = {
|
sbluData[index] = params.dynamicValue;
|
||||||
name: ele.equName,
|
} else if (params.dynamicName === '设备实际速度') {
|
||||||
eqData: eqData,
|
tempData[item.dynamicName + '_sbsj'] = params.dynamicValue;
|
||||||
plData: plData
|
sbsjData[index] = params.dynamicValue;
|
||||||
}
|
} else if (params.dynamicName === '产线理论速度') {
|
||||||
tempData['equName'] = ele.equName
|
tempData[item.dynamicName + '_cxlu'] = params.dynamicValue;
|
||||||
tempData['sectionName'] = ele.sectionName
|
cxluData[index] = params.dynamicValue;
|
||||||
this.tableData.push(tempData)
|
} else if(params.dynamicName === '产线实际速度') {
|
||||||
const { sectionName } = tempData
|
tempData[item.dynamicName + '_cxsj'] = params.dynamicValue;
|
||||||
sectionArr.push(sectionName)
|
cxsjData[index] = params.dynamicValue;
|
||||||
this.yData.push(equipment)
|
}
|
||||||
console.log('看看equ', this.yData)
|
});
|
||||||
})
|
});
|
||||||
this.setRowSpan(sectionArr)
|
const equipment = {
|
||||||
res.data.nameData.forEach(item => {
|
name: ele.equName,
|
||||||
this.timeList.push(item.name)
|
ggData: ggData,
|
||||||
})
|
sbluData: sbluData,
|
||||||
const timeArray = Array.from(new Set(this.timeList))
|
sbsjData: sbsjData,
|
||||||
for (const times of timeArray) {
|
cxluData: cxluData,
|
||||||
if (times !== '设备CT' && times !== '产线CT') {
|
cxsjData: cxsjData,
|
||||||
const subprop = {
|
};
|
||||||
label: times,
|
tempData['equName'] = ele.equName;
|
||||||
align: 'center',
|
tempData['sectionName'] = ele.sectionName;
|
||||||
children: [
|
this.tableData.push(tempData);
|
||||||
{ prop: times + '_eq', label: '设备CT', align: 'center' },
|
const { sectionName } = tempData;
|
||||||
{ prop: times + '_pl', label: '产线CT', align: 'center' }
|
sectionArr.push(sectionName);
|
||||||
]
|
this.yData.push(equipment);
|
||||||
}
|
});
|
||||||
arr.push(subprop)
|
this.setRowSpan(sectionArr);
|
||||||
this.xData.push(times)
|
res.data.nameData.forEach((item) => {
|
||||||
}
|
this.timeList.push(item.name);
|
||||||
}
|
});
|
||||||
this.tableProps = arr
|
const timeArray = Array.from(new Set(this.timeList));
|
||||||
|
console.log(timeArray)
|
||||||
|
for (const times of timeArray) {
|
||||||
|
if (times !== '生产规格' && times !== '设备理论速度' && times !== '设备实际速度'
|
||||||
|
&& times !== '产线理论速度' && times !== '产线实际速度'
|
||||||
|
) {
|
||||||
|
const subprop = {
|
||||||
|
label: times,
|
||||||
|
align: 'center',
|
||||||
|
children: [
|
||||||
|
{ prop: times + '_gg', label: '生产规格', align: 'center' },
|
||||||
|
{ prop: times + '_sblu', label: '设备理论速度', align: 'center' },
|
||||||
|
{ prop: times + '_sbsj', label: '设备实际速度', align: 'center' },
|
||||||
|
{ prop: times + '_cxlu', label: '产线理论速度', align: 'center' },
|
||||||
|
{ prop: times + '_cxsj', label: '产线实际速度', align: 'center' },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
arr.push(subprop);
|
||||||
|
this.xData.push(times);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.tableProps = arr;
|
||||||
|
|
||||||
console.log('表格横坐标', this.xData)
|
console.log(this.$refs)
|
||||||
this.$refs.lineChart.initChart(this.xData, this.yData)
|
this.$nextTick(()=>{
|
||||||
// this.total = response.data.total;
|
this.$refs.lineChart.initChart(this.xData, this.yData);
|
||||||
// this.dataListLoading = false;
|
})
|
||||||
});
|
// this.total = response.data.total;
|
||||||
},
|
// this.dataListLoading = false;
|
||||||
buttonClick(val) {
|
});
|
||||||
// console.log(val)
|
},
|
||||||
switch (val.btnName) {
|
buttonClick(val) {
|
||||||
case 'search':
|
// console.log(val)
|
||||||
// this.listQuery.pageNo = 1;
|
switch (val.btnName) {
|
||||||
// this.listQuery.pageSize = 10;
|
case 'search':
|
||||||
this.listQuery.lineId = val.lineIds
|
// this.listQuery.pageNo = 1;
|
||||||
this.listQuery.startTime = val.time ? String(new Date(val.time[0]).getTime()) : undefined;
|
// this.listQuery.pageSize = 10;
|
||||||
this.listQuery.endTime = val.time ? String(new Date(val.time[1]).getTime()) : undefined;
|
this.listQuery.lineId = val.lineIds;
|
||||||
if (val.time && val.lineIds) {
|
this.listQuery.startTime = val.time
|
||||||
this.tableData = []
|
? String(new Date(val.time[0]).getTime())
|
||||||
this.xData = []
|
: undefined;
|
||||||
this.yData = []
|
this.listQuery.endTime = val.time
|
||||||
this.tableProps = []
|
? String(new Date(val.time[1]).getTime())
|
||||||
this.spanArr = []
|
: undefined;
|
||||||
this.timeList = []
|
if (val.time && val.lineIds) {
|
||||||
this.getData()
|
this.tableData = [];
|
||||||
} else {
|
this.xData = [];
|
||||||
this.$message({
|
this.yData = [];
|
||||||
message: '请选择产线和时间',
|
this.tableProps = [];
|
||||||
type: 'warning'
|
this.spanArr = [];
|
||||||
});
|
this.timeList = [];
|
||||||
}
|
this.getData();
|
||||||
break;
|
} else {
|
||||||
case 'reset':
|
this.$message({
|
||||||
this.$refs.searchBarForm.resetForm();
|
message: '请选择产线和时间',
|
||||||
this.listQuery = {
|
type: 'warning',
|
||||||
pageSize: 10,
|
});
|
||||||
pageNo: 1,
|
}
|
||||||
total: 1,
|
break;
|
||||||
};
|
case 'reset':
|
||||||
this.getDataList();
|
this.$refs.searchBarForm.resetForm();
|
||||||
break;
|
this.listQuery = {
|
||||||
default:
|
pageSize: 10,
|
||||||
console.log(val);
|
pageNo: 1,
|
||||||
}
|
total: 1,
|
||||||
},
|
};
|
||||||
},
|
this.getDataList();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2023-09-13 09:02:25
|
* @Date: 2023-09-13 09:02:25
|
||||||
* @LastEditTime: 2023-10-08 16:36:37
|
* @LastEditTime: 2024-11-26 15:52:29
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -108,13 +108,28 @@ export default {
|
|||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: '设备CT',
|
name: '生产规格',
|
||||||
data: dataList.eqData,
|
data: dataList.ggData,
|
||||||
type: 'line',
|
type: 'line',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '产线CT',
|
name: '设备理论速度',
|
||||||
data: dataList.plData,
|
data: dataList.sbluData,
|
||||||
|
type: 'line',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '设备实际速度',
|
||||||
|
data: dataList.sbsjData,
|
||||||
|
type: 'line',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '产线理论速度',
|
||||||
|
data: dataList.cxluData,
|
||||||
|
type: 'line',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '产线实际速度',
|
||||||
|
data: dataList.cxsjData,
|
||||||
type: 'line',
|
type: 'line',
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -1,18 +1,25 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar
|
||||||
<div v-if="tableData.length">
|
:formConfigs="formConfig"
|
||||||
<base-table v-loading="dataListLoading" :table-props="tableProps" :table-data="tableData" />
|
ref="searchBarForm"
|
||||||
<SearchBar :formConfigs="[{ label: '产品产量对比图', type: 'title' }]" />
|
@headBtnClick="buttonClick" />
|
||||||
<line-chart ref="lineChart" />
|
<div v-if="tableData.length">
|
||||||
</div>
|
<base-table
|
||||||
<div v-else class="no-data-bg"></div>
|
v-loading="dataListLoading"
|
||||||
<!-- <pagination
|
:table-props="tableProps"
|
||||||
|
:max-height="tableH"
|
||||||
|
:table-data="tableData" />
|
||||||
|
<SearchBar :formConfigs="[{ label: '产品产量对比图', type: 'title' }]" />
|
||||||
|
<line-chart ref="lineChart" />
|
||||||
|
</div>
|
||||||
|
<div v-else class="no-data-bg"></div>
|
||||||
|
<!-- <pagination
|
||||||
:limit.sync="listQuery.pageSize"
|
:limit.sync="listQuery.pageSize"
|
||||||
:page.sync="listQuery.pageNo"
|
:page.sync="listQuery.pageNo"
|
||||||
:total="listQuery.total"
|
:total="listQuery.total"
|
||||||
@pagination="getDataList" /> -->
|
@pagination="getDataList" /> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -20,7 +27,8 @@
|
|||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '../../mixins/code-filter';
|
||||||
import { getYieldAnalysisPageData } from '@/api/core/analysis/index';
|
import { getYieldAnalysisPageData } from '@/api/core/analysis/index';
|
||||||
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
||||||
import lineChart from '../LineChart'
|
import lineChart from '../LineChart';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
// import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
// import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
||||||
|
|
||||||
// const tableProps = [
|
// const tableProps = [
|
||||||
@ -45,51 +53,52 @@ import lineChart from '../LineChart'
|
|||||||
// ];
|
// ];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
lineChart,
|
lineChart,
|
||||||
},
|
},
|
||||||
// mixins: [basicPage],
|
mixins: [tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getYieldAnalysisPageData,
|
getDataListURL: getYieldAnalysisPageData,
|
||||||
},
|
},
|
||||||
tableProps:[],
|
tableProps: [],
|
||||||
dataListLoading:false,
|
dataListLoading: false,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
lineIds: [],
|
lineIds: [],
|
||||||
time: ''
|
time: '',
|
||||||
},
|
},
|
||||||
dateLabelList: [],
|
dateLabelList: [],
|
||||||
optionArrUrl: [getProductionLinePage ],
|
optionArrUrl: [getProductionLinePage],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'lineIds',
|
param: 'lineIds',
|
||||||
defaultSelect: '',
|
defaultSelect: [],
|
||||||
multiple:true,
|
multiple: true,
|
||||||
filterable: true,
|
filterable: true,
|
||||||
|
width: 400,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间',
|
label: '时间',
|
||||||
dateType: 'month',
|
dateType: 'month',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
param: 'time',
|
param: 'time',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -104,145 +113,147 @@ export default {
|
|||||||
};
|
};
|
||||||
this.optionArrUrl.forEach((item, index) => {
|
this.optionArrUrl.forEach((item, index) => {
|
||||||
item(params).then((response) => {
|
item(params).then((response) => {
|
||||||
this.formConfig[index].selectOptions = response.data.list
|
this.formConfig[index].selectOptions = response.data.list;
|
||||||
// this.formConfig[0].defaultSelect = response.data.list[0].id
|
// this.formConfig[0].defaultSelect = response.data.list[0].id
|
||||||
this.$set(this.formConfig[0], 'defaultSelect', response.data.list[0].id)
|
// this.$set(this.formConfig[0], 'defaultSelect', response.data.list[0].id)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getData() {
|
getData() {
|
||||||
// this.listQuery.lineIds = ['1672847052717821953']
|
// this.listQuery.lineIds = ['1672847052717821953']
|
||||||
// this.listQuery.productId = val.productId;
|
// this.listQuery.productId = val.productId;
|
||||||
// this.listQuery.time = '1694486098000';
|
// this.listQuery.time = '1694486098000';
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then(res => {
|
this.urlOptions.getDataListURL(this.listQuery).then((res) => {
|
||||||
let arr = [
|
let arr = [
|
||||||
{
|
{
|
||||||
prop: 'lineName',
|
prop: 'lineName',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
fixed: 'left'
|
fixed: 'left',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'sum',
|
prop: 'sum',
|
||||||
label: '合计',
|
label: '合计[片]',
|
||||||
fixed: 'left'
|
fixed: 'left',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: res.data ? res.data.nameData[0].name : undefined,
|
prop: res.data ? res.data.nameData[0].name : undefined,
|
||||||
label: res.data ? res.data.nameData[0].name : undefined,
|
label: res.data ? res.data.nameData[0].name : undefined,
|
||||||
align: 'center',
|
align: 'center',
|
||||||
children:[
|
children: [],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
// console.log(res.data.nameData.slice(1))
|
||||||
|
let xData = [];
|
||||||
|
let yAllData = [];
|
||||||
|
let lineName = [];
|
||||||
|
if (res.data) {
|
||||||
|
let tempDateList = [];
|
||||||
|
res.data.nameData.forEach((date) => {
|
||||||
|
tempDateList.push(date.name);
|
||||||
|
});
|
||||||
|
this.dateLabelList = Array.from(new Set(tempDateList));
|
||||||
|
|
||||||
]
|
this.dateLabelList.forEach((item) => {
|
||||||
}
|
if (item.indexOf('年') === -1) {
|
||||||
]
|
// 构造表头
|
||||||
// console.log(res.data.nameData.slice(1))
|
const props = {
|
||||||
let xData = []
|
prop: item,
|
||||||
let yAllData = []
|
label: item,
|
||||||
let lineName = []
|
};
|
||||||
if (res.data) {
|
arr[2].children.push(props);
|
||||||
let tempDateList = []
|
|
||||||
res.data.nameData.forEach(date => {
|
|
||||||
tempDateList.push(date.name)
|
|
||||||
})
|
|
||||||
this.dateLabelList = Array.from(new Set(tempDateList))
|
|
||||||
|
|
||||||
this.dateLabelList.forEach(item => {
|
// 构造echarts横坐标
|
||||||
if (item.indexOf('年') === -1) {
|
xData.push(item);
|
||||||
// 构造表头
|
}
|
||||||
const props = {
|
});
|
||||||
'prop': item,
|
// res.data.nameData.slice(1).forEach(item => {
|
||||||
'label': item
|
// const props = {
|
||||||
}
|
// 'prop': item.name,
|
||||||
arr[2].children.push(props)
|
// 'label': item.name,
|
||||||
|
// 'align': 'center'
|
||||||
|
// }
|
||||||
|
// arr[2].children.push(props)
|
||||||
|
// })
|
||||||
|
let tableDataArr = [];
|
||||||
|
res.data.data.forEach((item) => {
|
||||||
|
let obj = {};
|
||||||
|
(obj.lineName = item.lineName),
|
||||||
|
(obj.sum = item.sum),
|
||||||
|
item.data.forEach((ele, index) => {
|
||||||
|
// console.log(ele)
|
||||||
|
ele.children.forEach((e) => {
|
||||||
|
console.log(e.dynamicName);
|
||||||
|
obj['' + e.dynamicName + ''] = e.dynamicValue;
|
||||||
|
console.log(obj['' + e.dynamicName + '']);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
tableDataArr.push(obj);
|
||||||
|
});
|
||||||
|
this.tableData = tableDataArr;
|
||||||
|
this.tableProps = arr;
|
||||||
|
|
||||||
// 构造echarts横坐标
|
// let tempList = []
|
||||||
xData.push(item)
|
// res.data.nameData.slice(1).forEach(item => {
|
||||||
}
|
// tempList.push(item.name)
|
||||||
})
|
// // arr[2].children.push(props)
|
||||||
// res.data.nameData.slice(1).forEach(item => {
|
// })
|
||||||
// const props = {
|
// xData = Array.from(new Set(tempList))
|
||||||
// 'prop': item.name,
|
|
||||||
// 'label': item.name,
|
res.data.data.forEach((item) => {
|
||||||
// 'align': 'center'
|
let yData = [];
|
||||||
// }
|
lineName.push(item.lineName);
|
||||||
// arr[2].children.push(props)
|
// let obj = {}
|
||||||
// })
|
// obj.lineName = item.lineName,
|
||||||
let tableDataArr =[]
|
// obj.sum = item.sum,
|
||||||
res.data.data.forEach(item => {
|
item.data.forEach((ele, index) => {
|
||||||
let obj = {}
|
// console.log(ele)
|
||||||
obj.lineName= item.lineName,
|
ele.children.forEach((e) => {
|
||||||
obj.sum= item.sum,
|
// let yData = []
|
||||||
item.data.forEach((ele, index) => {
|
yData.push(e.dynamicValue);
|
||||||
// console.log(ele)
|
});
|
||||||
ele.children.forEach((e) => {
|
});
|
||||||
console.log(e.dynamicName)
|
yAllData.push(yData);
|
||||||
obj['' + e.dynamicName + ''] = e.dynamicValue
|
});
|
||||||
console.log(obj['' + e.dynamicName + '']);
|
console.log(lineName);
|
||||||
})
|
} else {
|
||||||
})
|
this.tableProps = arr;
|
||||||
tableDataArr.push(obj)
|
this.tableData = [];
|
||||||
});
|
xData = [];
|
||||||
this.tableData = tableDataArr
|
yAllData = [];
|
||||||
this.tableProps = arr
|
lineName = [];
|
||||||
|
}
|
||||||
// let tempList = []
|
// res.data.data[0].data[0].children.forEach((item, index) => {
|
||||||
// res.data.nameData.slice(1).forEach(item => {
|
// // console.log(item)
|
||||||
// tempList.push(item.name)
|
// yData.push(item.dynamicValue)
|
||||||
// // arr[2].children.push(props)
|
// // let data = 'data' + Number(index+1)
|
||||||
// })
|
// // obj['' + item.dynamicName + ''] = item.dynamicValue
|
||||||
// xData = Array.from(new Set(tempList))
|
// })
|
||||||
|
// console.log(this.yData)
|
||||||
res.data.data.forEach(item => {
|
this.$nextTick(() => {
|
||||||
let yData = []
|
this.$refs.lineChart.initChart(xData, yAllData, lineName);
|
||||||
lineName.push(item.lineName)
|
});
|
||||||
// let obj = {}
|
// this.total = response.data.total;
|
||||||
// obj.lineName = item.lineName,
|
// this.dataListLoading = false;
|
||||||
// obj.sum = item.sum,
|
});
|
||||||
item.data.forEach((ele, index) => {
|
},
|
||||||
// console.log(ele)
|
buttonClick(val) {
|
||||||
ele.children.forEach((e) => {
|
|
||||||
// let yData = []
|
|
||||||
yData.push(e.dynamicValue)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
yAllData.push(yData)
|
|
||||||
});
|
|
||||||
console.log(lineName)
|
|
||||||
} else {
|
|
||||||
this.tableProps = arr
|
|
||||||
this.tableData = []
|
|
||||||
xData = []
|
|
||||||
yAllData = []
|
|
||||||
lineName = []
|
|
||||||
}
|
|
||||||
// res.data.data[0].data[0].children.forEach((item, index) => {
|
|
||||||
// // console.log(item)
|
|
||||||
// yData.push(item.dynamicValue)
|
|
||||||
// // let data = 'data' + Number(index+1)
|
|
||||||
// // obj['' + item.dynamicName + ''] = item.dynamicValue
|
|
||||||
// })
|
|
||||||
// console.log(this.yData)
|
|
||||||
this.$refs.lineChart.initChart(xData, yAllData, lineName)
|
|
||||||
// this.total = response.data.total;
|
|
||||||
// this.dataListLoading = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.lineIds = val.lineIds ? val.lineIds :undefined
|
this.listQuery.lineIds = val.lineIds ? val.lineIds : undefined;
|
||||||
// this.listQuery.productId = val.productId;
|
// this.listQuery.productId = val.productId;
|
||||||
this.listQuery.time = val.time ? new Date(val.time).getTime() : undefined
|
this.listQuery.time = val.time
|
||||||
|
? new Date(val.time).getTime()
|
||||||
|
: undefined;
|
||||||
// this.listQuery.pageNo = 1;
|
// this.listQuery.pageNo = 1;
|
||||||
// this.listQuery.pageSize = 10;
|
// this.listQuery.pageSize = 10;
|
||||||
if (val.time) {
|
if (val.time) {
|
||||||
this.getData()
|
this.getData();
|
||||||
} else {
|
} else {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '请选择时间',
|
message: '请选择时间',
|
||||||
type: 'warning'
|
type: 'warning',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'reset':
|
case 'reset':
|
||||||
this.$refs.searchBarForm.resetForm();
|
this.$refs.searchBarForm.resetForm();
|
||||||
|
@ -308,6 +308,7 @@ export default {
|
|||||||
});
|
});
|
||||||
if (code == 0) {
|
if (code == 0) {
|
||||||
this.$modal.msgSuccess('更新成功');
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
this.$emit('refreshDataList');
|
||||||
}
|
}
|
||||||
|
|
||||||
this.btnLoading = false;
|
this.btnLoading = false;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: dialogForm.vue
|
filename: dialogForm.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-15 10:32:36
|
date: 2023-08-15 10:32:36
|
||||||
@ -57,6 +57,7 @@
|
|||||||
v-model="form.equipmentTypeId"
|
v-model="form.equipmentTypeId"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
filterable
|
filterable
|
||||||
|
clearable
|
||||||
placeholder="请选择设备类型">
|
placeholder="请选择设备类型">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="eqType in eqTypeList"
|
v-for="eqType in eqTypeList"
|
||||||
@ -79,7 +80,7 @@
|
|||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="生产日期" prop="productionTime" :rules="[]">
|
<el-form-item label="生产日期" prop="productionTime" :rules="[]">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.enterTime"
|
v-model="form.productionTime"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="datetime"
|
type="datetime"
|
||||||
placeholder="请选择生产日期"
|
placeholder="请选择生产日期"
|
||||||
|
@ -157,7 +157,7 @@ export default {
|
|||||||
width: 180,
|
width: 180,
|
||||||
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: '设备名称' },
|
{ width: 200,showOverflowtooltip :true, prop: 'name', label: '设备名称' },
|
||||||
{ width: 256, prop: 'code', label: '设备编码' },
|
{ width: 256, prop: 'code', label: '设备编码' },
|
||||||
{ prop: 'equipmentType', label: '设备类型' },
|
{ prop: 'equipmentType', label: '设备类型' },
|
||||||
{ prop: 'enName', label: '英文名称' },
|
{ prop: 'enName', label: '英文名称' },
|
||||||
@ -270,6 +270,7 @@ export default {
|
|||||||
url: '/base/equipment-type/page?pageNo=1&pageSize=100',
|
url: '/base/equipment-type/page?pageNo=1&pageSize=100',
|
||||||
bind: {
|
bind: {
|
||||||
filterable: true,
|
filterable: true,
|
||||||
|
clearable: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
|
@ -153,6 +153,9 @@ export default {
|
|||||||
label: '父类',
|
label: '父类',
|
||||||
prop: 'parentId',
|
prop: 'parentId',
|
||||||
url: '/base/equipment-type/page?pageNo=1&pageSize=100',
|
url: '/base/equipment-type/page?pageNo=1&pageSize=100',
|
||||||
|
bind: {
|
||||||
|
clearable: true, // some condition, like detail mode...
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{},
|
{},
|
||||||
],
|
],
|
||||||
|
@ -28,11 +28,11 @@ import { getProductPage } from '@/api/core/base/product';
|
|||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'productionLineName',
|
prop: 'productionLineName',
|
||||||
label: '产线'
|
label: '产线',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'productName',
|
prop: 'productName',
|
||||||
label: '在制产品'
|
label: '在制产品',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
@ -83,7 +83,7 @@ export default {
|
|||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
param: 'startTime',
|
param: 'startTime',
|
||||||
valueFormat: 'timestamp'
|
valueFormat: 'timestamp',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -99,8 +99,7 @@ export default {
|
|||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: {
|
components: {},
|
||||||
},
|
|
||||||
created() {
|
created() {
|
||||||
this.getArr();
|
this.getArr();
|
||||||
},
|
},
|
||||||
@ -123,7 +122,7 @@ export default {
|
|||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10;
|
||||||
this.listQuery.productionLineId = val.productionLineId;
|
this.listQuery.productionLineId = val.productionLineId;
|
||||||
this.listQuery.productId = val.productId;
|
this.listQuery.productId = val.productId;
|
||||||
this.listQuery.startTime = val.startTime;
|
this.listQuery.startTime = val.startTime ? val.startTime : null;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
case 'reset':
|
case 'reset':
|
||||||
|
@ -154,7 +154,9 @@
|
|||||||
<el-button v-if="isdetail" type="primary" @click="goEdit()">
|
<el-button v-if="isdetail" type="primary" @click="goEdit()">
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-else type="primary" @click="dataFormSubmit()">确定</el-button>
|
<el-button v-else type="primary" @click="dataFormSubmit()">
|
||||||
|
确定
|
||||||
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<product-attr-add
|
<product-attr-add
|
||||||
@ -371,8 +373,19 @@ export default {
|
|||||||
// 添加的提交
|
// 添加的提交
|
||||||
createProduct(this.dataForm).then((response) => {
|
createProduct(this.dataForm).then((response) => {
|
||||||
this.$modal.msgSuccess('新增成功');
|
this.$modal.msgSuccess('新增成功');
|
||||||
this.visible = false;
|
this.$confirm(`是否新增产品属性?`, '系统提示', {
|
||||||
this.$emit('refreshDataList');
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.dataForm.id = response.data
|
||||||
|
this.addNew();
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -382,10 +395,14 @@ export default {
|
|||||||
},
|
},
|
||||||
// 新增 / 修改
|
// 新增 / 修改
|
||||||
addNew(id) {
|
addNew(id) {
|
||||||
this.addOrUpdateVisible = true;
|
if (this.dataForm.id) {
|
||||||
this.$nextTick(() => {
|
this.addOrUpdateVisible = true;
|
||||||
this.$refs.addOrUpdate.init(id);
|
this.$nextTick(() => {
|
||||||
});
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message('请先创建产品!');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
goback() {
|
goback() {
|
||||||
this.$emit('refreshDataList');
|
this.$emit('refreshDataList');
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2023-08-01 13:52:10
|
* @Date: 2023-08-01 13:52:10
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-04-10 16:31:51
|
* @LastEditTime: 2024-11-22 14:02:59
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -139,11 +139,11 @@ export default {
|
|||||||
},
|
},
|
||||||
pdTypeArr: [
|
pdTypeArr: [
|
||||||
{
|
{
|
||||||
id: 0,
|
id: '0',
|
||||||
name: '深加工'
|
name: '深加工'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: '1',
|
||||||
name: '原片'
|
name: '原片'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-08-29 14:59:29
|
* @Date: 2023-08-29 14:59:29
|
||||||
* @LastEditTime: 2023-10-16 15:10:42
|
* @LastEditTime: 2024-11-20 15:17:53
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -312,8 +312,8 @@ export default {
|
|||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10;
|
||||||
this.listQuery.lineId = val.line ? val.line : undefined;
|
this.listQuery.lineId = val.line ? val.line : undefined;
|
||||||
this.listQuery.reportType = val.reportType ? val.reportType : undefined;
|
this.listQuery.reportType = val.reportType ? val.reportType : undefined;
|
||||||
this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime()] : undefined;
|
this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime(),new Date(val.timeVal[1]).getTime()] : undefined;
|
||||||
this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
|
//this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
|
||||||
if (val.timeVal && val.timeVal.length > 0) {
|
if (val.timeVal && val.timeVal.length > 0) {
|
||||||
this.fileName = val.timeVal[0].slice(0, 10) + '-' + val.timeVal[1].slice(0, 10) + '_'
|
this.fileName = val.timeVal[0].slice(0, 10) + '-' + val.timeVal[1].slice(0, 10) + '_'
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-04 14:44:58
|
date: 2023-08-04 14:44:58
|
||||||
@ -16,6 +16,7 @@
|
|||||||
v-if="tableData && tableData.length > 0"
|
v-if="tableData && tableData.length > 0"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="tableData"
|
:table-data="tableData"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun"
|
@emitFun="handleEmitFun"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -24,11 +25,13 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'productionLineData24',
|
name: 'productionLineData24',
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -41,7 +44,7 @@ export default {
|
|||||||
},
|
},
|
||||||
list: [],
|
list: [],
|
||||||
arr: [],
|
arr: [],
|
||||||
spanArr: [],
|
spanArr: [],
|
||||||
timeList: [],
|
timeList: [],
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps: [],
|
tableProps: [],
|
||||||
@ -168,7 +171,7 @@ export default {
|
|||||||
// // console.log('recent-24', data);
|
// // console.log('recent-24', data);
|
||||||
|
|
||||||
// this.initing = true;
|
// this.initing = true;
|
||||||
|
|
||||||
// this.queryParams.pageSize = this.list.length;
|
// this.queryParams.pageSize = this.list.length;
|
||||||
|
|
||||||
// setTimeout(() => {
|
// setTimeout(() => {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-08-29 14:59:29
|
* @Date: 2023-08-29 14:59:29
|
||||||
* @LastEditTime: 2023-10-16 15:19:04
|
* @LastEditTime: 2024-11-26 16:35:22
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -69,11 +69,13 @@ const tableProps = [
|
|||||||
prop: 'reportStartTime',
|
prop: 'reportStartTime',
|
||||||
label: '统计开始时间',
|
label: '统计开始时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
|
width:160
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'reportEndTime',
|
prop: 'reportEndTime',
|
||||||
label: '统计结束时间',
|
label: '统计结束时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
|
width:160
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'lineName',
|
prop: 'lineName',
|
||||||
@ -309,8 +311,8 @@ export default {
|
|||||||
this.listQuery.lineId = val.line ? val.line : undefined;
|
this.listQuery.lineId = val.line ? val.line : undefined;
|
||||||
this.listQuery.sectionId = val.section ? val.section : undefined;
|
this.listQuery.sectionId = val.section ? val.section : undefined;
|
||||||
this.listQuery.reportType = val.reportType ? val.reportType : undefined;
|
this.listQuery.reportType = val.reportType ? val.reportType : undefined;
|
||||||
this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime()] : undefined;
|
this.listQuery.reportStartTime = val.timeVal ? [new Date(val.timeVal[0]).getTime(),new Date(val.timeVal[1]).getTime()] : undefined;
|
||||||
this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
|
//this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
|
||||||
if (val.timeVal && val.timeVal.length > 0) {
|
if (val.timeVal && val.timeVal.length > 0) {
|
||||||
this.fileName = val.timeVal[0].slice(0, 10) + '-' + val.timeVal[1].slice(0, 10) + '_'
|
this.fileName = val.timeVal[0].slice(0, 10) + '-' + val.timeVal[1].slice(0, 10) + '_'
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,7 @@
|
|||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:selectWidth="55"
|
:selectWidth="55"
|
||||||
:table-data="showData"
|
:table-data="showData"
|
||||||
@selection-change="selectChange"
|
@selection-change="selectChange" />
|
||||||
/>
|
|
||||||
<div v-else class="no-data-bg"></div>
|
<div v-else class="no-data-bg"></div>
|
||||||
<pagination
|
<pagination
|
||||||
:limit.sync="listQuery.pageSize"
|
:limit.sync="listQuery.pageSize"
|
||||||
@ -28,10 +27,12 @@
|
|||||||
width="30%"
|
width="30%"
|
||||||
:before-close="handleClose">
|
:before-close="handleClose">
|
||||||
<el-button type="primary" @click="exportXlsx">xlsx</el-button>
|
<el-button type="primary" @click="exportXlsx">xlsx</el-button>
|
||||||
<el-button type="success" @click="exportPdf">pdf</el-button>
|
<el-button type="success" @click="exportPdf">pdf</el-button>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
|
<el-button type="primary" @click="dialogVisible = false">
|
||||||
|
确 定
|
||||||
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
@ -42,40 +43,41 @@
|
|||||||
import { getSectionDataSearch } from '@/api/core/monitoring';
|
import { getSectionDataSearch } from '@/api/core/monitoring';
|
||||||
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
import { getProductionLinePage } from '@/api/core/base/productionLine';
|
||||||
import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
import { getWorkshopSectionPage } from '@/api/core/base/workshopSection';
|
||||||
import * as XLSX from 'xlsx'
|
import { parseTime } from '@/filter/code-filter';
|
||||||
import FileSaver from 'file-saver'
|
import * as XLSX from 'xlsx';
|
||||||
import jsPDF from 'jspdf'
|
import FileSaver from 'file-saver';
|
||||||
import html2canvas from 'html2canvas'
|
import jsPDF from 'jspdf';
|
||||||
|
import html2canvas from 'html2canvas';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'proLineName',
|
prop: 'proLineName',
|
||||||
label: '产线名称'
|
label: '产线名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'sectionName',
|
||||||
|
label: '工段名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'inputNum',
|
||||||
|
label: '进片数量/片',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'outputNum',
|
||||||
|
label: '出片数量/片',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'lossNum',
|
||||||
|
label: '损耗数量/片',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'lossArea',
|
||||||
|
label: '损耗面积/m²',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'lossRate',
|
||||||
|
label: '损耗比例/%',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'sectionName',
|
|
||||||
label: '工段名称'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'inputNum',
|
|
||||||
label: '进片数量/片'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'outputNum',
|
|
||||||
label: '出片数量/片'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'lossNum',
|
|
||||||
label: '损耗数量/片'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'lossArea',
|
|
||||||
label: '损耗面积/m²'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'lossRate',
|
|
||||||
label: '损耗比例/%'
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -83,29 +85,29 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getSectionDataSearch,
|
getDataListURL: getSectionDataSearch,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
showData: [],
|
showData: [],
|
||||||
selectedList: [],
|
selectedList: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
proLineId:undefined,
|
proLineId: undefined,
|
||||||
sectionId: undefined,
|
sectionId: undefined,
|
||||||
startTime: undefined,
|
startTime: undefined,
|
||||||
endTime: undefined,
|
endTime: undefined,
|
||||||
total: 0
|
total: 0,
|
||||||
},
|
},
|
||||||
dataListLoading: false,
|
dataListLoading: false,
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
fileName: [],
|
fileName: [],
|
||||||
optionArrUrl: [getProductionLinePage, getWorkshopSectionPage],
|
optionArrUrl: [getProductionLinePage, getWorkshopSectionPage],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'proLineId',
|
param: 'proLineId',
|
||||||
defaultSelect: '',
|
defaultSelect: '',
|
||||||
filterable: true,
|
filterable: true,
|
||||||
onchange: true,
|
onchange: true,
|
||||||
@ -114,7 +116,7 @@ export default {
|
|||||||
type: 'select',
|
type: 'select',
|
||||||
label: '工段',
|
label: '工段',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'sectionId',
|
param: 'sectionId',
|
||||||
defaultSelect: '',
|
defaultSelect: '',
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
@ -143,15 +145,21 @@ export default {
|
|||||||
btnName: '导出',
|
btnName: '导出',
|
||||||
name: 'export',
|
name: 'export',
|
||||||
color: 'warning',
|
color: 'warning',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: {
|
components: {},
|
||||||
},
|
|
||||||
created() {
|
created() {
|
||||||
this.getArr();
|
this.getArr();
|
||||||
// this.getDataList()
|
const end = new Date();
|
||||||
|
const start = new Date();
|
||||||
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 1);
|
||||||
|
this.listQuery.startTime = start.getTime();
|
||||||
|
this.listQuery.endTime = end.getTime();
|
||||||
|
this.formConfig[2].startPlaceholder = parseTime(start).substr(0, 10);
|
||||||
|
this.formConfig[2].endPlaceholder = parseTime(end).substr(0, 10);
|
||||||
|
this.getDataList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 根据产线获取工段 */
|
/** 根据产线获取工段 */
|
||||||
@ -184,92 +192,96 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
test() {
|
test() {
|
||||||
var target = document.getElementsByClassName("right-aside")[0]
|
var target = document.getElementsByClassName('right-aside')[0];
|
||||||
target.style.background = '#FFFFFF'
|
target.style.background = '#FFFFFF';
|
||||||
var that = this
|
var that = this;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
html2canvas(target).then(function(canvas) {
|
html2canvas(target).then(function (canvas) {
|
||||||
var contentWidth = canvas.width
|
var contentWidth = canvas.width;
|
||||||
var contentHeight = canvas.height
|
var contentHeight = canvas.height;
|
||||||
|
|
||||||
// 一页pdf显示html页面生成的canvas高度
|
// 一页pdf显示html页面生成的canvas高度
|
||||||
var pageHeight = contentHeight / 592.28 * 841.89
|
var pageHeight = (contentHeight / 592.28) * 841.89;
|
||||||
// 未生成pdf的html页面高度
|
// 未生成pdf的html页面高度
|
||||||
var leftHeight = contentHeight
|
var leftHeight = contentHeight;
|
||||||
// 页面偏移
|
// 页面偏移
|
||||||
var position = 0
|
var position = 0;
|
||||||
// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的高度
|
// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的高度
|
||||||
var imgWidth = 595.28
|
var imgWidth = 595.28;
|
||||||
var imgHeight = 592.28 / contentWidth * contentHeight
|
var imgHeight = (592.28 / contentWidth) * contentHeight;
|
||||||
|
|
||||||
var pageData = canvas.toDataURL('image/jpeg', 1.0)
|
var pageData = canvas.toDataURL('image/jpeg', 1.0);
|
||||||
|
|
||||||
console.log('nihc URL', leftHeight, pageHeight)
|
console.log('nihc URL', leftHeight, pageHeight);
|
||||||
|
|
||||||
var pdf = new jsPDF('', 'pt', 'a4')
|
var pdf = new jsPDF('', 'pt', 'a4');
|
||||||
|
|
||||||
if (leftHeight < pageHeight) {
|
if (leftHeight < pageHeight) {
|
||||||
pdf.addImage(pageData, 'JPEG', 0, 20, imgWidth, imgHeight)
|
pdf.addImage(pageData, 'JPEG', 0, 20, imgWidth, imgHeight);
|
||||||
} else {
|
} else {
|
||||||
while(leftHeight > 0) {
|
while (leftHeight > 0) {
|
||||||
pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
|
pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight);
|
||||||
leftHeight -= pageHeight
|
leftHeight -= pageHeight;
|
||||||
position -= 841.89
|
position -= 841.89;
|
||||||
// 避免空白页
|
// 避免空白页
|
||||||
if (leftHeight > 0) {
|
if (leftHeight > 0) {
|
||||||
pdf.addPage()
|
pdf.addPage();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pdf.save(that.fileName[0] + '-' + that.fileName[1] + '_工段统计.pdf')
|
pdf.save(that.fileName[0] + '-' + that.fileName[1] + '_工段统计.pdf');
|
||||||
})
|
});
|
||||||
}, 300)
|
}, 300);
|
||||||
},
|
},
|
||||||
exportECL() {
|
exportECL() {
|
||||||
let tables = document.querySelector('.el-table').cloneNode(true)
|
let tables = document.querySelector('.el-table').cloneNode(true);
|
||||||
const fix = tables.querySelector('.el-table__fixed')
|
const fix = tables.querySelector('.el-table__fixed');
|
||||||
const fixRight = tables.querySelector('.el-table__fixed-right')
|
const fixRight = tables.querySelector('.el-table__fixed-right');
|
||||||
if (fix) {
|
if (fix) {
|
||||||
tables.removeChild(tables.querySelector('.el-table__fixed'))
|
tables.removeChild(tables.querySelector('.el-table__fixed'));
|
||||||
}
|
}
|
||||||
if (fixRight) {
|
if (fixRight) {
|
||||||
tables.removeChild(tables.querySelector('.el-table__fixed-right'))
|
tables.removeChild(tables.querySelector('.el-table__fixed-right'));
|
||||||
}
|
}
|
||||||
let exportTable = XLSX.utils.table_to_book(tables)
|
let exportTable = XLSX.utils.table_to_book(tables);
|
||||||
|
|
||||||
var exportTableOut = XLSX.write(exportTable, {
|
var exportTableOut = XLSX.write(exportTable, {
|
||||||
bookType: 'xlsx', bookSST: true, type: 'array'
|
bookType: 'xlsx',
|
||||||
})
|
bookSST: true,
|
||||||
// sheetjs.xlsx为导出表格的标题名称
|
type: 'array',
|
||||||
try {
|
});
|
||||||
FileSaver.saveAs(new Blob([exportTableOut], {
|
// sheetjs.xlsx为导出表格的标题名称
|
||||||
type: 'application/octet-stream'
|
try {
|
||||||
}), this.fileName[0] + '-' + this.fileName[1] + '_工段统计.xlsx')
|
FileSaver.saveAs(
|
||||||
} catch (e) {
|
new Blob([exportTableOut], {
|
||||||
if (typeof console !== 'undefined') console.log(e, exportTableOut)
|
type: 'application/octet-stream',
|
||||||
}
|
}),
|
||||||
return exportTableOut
|
this.fileName[0] + '-' + this.fileName[1] + '_工段统计.xlsx'
|
||||||
},
|
);
|
||||||
|
} catch (e) {
|
||||||
|
if (typeof console !== 'undefined') console.log(e, exportTableOut);
|
||||||
|
}
|
||||||
|
return exportTableOut;
|
||||||
|
},
|
||||||
exportPdf() {
|
exportPdf() {
|
||||||
this.test()
|
this.test();
|
||||||
setTimeout(() =>{
|
setTimeout(() => {
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false;
|
||||||
this.showData = this.tableData
|
this.showData = this.tableData;
|
||||||
}, 600)
|
}, 600);
|
||||||
|
|
||||||
},
|
},
|
||||||
exportXlsx() {
|
exportXlsx() {
|
||||||
this.exportECL()
|
this.exportECL();
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false;
|
||||||
this.showData = this.tableData
|
this.showData = this.tableData;
|
||||||
},
|
},
|
||||||
handleClose(done) {
|
handleClose(done) {
|
||||||
this.$confirm('确认关闭?')
|
this.$confirm('确认关闭?')
|
||||||
.then(_ => {
|
.then((_) => {
|
||||||
done();
|
done();
|
||||||
})
|
})
|
||||||
.catch(_ => {});
|
.catch((_) => {});
|
||||||
},
|
},
|
||||||
getArr() {
|
getArr() {
|
||||||
const params = {
|
const params = {
|
||||||
@ -281,61 +293,62 @@ export default {
|
|||||||
this.formConfig[index].selectOptions = response.data.list;
|
this.formConfig[index].selectOptions = response.data.list;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getDataList() {
|
getDataList() {
|
||||||
// this.listQuery.proLineId = '1672847052717821953';
|
this.urlOptions.getDataListURL(this.listQuery).then((res) => {
|
||||||
// this.listQuery.startTime = '1690626657000'
|
this.tableData = res.data;
|
||||||
// this.listQuery.endTime = '1693564257000'
|
this.listQuery.total = this.tableData.length;
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then(res => {
|
this.dataListLoading = false;
|
||||||
this.tableData = res.data
|
|
||||||
this.listQuery.total = this.tableData.length;
|
|
||||||
this.dataListLoading = false;
|
|
||||||
this.showData = this.tableData;
|
this.showData = this.tableData;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 每页数
|
// 每页数
|
||||||
sizeChangeHandle(val) {
|
sizeChangeHandle(val) {
|
||||||
this.listQuery.pageSize = val;
|
this.listQuery.pageSize = val;
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
// 当前页
|
// 当前页
|
||||||
currentChangeHandle(val) {
|
currentChangeHandle(val) {
|
||||||
this.listQuery.pageNo = val;
|
this.listQuery.pageNo = val;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
handleExport() {
|
handleExport() {
|
||||||
if (this.selectedList.length > 0) {
|
if (this.selectedList.length > 0) {
|
||||||
this.showData = this.selectedList
|
this.showData = this.selectedList;
|
||||||
}
|
}
|
||||||
this.dialogVisible = true
|
this.dialogVisible = true;
|
||||||
},
|
},
|
||||||
selectChange(val) {
|
selectChange(val) {
|
||||||
console.log(val)
|
console.log(val);
|
||||||
this.selectedList = val
|
this.selectedList = val;
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
console.log(val)
|
console.log(val);
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
console.log(val.timeSlot);
|
console.log(val.timeSlot);
|
||||||
|
|
||||||
// this.listQuery.pageNo = 1;
|
// this.listQuery.pageNo = 1;
|
||||||
// this.listQuery.pageSize = 10;
|
// this.listQuery.pageSize = 10;
|
||||||
this.listQuery.proLineId = val.proLineId ? val.proLineId : undefined
|
this.listQuery.proLineId = val.proLineId ? val.proLineId : undefined;
|
||||||
this.listQuery.sectionId = val.sectionId ? val.sectionId : undefined
|
this.listQuery.sectionId = val.sectionId ? val.sectionId : undefined;
|
||||||
this.listQuery.startTime = val.timeSlot ? new Date(val.timeSlot[0]).getTime() : undefined
|
this.listQuery.startTime = val.timeSlot
|
||||||
this.listQuery.endTime = val.timeSlot ? new Date(val.timeSlot[1]).getTime() : undefined
|
? new Date(val.timeSlot[0]).getTime()
|
||||||
|
: undefined;
|
||||||
|
this.listQuery.endTime = val.timeSlot
|
||||||
|
? new Date(val.timeSlot[1]).getTime()
|
||||||
|
: undefined;
|
||||||
if (val.timeSlot && val.timeSlot.length > 0) {
|
if (val.timeSlot && val.timeSlot.length > 0) {
|
||||||
this.fileName[0] = val.timeSlot[0].slice(0, 10)
|
this.fileName[0] = val.timeSlot[0].slice(0, 10);
|
||||||
this.fileName[1] = val.timeSlot[1].slice(0, 10)
|
this.fileName[1] = val.timeSlot[1].slice(0, 10);
|
||||||
this.getDataList()
|
this.getDataList();
|
||||||
} else {
|
} else {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '请选择时间',
|
message: '请选择时间',
|
||||||
type: 'warning'
|
type: 'warning',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'reset':
|
case 'reset':
|
||||||
this.$refs.searchBarForm.resetForm();
|
this.$refs.searchBarForm.resetForm();
|
||||||
@ -349,12 +362,12 @@ export default {
|
|||||||
case 'export':
|
case 'export':
|
||||||
if (val.timeSlot && val.timeSlot.length > 0) {
|
if (val.timeSlot && val.timeSlot.length > 0) {
|
||||||
this.handleExport();
|
this.handleExport();
|
||||||
} else {
|
} else {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '请选择时间',
|
message: '请选择时间',
|
||||||
type: 'warning'
|
type: 'warning',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.log(val);
|
console.log(val);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-04 09:34:52
|
date: 2023-09-04 09:34:52
|
||||||
@ -25,8 +25,9 @@
|
|||||||
class="base-table__margin"
|
class="base-table__margin"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="1"
|
:page="1"
|
||||||
:limit="10"
|
:limit="999"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun"></base-table>
|
@emitFun="handleEmitFun"></base-table>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane
|
<el-tab-pane
|
||||||
@ -88,11 +89,12 @@
|
|||||||
<script>
|
<script>
|
||||||
// import moment from 'moment';
|
// import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
import PieChart from './components/pieChart.vue';
|
import PieChart from './components/pieChart.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EfficiencyAnalysis',
|
name: 'EfficiencyAnalysis',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin,tableHeightMixin],
|
||||||
components: { PieChart },
|
components: { PieChart },
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
@ -118,8 +120,8 @@ export default {
|
|||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'factoryName', label: '工厂' },
|
{ prop: 'factoryName', label: '工厂' },
|
||||||
{ prop: 'lineName', label: '产线' },
|
{ prop: 'lineName', label: '产线' },
|
||||||
{ prop: 'sectionName', label: '工段' },
|
{ prop: 'sectionName', width:120,showOverflowtooltip :true,label: '工段' },
|
||||||
{ prop: 'equipmentName', label: '设备' },
|
{ prop: 'equipmentName',width:150,showOverflowtooltip :true, label: '设备' },
|
||||||
{
|
{
|
||||||
label: '有效时间',
|
label: '有效时间',
|
||||||
children: [
|
children: [
|
||||||
@ -127,12 +129,13 @@ export default {
|
|||||||
width: 128,
|
width: 128,
|
||||||
prop: 'workTime',
|
prop: 'workTime',
|
||||||
label: '工作时长[h]',
|
label: '工作时长[h]',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
width: 128,
|
width: 128,
|
||||||
prop: 'workRate',
|
prop: 'workRate',
|
||||||
label: '百分比[%]',
|
label: '百分比[%]',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -143,8 +146,11 @@ export default {
|
|||||||
width: 128,
|
width: 128,
|
||||||
prop: 'stopTime',
|
prop: 'stopTime',
|
||||||
label: '停机时长[h]',
|
label: '停机时长[h]',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{ width: 128, prop: 'stopRate', label: '百分比[%]' },
|
{ width: 128, prop: 'stopRate', label: '百分比[%]',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -154,14 +160,16 @@ export default {
|
|||||||
width: 128,
|
width: 128,
|
||||||
prop: 'downTime',
|
prop: 'downTime',
|
||||||
label: '故障时长[h]',
|
label: '故障时长[h]',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{ width: 128, prop: 'downRate', label: '百分比[%]' },
|
{ width: 128, prop: 'downRate', label: '百分比[%]' ,
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
width: 128,
|
width: 128,
|
||||||
prop: 'timeEfficiency',
|
prop: 'timeEfficiency',
|
||||||
label: '时间开动率',
|
label: '时间开动率',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -172,29 +180,31 @@ export default {
|
|||||||
width: 128,
|
width: 128,
|
||||||
prop: 'realProcSpeed',
|
prop: 'realProcSpeed',
|
||||||
label: '实际加工速度',
|
label: '实际加工速度',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
width: 128,
|
width: 128,
|
||||||
prop: 'designProcSpeed',
|
prop: 'designProcSpeed',
|
||||||
label: '理论加工速度',
|
label: '理论加工速度',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
width: 128,
|
width: 128,
|
||||||
prop: 'peEfficiency',
|
prop: 'peEfficiency',
|
||||||
label: '速度开动率',
|
label: '速度开动率',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'oee',
|
prop: 'oee',
|
||||||
label: 'OEE',
|
label: 'OEE',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'teep',
|
prop: 'teep',
|
||||||
label: 'TEEP',
|
label: 'TEEP',
|
||||||
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// _action: 'view-trend',
|
// _action: 'view-trend',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-04 09:34:52
|
date: 2023-09-04 09:34:52
|
||||||
@ -19,6 +19,7 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun">
|
||||||
<!-- <method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
@ -41,10 +42,11 @@
|
|||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ExceptionAnalysis',
|
name: 'ExceptionAnalysis',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
|
2323
src/views/equipment/analysis/quality/components/data.js
Normal file
2323
src/views/equipment/analysis/quality/components/data.js
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: lineChart.vue
|
filename: lineChart.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-04 13:45:00
|
date: 2023-09-04 13:45:00
|
||||||
description:
|
description:
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from 'echarts';
|
||||||
|
import edata from './data';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'LineChart',
|
name: 'LineChart',
|
||||||
@ -43,7 +44,7 @@ export default {
|
|||||||
eq.okQuantity,
|
eq.okQuantity,
|
||||||
eq.nokQuantity,
|
eq.nokQuantity,
|
||||||
eq.totalQuantity,
|
eq.totalQuantity,
|
||||||
eq.passRate?.toFixed(4),
|
typeof eq.passRate === "number" ? eq.passRate.toFixed(4) : "0.0000"
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-04 09:34:52
|
date: 2023-09-04 09:34:52
|
||||||
@ -26,6 +26,7 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun"></base-table>
|
@emitFun="handleEmitFun"></base-table>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane :label="'\u3000柱状图\u3000'" name="graph">
|
<el-tab-pane :label="'\u3000柱状图\u3000'" name="graph">
|
||||||
@ -47,10 +48,13 @@
|
|||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import LineChart from './components/lineChart.vue';
|
import LineChart from './components/lineChart.vue';
|
||||||
|
import { parseTime } from '@/filter/code-filter';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'QualityAnalysis',
|
name: 'QualityAnalysis',
|
||||||
components: { LineChart },
|
components: { LineChart },
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
@ -92,24 +96,6 @@ export default {
|
|||||||
endPlaceholder: '结束日期',
|
endPlaceholder: '结束日期',
|
||||||
defaultTime: ['00:00:00', '23:59:59'],
|
defaultTime: ['00:00:00', '23:59:59'],
|
||||||
param: 'recordTime',
|
param: 'recordTime',
|
||||||
defaultSelect: [
|
|
||||||
new Date(y, m, d)
|
|
||||||
.toLocaleString()
|
|
||||||
.split('/')
|
|
||||||
.map((item, index) => {
|
|
||||||
if (index == 1 || index == 2) return item.padStart(2, '0');
|
|
||||||
return item;
|
|
||||||
})
|
|
||||||
.join('-'),
|
|
||||||
new Date(y, m, d, 23, 59, 59)
|
|
||||||
.toLocaleString()
|
|
||||||
.split('/')
|
|
||||||
.map((item, index) => {
|
|
||||||
if (index == 1 || index == 2) return item.padStart(2, '0');
|
|
||||||
return item;
|
|
||||||
})
|
|
||||||
.join('-'),
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -156,22 +142,23 @@ export default {
|
|||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'inQuantity',
|
prop: 'inQuantity',
|
||||||
label: '进片数量',
|
label: '进片数量[片]',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'outQuantity',
|
prop: 'outQuantity',
|
||||||
label: '出片数量',
|
label: '出片数量[片]',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'nokQuantity',
|
prop: 'nokQuantity',
|
||||||
label: '破损/不合格数',
|
label: '破损/不合格数[片]',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'passRate',
|
prop: 'passRate',
|
||||||
label: '合格率',
|
label: '合格率',
|
||||||
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
lineChartConfig: {
|
lineChartConfig: {
|
||||||
@ -248,11 +235,23 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
created() {
|
created() {
|
||||||
|
const end = new Date();
|
||||||
|
const start = new Date();
|
||||||
|
this.queryParams.recordTime = [
|
||||||
|
parseTime(start).substr(0, 10) + ' 00:00:00',
|
||||||
|
parseTime(end).substr(0, 10) + ' 23:59:59',
|
||||||
|
];
|
||||||
|
this.searchBarFormConfig[2].startPlaceholder = parseTime(start).substr(
|
||||||
|
0,
|
||||||
|
10
|
||||||
|
);
|
||||||
|
this.searchBarFormConfig[2].endPlaceholder = parseTime(end).substr(0, 10);
|
||||||
this.fillLineOptions();
|
this.fillLineOptions();
|
||||||
this.fillProductOptions();
|
this.fillProductOptions();
|
||||||
|
this.getList();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$refs['search-bar'].headBtnClick('search');
|
//this.$refs['search-bar'].headBtnClick('search');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleTabClick(tab, event) {
|
handleTabClick(tab, event) {
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
<!--
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2024-10-29 09:47:40
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2024-11-26 14:41:52
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
filename: lineChart.vue
|
filename: lineChart.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-09-04 13:45:00
|
date: 2023-09-04 13:45:00
|
||||||
description:
|
description:
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -32,6 +39,12 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.init();
|
this.init();
|
||||||
},
|
},
|
||||||
|
activated() {
|
||||||
|
// 由于给echart添加了resize事件, 在组件激活时需要重新resize绘画一次, 否则出现空白bug
|
||||||
|
if (this.chart) {
|
||||||
|
this.echart.resize();
|
||||||
|
}
|
||||||
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
if (this.chart) {
|
if (this.chart) {
|
||||||
this.chart.dispose();
|
this.chart.dispose();
|
||||||
@ -43,7 +56,10 @@ export default {
|
|||||||
this.setOption(this.config);
|
this.setOption(this.config);
|
||||||
},
|
},
|
||||||
setOption(option) {
|
setOption(option) {
|
||||||
if (this.chart) this.chart.setOption(option);
|
if (this.chart) this.chart.setOption(option,true);
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
this.chart.resize();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -144,28 +144,18 @@ export default {
|
|||||||
eqList: [],
|
eqList: [],
|
||||||
graphList: [],
|
graphList: [],
|
||||||
templateConfig: {
|
templateConfig: {
|
||||||
color: [
|
|
||||||
'#283D68',
|
|
||||||
'#FFB61F',
|
|
||||||
'#4481FF',
|
|
||||||
'#5AD8A6',
|
|
||||||
'#E97466',
|
|
||||||
'#ccc', //<=== 需按情况更新
|
|
||||||
'#ccc',
|
|
||||||
'#ccc',
|
|
||||||
'#ccc',
|
|
||||||
'#ccc',
|
|
||||||
],
|
|
||||||
grid: {
|
grid: {
|
||||||
top: 48,
|
top: 48,
|
||||||
left: 48,
|
left: 48,
|
||||||
right: 24,
|
right: 90,
|
||||||
bottom: 24,
|
bottom: 24,
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
top: 0,
|
type: 'scroll',
|
||||||
right: 12,
|
orient: 'vertical',
|
||||||
padding: 6,
|
right: 10,
|
||||||
|
top: 20,
|
||||||
|
bottom: 20,
|
||||||
itemWidth: 16,
|
itemWidth: 16,
|
||||||
itemHeight: 8,
|
itemHeight: 8,
|
||||||
itemGap: 20,
|
itemGap: 20,
|
||||||
@ -495,6 +485,7 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.graphList.push(...newEqlist);
|
this.graphList.push(...newEqlist);
|
||||||
|
this.templateConfig.series = [];
|
||||||
newEqlist.forEach(this.setSeries);
|
newEqlist.forEach(this.setSeries);
|
||||||
}
|
}
|
||||||
this.open = false;
|
this.open = false;
|
||||||
|
@ -86,7 +86,7 @@ export default class GanttGraph {
|
|||||||
<span class="eq-name" style="margin-left: 4px;">${params.seriesName}</span>
|
<span class="eq-name" style="margin-left: 4px;">${params.seriesName}</span>
|
||||||
</div>
|
</div>
|
||||||
<span class="run-status" style="margin-left: 8px; opacity: 0.6">${params.name}</span>
|
<span class="run-status" style="margin-left: 8px; opacity: 0.6">${params.name}</span>
|
||||||
</div>
|
</div>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -112,7 +112,7 @@ export default class GanttGraph {
|
|||||||
// top: 12 + 128 * this.gridIndex,
|
// top: 12 + 128 * this.gridIndex,
|
||||||
top: 12 + 104 * this.gridIndex,
|
top: 12 + 104 * this.gridIndex,
|
||||||
right: 48,
|
right: 48,
|
||||||
left: 88,
|
left: 100,
|
||||||
height: 56
|
height: 56
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -175,7 +175,7 @@ export default class GanttGraph {
|
|||||||
nameGap: 14,
|
nameGap: 14,
|
||||||
nameRotate: 0,
|
nameRotate: 0,
|
||||||
nameTextStyle: {
|
nameTextStyle: {
|
||||||
fontSize: 16,
|
fontSize: 12,
|
||||||
color: '#000A'
|
color: '#000A'
|
||||||
},
|
},
|
||||||
axisLine: {
|
axisLine: {
|
||||||
@ -325,4 +325,4 @@ export default class GanttGraph {
|
|||||||
console.log(JSON.stringify(this.option, null, 2));
|
console.log(JSON.stringify(this.option, null, 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
302
src/views/equipment/timing-diagram/status/gantt.js
Normal file
302
src/views/equipment/timing-diagram/status/gantt.js
Normal file
@ -0,0 +1,302 @@
|
|||||||
|
import * as echarts from 'echarts'
|
||||||
|
|
||||||
|
function getStartTime(timestamp) {
|
||||||
|
return new Date(new Date(timestamp).toLocaleDateString()).getTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderItem(params, api) {
|
||||||
|
var categoryIndex = api.value(0);
|
||||||
|
var start = api.coord([api.value(1), categoryIndex]);
|
||||||
|
var end = api.coord([api.value(2), categoryIndex]);
|
||||||
|
|
||||||
|
var height = api.size([0, 1])[1] * 0.5;
|
||||||
|
var rectShape = echarts.graphic.clipRectByRect(
|
||||||
|
{
|
||||||
|
x: start[0],
|
||||||
|
y: start[1] - height / 2,
|
||||||
|
width: end[0] - start[0],
|
||||||
|
height: height,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
x: params.coordSys.x,
|
||||||
|
y: params.coordSys.y - 16,
|
||||||
|
width: params.coordSys.width,
|
||||||
|
height: params.coordSys.height,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
rectShape && {
|
||||||
|
type: 'rect',
|
||||||
|
transition: ['shape'],
|
||||||
|
shape: rectShape,
|
||||||
|
style: api.style(),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// unused
|
||||||
|
function getXaxisRange(startTime) {
|
||||||
|
return Array(24)
|
||||||
|
.fill(startTime)
|
||||||
|
.map((item, index) => {
|
||||||
|
return new Date(item + index * 3600 * 1000)
|
||||||
|
.toLocaleTimeString()
|
||||||
|
.split(':')
|
||||||
|
.slice(0, 2)
|
||||||
|
.join(':');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTodayStart(today) {
|
||||||
|
const [y, m, d] = [
|
||||||
|
today.getFullYear(),
|
||||||
|
today.getMonth(),
|
||||||
|
today.getDate(),
|
||||||
|
];
|
||||||
|
// debugger;
|
||||||
|
return new Date(y, m, d).getTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** 颜色配置 */
|
||||||
|
const types = [
|
||||||
|
{ name: '运行', color: '#288AFF' },
|
||||||
|
{ name: '故障', color: '#FC9C91' },
|
||||||
|
{ name: '计划停机', color: '#FFDC94' },
|
||||||
|
{ name: '空白', color: '#F2F4F9' },
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
export default class GanttGraph {
|
||||||
|
// tooltip - 基本是固定的
|
||||||
|
tooltip = {
|
||||||
|
trigger: 'item',
|
||||||
|
axisPointer: {
|
||||||
|
type: 'none',
|
||||||
|
},
|
||||||
|
formatter: (params) => {
|
||||||
|
// debugger;
|
||||||
|
return `
|
||||||
|
<div style="display: flex; flex-direction: column;">
|
||||||
|
<span>${new Date(params.value[1]).toLocaleTimeString()} ~ ${new Date(params.value[2]).toLocaleTimeString()}</span>
|
||||||
|
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span class="icon" style="width: 8px; height: 8px; border-radius: 2px; background: ${params.color}"></span>
|
||||||
|
<span class="eq-name" style="margin-left: 4px;">${params.data.showName}</span>
|
||||||
|
</div>
|
||||||
|
<span class="run-status" style="margin-left: 8px; opacity: 0.6">${params.name}</span>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
grid = []
|
||||||
|
xAxis = []
|
||||||
|
yAxis = []
|
||||||
|
series = []
|
||||||
|
|
||||||
|
constructor(el, startTime) {
|
||||||
|
this.el = el;
|
||||||
|
this.startTime = new Date(startTime);
|
||||||
|
// this.startTime = new Date(new Date('2023/10/8').toLocaleDateString());
|
||||||
|
// console.log('<> Gantt Created', this.startTime);
|
||||||
|
}
|
||||||
|
// 构造一个新的 grid
|
||||||
|
makeGrid() {
|
||||||
|
return {
|
||||||
|
top: 0,
|
||||||
|
right: 20,
|
||||||
|
left: 100,
|
||||||
|
bottom: 50,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构造一个 xAxis
|
||||||
|
makeXaxis() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
axisTick: {
|
||||||
|
alignWithLabel: true,
|
||||||
|
inside: true,
|
||||||
|
},
|
||||||
|
type: 'time',
|
||||||
|
min: getTodayStart(this.startTime),
|
||||||
|
max: getStartTime(this.startTime.getTime() + 3600 * 24 * 1000),
|
||||||
|
splitNumber: 10,
|
||||||
|
axisLabel: {
|
||||||
|
margin: 12,
|
||||||
|
formatter: function (val) {
|
||||||
|
return new Date(val)
|
||||||
|
.toLocaleTimeString()
|
||||||
|
.split(':')
|
||||||
|
.slice(0, 2)
|
||||||
|
.join(':');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
lineStyle: {
|
||||||
|
color: '#0005',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
boundaryGap: false,
|
||||||
|
// data: getXaxisRange(getTodayStart(new Date())),
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 构造一个 yAxis
|
||||||
|
makeYaxis(equipmentName) {
|
||||||
|
return [
|
||||||
|
// 主y轴
|
||||||
|
{
|
||||||
|
data: equipmentName,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构造一个 series
|
||||||
|
makeSeries(xdata) {
|
||||||
|
const bgStartTime = this.startTime.getTime();
|
||||||
|
const bgEndTime = bgStartTime + 3600 * 24 * 1000;
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
type: 'custom',
|
||||||
|
renderItem: renderItem,
|
||||||
|
itemStyle: {
|
||||||
|
opacity: 0.8,
|
||||||
|
},
|
||||||
|
encode: {
|
||||||
|
x: [1, 2],
|
||||||
|
y: 0,
|
||||||
|
},
|
||||||
|
data: xdata,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
init(data) {
|
||||||
|
if (!this.el) throw new Error('没有可供echarts初始化的容器')
|
||||||
|
if (typeof this.el == 'string') {
|
||||||
|
this.el = document.querySelector(this.el);
|
||||||
|
}
|
||||||
|
this.chart = echarts.init(this.el);
|
||||||
|
this.handleProps(data);
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
// debugger;
|
||||||
|
this.chart.setOption(this.option);
|
||||||
|
}, 200);
|
||||||
|
}
|
||||||
|
|
||||||
|
update(data) {
|
||||||
|
this.clear();
|
||||||
|
this.init(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
resize() {
|
||||||
|
this.chart.resize();
|
||||||
|
}
|
||||||
|
|
||||||
|
get option() {
|
||||||
|
return {
|
||||||
|
tooltip: this.tooltip,
|
||||||
|
grid: this.grid,
|
||||||
|
xAxis: this.xAxis,
|
||||||
|
yAxis: this.yAxis,
|
||||||
|
series: this.series,
|
||||||
|
dataZoom: [
|
||||||
|
{
|
||||||
|
type: 'slider',
|
||||||
|
xAxisIndex: 0,
|
||||||
|
filterMode: 'weakFilter',
|
||||||
|
height: 20,
|
||||||
|
bottom: 0,
|
||||||
|
start: 0,
|
||||||
|
end: 80,
|
||||||
|
handleIcon:
|
||||||
|
'path://M10.7,11.9H9.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z',
|
||||||
|
handleSize: '80%',
|
||||||
|
showDetail: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'inside',
|
||||||
|
id: 'insideX',
|
||||||
|
xAxisIndex: 0,
|
||||||
|
filterMode: 'weakFilter',
|
||||||
|
start: 0,
|
||||||
|
end: 80,
|
||||||
|
zoomOnMouseWheel: true,
|
||||||
|
moveOnMouseMove: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'slider',
|
||||||
|
yAxisIndex: 0,
|
||||||
|
zoomLock: true,
|
||||||
|
width: 10,
|
||||||
|
right: 10,
|
||||||
|
top: 70,
|
||||||
|
bottom: 20,
|
||||||
|
start: 0,
|
||||||
|
end: 100,
|
||||||
|
handleSize: 0,
|
||||||
|
showDetail: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'inside',
|
||||||
|
id: 'insideY',
|
||||||
|
yAxisIndex: 0,
|
||||||
|
start: 0,
|
||||||
|
end: 100,
|
||||||
|
zoomOnMouseWheel: true,
|
||||||
|
moveOnMouseMove: true,
|
||||||
|
moveOnMouseWheel: true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 每次 graphList 刷新都会重新渲染整个所有图表
|
||||||
|
// 可以改进的地方:添加一个 handleAdd() 方法,一次添加一个新的
|
||||||
|
handleProps(props) {
|
||||||
|
// props 是父组件的 graphList
|
||||||
|
console.log('props: ', props);
|
||||||
|
let ylist = []
|
||||||
|
let xdata = []
|
||||||
|
props.forEach((eqArr, index) => {
|
||||||
|
ylist.push(eqArr.key)
|
||||||
|
eqArr.forEach(item => {
|
||||||
|
xdata.push({
|
||||||
|
name: ['运行', '故障', '计划停机'][item.status],
|
||||||
|
showName: eqArr.key,
|
||||||
|
value: [index, item.startTime, item.startTime + item.duration * 60 * 1000, 0],
|
||||||
|
itemStyle: {
|
||||||
|
color: types[item.status].color,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
})
|
||||||
|
});
|
||||||
|
this.grid.push(this.makeGrid());
|
||||||
|
this.xAxis.push(...this.makeXaxis());
|
||||||
|
this.yAxis.push(...this.makeYaxis(ylist));
|
||||||
|
this.series.push(...this.makeSeries(xdata))
|
||||||
|
}
|
||||||
|
|
||||||
|
// handleAdd
|
||||||
|
handleAdd() { }
|
||||||
|
|
||||||
|
clear() {
|
||||||
|
this.grid = [];
|
||||||
|
this.xAxis = [];
|
||||||
|
this.yAxis = [];
|
||||||
|
this.series = [];
|
||||||
|
this.chart.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
// print option
|
||||||
|
print() {
|
||||||
|
console.log(JSON.stringify(this.option, null, 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -47,8 +47,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="main-area" style="flex: 1; display: flex; flex-direction: column">
|
<div class="main-area" style="flex: 1; display: flex; flex-direction: column;">
|
||||||
<div class="graphs" v-show="graphList.length" id="status-chart" style="height: 1px; flex: 1"></div>
|
<div class="graphs" v-show="graphList.length" id="status-chart" style="height: 1px; flex: 1;"></div>
|
||||||
<h2 v-if="!graphList || graphList.length == 0" class="no-data-bg"></h2>
|
<h2 v-if="!graphList || graphList.length == 0" class="no-data-bg"></h2>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -64,7 +64,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Gantt from './chart';
|
import Gantt from './gantt';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SGStatus',
|
name: 'SGStatus',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-31 09:14:19
|
date: 2023-08-31 09:14:19
|
||||||
@ -20,6 +20,7 @@
|
|||||||
:table-props="table.tableProps"
|
:table-props="table.tableProps"
|
||||||
:table-data="table.dataManager?.dataList ?? []"
|
:table-data="table.dataManager?.dataList ?? []"
|
||||||
:span-method="spanMethod"
|
:span-method="spanMethod"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="(val) => handleEmitFun(table, val)"></base-table>
|
@emitFun="(val) => handleEmitFun(table, val)"></base-table>
|
||||||
<pagination
|
<pagination
|
||||||
:key="table.key + '__pagination'"
|
:key="table.key + '__pagination'"
|
||||||
@ -35,8 +36,7 @@
|
|||||||
" />
|
" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="no-data-bg">
|
<div v-else class="no-data-bg"></div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -44,9 +44,11 @@
|
|||||||
import LocalDataManager from './utils/local-data-manager';
|
import LocalDataManager from './utils/local-data-manager';
|
||||||
// import response from './response';
|
// import response from './response';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentFullParams',
|
name: 'EquipmentFullParams',
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
@ -94,7 +96,7 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
queryParams: {
|
queryParams: {
|
||||||
id: null,
|
equipmentId: null,
|
||||||
time: [new Date(aWeekAgo), new Date(today)],
|
time: [new Date(aWeekAgo), new Date(today)],
|
||||||
},
|
},
|
||||||
tableList: [
|
tableList: [
|
||||||
@ -121,7 +123,7 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.id) this.$set(this.queryParams, 'id', this.id);
|
if (this.id) this.$set(this.queryParams, 'equipmentId', this.id);
|
||||||
if (this.code)
|
if (this.code)
|
||||||
this.$set(this.searchBarFormConfig[0], 'defaultSelect', this.code);
|
this.$set(this.searchBarFormConfig[0], 'defaultSelect', this.code);
|
||||||
if (this.name)
|
if (this.name)
|
||||||
|
2323
src/views/monitoring/equipmentProcessAmount/data.js
Normal file
2323
src/views/monitoring/equipmentProcessAmount/data.js
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: graph.vue
|
filename: graph.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-31 14:00:02
|
date: 2023-08-31 14:00:02
|
||||||
description:
|
description:
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from 'echarts';
|
||||||
|
import edata from './data';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'LineChartInEquipmentProcessAmount',
|
name: 'LineChartInEquipmentProcessAmount',
|
||||||
@ -30,6 +31,12 @@ export default {
|
|||||||
right: 64,
|
right: 64,
|
||||||
bottom: 56,
|
bottom: 56,
|
||||||
},
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'axis',
|
||||||
|
axisPointer: {
|
||||||
|
type: 'shadow',
|
||||||
|
},
|
||||||
|
},
|
||||||
title: {
|
title: {
|
||||||
show: false,
|
show: false,
|
||||||
text: '各设备加工数量',
|
text: '各设备加工数量',
|
||||||
@ -40,18 +47,30 @@ export default {
|
|||||||
left: 'center',
|
left: 'center',
|
||||||
top: 24,
|
top: 24,
|
||||||
},
|
},
|
||||||
yAxis: {
|
toolbox: {
|
||||||
type: 'category',
|
feature: {
|
||||||
axisLine: {
|
dataZoom: {
|
||||||
show: true,
|
xAxisIndex: false,
|
||||||
lineStyle: {
|
},
|
||||||
color: '#777',
|
saveAsImage: {
|
||||||
|
pixelRatio: 2,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
axisTick: {
|
},
|
||||||
show: false,
|
dataZoom: [
|
||||||
|
{
|
||||||
|
type: 'slider',
|
||||||
|
yAxisIndex: 0,
|
||||||
|
filterMode: 'none',
|
||||||
},
|
},
|
||||||
// data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
{
|
||||||
|
type: 'inside',
|
||||||
|
yAxisIndex: 0,
|
||||||
|
filterMode: 'none',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxis: {
|
||||||
|
type: 'category',
|
||||||
data: [],
|
data: [],
|
||||||
name: '设备名',
|
name: '设备名',
|
||||||
nameTextStyle: {
|
nameTextStyle: {
|
||||||
@ -60,12 +79,6 @@ export default {
|
|||||||
},
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'value',
|
type: 'value',
|
||||||
axisLine: {
|
|
||||||
show: true,
|
|
||||||
lineStyle: {
|
|
||||||
color: '#777',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
name: '数量',
|
name: '数量',
|
||||||
nameTextStyle: {
|
nameTextStyle: {
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
@ -73,7 +86,6 @@ export default {
|
|||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
// data: [120, 200, 150, 80, 70, 110, 130],
|
|
||||||
data: [],
|
data: [],
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
@ -82,10 +94,8 @@ export default {
|
|||||||
distance: 50,
|
distance: 50,
|
||||||
formatter: '{c}',
|
formatter: '{c}',
|
||||||
},
|
},
|
||||||
showBackground: true,
|
large: true,
|
||||||
backgroundStyle: {
|
largeThreshold: 20,
|
||||||
color: 'rgba(180, 180, 180, 0.2)',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -96,7 +106,7 @@ export default {
|
|||||||
handler: function (newVal, oldVal) {
|
handler: function (newVal, oldVal) {
|
||||||
if (!this.chart) this.chart = echarts.init(this.$refs.chart);
|
if (!this.chart) this.chart = echarts.init(this.$refs.chart);
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
if (this.chart) this.chart.setOption(this.updateConfig(this.option));
|
if (this.chart) this.chart.setOption(this.updateConfig(this.option),true);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
deep: true,
|
deep: true,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-30 14:02:49
|
date: 2023-08-30 14:02:49
|
||||||
@ -23,15 +23,13 @@
|
|||||||
@mouseleave="factoryListOpen = false">
|
@mouseleave="factoryListOpen = false">
|
||||||
{{ currentFactory?.label || '点我选择工厂' }}
|
{{ currentFactory?.label || '点我选择工厂' }}
|
||||||
<div class="factory-list__wrapper" :class="{ open: factoryListOpen }">
|
<div class="factory-list__wrapper" :class="{ open: factoryListOpen }">
|
||||||
<ul
|
<ul class="factory-list" v-if="sidebarContent.length">
|
||||||
class="factory-list"
|
|
||||||
v-if="sidebarContent.length"
|
|
||||||
@click.prevent="factoryChangeHandler">
|
|
||||||
<li
|
<li
|
||||||
v-for="fc in sidebarContent"
|
v-for="fc in sidebarContent"
|
||||||
:key="fc.id"
|
:key="fc.id"
|
||||||
:data-value="fc.id"
|
:data-value="fc.id"
|
||||||
class="factory-list__item"
|
class="factory-list__item"
|
||||||
|
@click.prevent="factoryChangeHandler(fc.id)"
|
||||||
:class="{ 'is-current': fc.id == currentFactory?.id }">
|
:class="{ 'is-current': fc.id == currentFactory?.id }">
|
||||||
<span>
|
<span>
|
||||||
{{ fc.label }}
|
{{ fc.label }}
|
||||||
@ -83,6 +81,7 @@
|
|||||||
:page="1"
|
:page="1"
|
||||||
:limit="999"
|
:limit="999"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun">
|
||||||
<!-- <method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
@ -114,10 +113,12 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Graph from './graph.vue';
|
import Graph from './graph.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentProcessAmount',
|
name: 'EquipmentProcessAmount',
|
||||||
components: { Graph },
|
components: { Graph },
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -269,7 +270,7 @@ export default {
|
|||||||
// { prop: 'externalCode', label: '设备编码' },
|
// { prop: 'externalCode', label: '设备编码' },
|
||||||
{ prop: 'equipmentId', label: '设备编码' },
|
{ prop: 'equipmentId', label: '设备编码' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'equipmentName', label: '设备名称' },
|
||||||
{ prop: 'totalQuantity', label: '加工数量' },
|
{ prop: 'totalQuantity', label: '加工数量[片]' },
|
||||||
],
|
],
|
||||||
mode: 'table', // table | graph
|
mode: 'table', // table | graph
|
||||||
queryParams: {
|
queryParams: {
|
||||||
@ -333,11 +334,10 @@ export default {
|
|||||||
if (tab.name == 'graph') this.renderKey = Math.random();
|
if (tab.name == 'graph') this.renderKey = Math.random();
|
||||||
},
|
},
|
||||||
|
|
||||||
factoryChangeHandler(event) {
|
factoryChangeHandler(id) {
|
||||||
this.factoryListOpen = false;
|
this.factoryListOpen = false;
|
||||||
const fcId = event.target.dataset.value;
|
this.handleSidebarItemClick({ id: id, type: '工厂' });
|
||||||
this.handleSidebarItemClick({ id: fcId, type: '工厂' });
|
this.currentFactory = this.sidebarContent.find((item) => item.id == id);
|
||||||
this.currentFactory = this.sidebarContent.find((item) => item.id == fcId);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
handleSidebarItemClick({ label, id, type }) {
|
handleSidebarItemClick({ label, id, type }) {
|
||||||
@ -390,6 +390,7 @@ export default {
|
|||||||
params: this.queryParams,
|
params: this.queryParams,
|
||||||
});
|
});
|
||||||
this.list = data;
|
this.list = data;
|
||||||
|
if (this.activeName == 'graph') this.renderKey = Math.random();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: index.vue
|
filename: index.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-08-04 14:44:58
|
date: 2023-08-04 14:44:58
|
||||||
@ -17,6 +17,7 @@
|
|||||||
:span-method="mergeColumnHandler"
|
:span-method="mergeColumnHandler"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun"></base-table>
|
@emitFun="handleEmitFun"></base-table>
|
||||||
<!-- :page="queryParams.pageNo"
|
<!-- :page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize" -->
|
:limit="queryParams.pageSize" -->
|
||||||
@ -26,10 +27,12 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'QualityRecentHours',
|
name: 'QualityRecentHours',
|
||||||
components: {},
|
components: {},
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -58,8 +61,13 @@ export default {
|
|||||||
const props = [
|
const props = [
|
||||||
{ prop: 'productLine', label: '产线' },
|
{ prop: 'productLine', label: '产线' },
|
||||||
{ prop: 'specification', label: '规格' },
|
{ prop: 'specification', label: '规格' },
|
||||||
{ prop: 'equipmentName', label: '设备' },
|
{
|
||||||
{ prop: 'totalQuantity', label: '生产总数' },
|
prop: 'equipmentName',
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
label: '设备',
|
||||||
|
},
|
||||||
|
{ prop: 'totalQuantity', width: 120, label: '生产总数[片]' },
|
||||||
];
|
];
|
||||||
|
|
||||||
for (const key of Object.keys(hourData).sort()) {
|
for (const key of Object.keys(hourData).sort()) {
|
||||||
@ -67,13 +75,13 @@ export default {
|
|||||||
// label: 'key',
|
// label: 'key',
|
||||||
label: moment(key).format('YYYY-MM-DD HH:mm:ss'),
|
label: moment(key).format('YYYY-MM-DD HH:mm:ss'),
|
||||||
children: [
|
children: [
|
||||||
{ prop: key + '__in', label: '进数据' },
|
{ prop: key + '__in', width: 100, label: '进数据[片]' },
|
||||||
{ prop: key + '__out', label: '出数据' },
|
{ prop: key + '__out', width: 100, label: '出数据[片]' },
|
||||||
{ prop: key + '__nok', label: '报废数据' },
|
{ prop: key + '__nok', width: 100, label: '报废数据[片]' },
|
||||||
{
|
{
|
||||||
prop: key + '__ratio',
|
prop: key + '__ratio',
|
||||||
label: '报废率',
|
label: '报废率',
|
||||||
filter: (val) => (val != null ? val + ' %' : '-'),
|
filter: (val) => (val != null ? val.toFixed(2) : '-'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -88,11 +96,7 @@ export default {
|
|||||||
this.list.splice(0);
|
this.list.splice(0);
|
||||||
let rowIndex = 0;
|
let rowIndex = 0;
|
||||||
for (const line of list) {
|
for (const line of list) {
|
||||||
const {
|
const { productLine, specification = [], data } = line;
|
||||||
productLine,
|
|
||||||
specification = [],
|
|
||||||
data,
|
|
||||||
} = line;
|
|
||||||
|
|
||||||
// 设置span的行数
|
// 设置span的行数
|
||||||
this.spanInfo[rowIndex] = data.length;
|
this.spanInfo[rowIndex] = data.length;
|
||||||
|
@ -72,16 +72,27 @@ export default {
|
|||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{
|
{
|
||||||
width: 128,
|
prop: 'lineName',
|
||||||
|
label: '产线名',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'workshopName',
|
||||||
|
label: '工段名',
|
||||||
|
showOverflowtooltip :true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
width: 200,
|
||||||
prop: 'equipmentName',
|
prop: 'equipmentName',
|
||||||
label: '设备名称',
|
label: '设备名称',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip :true,
|
||||||
prop: 'equipmentCode',
|
prop: 'equipmentCode',
|
||||||
label: '设备编码',
|
label: '设备编码',
|
||||||
},
|
},
|
||||||
{ width: 128, prop: 'inQuantity', label: '投入数' },
|
{ width: 128, prop: 'inQuantity', label: '投入数[片]' },
|
||||||
{ width: 128, prop: 'outQuantity', label: '产出数' },
|
{ width: 128, prop: 'outQuantity', label: '产出数[片]' },
|
||||||
{
|
{
|
||||||
width: 128,
|
width: 128,
|
||||||
prop: 'run',
|
prop: 'run',
|
||||||
|
Loading…
Reference in New Issue
Block a user