月度报表、效率单位修改
parent
994c31a4e1
commit
44911071dc
@ -0,0 +1,231 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
||||
<el-form-item size="small" label="生产日期: ">
|
||||
<el-date-picker
|
||||
v-model="queryParams.productDateStr"
|
||||
value-format="yyyy-MM-dd"
|
||||
type="date"
|
||||
placeholder="生产日期"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['mes:prepare:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
v-loading="loading" :data="tableData"
|
||||
:header-cell-style="{'text-align':'center','font-size':'18px'}"
|
||||
:cell-style="{'text-align':'center'}"
|
||||
style="width: 100%; ">
|
||||
<el-table-column label="小榄工厂黑蚊香车间生产情况表">
|
||||
<el-table-column
|
||||
label="日期"
|
||||
width="200">
|
||||
<el-table-column
|
||||
prop="lineName"
|
||||
label="产线"
|
||||
width="200">
|
||||
</el-table-column>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="2024年6月17日">
|
||||
<el-table-column
|
||||
prop="category"
|
||||
label="类别"
|
||||
width="200">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="useman"
|
||||
label="员工"
|
||||
width="200">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="production"
|
||||
label="产量"
|
||||
width="200">
|
||||
</el-table-column>
|
||||
|
||||
</el-table-column>
|
||||
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getDailyReport,getWorkcenterList} from "@/api/mes/reportWork";
|
||||
import moment from 'moment';
|
||||
export default {
|
||||
name: "Prepare",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 备料单表格数据
|
||||
tableData: [{
|
||||
lineName: '一号线',
|
||||
category: '桶装',
|
||||
useman: '28',
|
||||
production: '1536件',
|
||||
}, {
|
||||
lineName: '二号线',
|
||||
category: '单盘',
|
||||
useman: '29',
|
||||
production: '1536件',
|
||||
}, {
|
||||
lineName: '三号线',
|
||||
category: '3+1',
|
||||
useman: '30',
|
||||
production: '1536件',
|
||||
}],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
productDate: new Date().toLocaleDateString().replace(/\//g, "-"),
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
workCenter: null,
|
||||
factoryCode: null
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {},
|
||||
options: null
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
this.getWorkcenterList();
|
||||
},
|
||||
methods: {
|
||||
indexMethod(index){
|
||||
return index+1 ;
|
||||
},
|
||||
/** 查询备料单列表 */
|
||||
getList() {
|
||||
if(this.queryParams.productDate == null){
|
||||
this.$modal.msgSuccess("日期不能为空");
|
||||
return
|
||||
}
|
||||
|
||||
this.loading = true;
|
||||
getDailyReport(this.queryParams).then(response => {
|
||||
// this.prepareList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
getWorkcenterList(){
|
||||
|
||||
getWorkcenterList().then(data => {
|
||||
this.options = data;
|
||||
});
|
||||
this.queryParams.workCenter = this.options[0].factoryCode;
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
if (this.timeList.length > 0) {
|
||||
this.queryParams.startTime = moment(this.timeList[0]).format('YYYY-MM-DD')
|
||||
this.queryParams.endTime = moment(this.timeList[1]).format('YYYY-MM-DD')
|
||||
}
|
||||
this.queryParams.pageNum = 1
|
||||
this.getList()
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('mes/reportWork/getDailyReportExport', {
|
||||
...this.queryParams
|
||||
}, `dailyReport${new Date().getTime()}.xlsx`)
|
||||
},
|
||||
getSummaries(param) {
|
||||
const { columns, data } = param;
|
||||
const sums = [];
|
||||
columns.forEach((column, index) => {
|
||||
if (index === 0) {
|
||||
sums[index] = '小计';
|
||||
return;
|
||||
}
|
||||
const values = data.map(item => Number(item[column.property]));
|
||||
if (!values.every(value => isNaN(value))) {
|
||||
sums[index] = values.reduce((prev, curr) => {
|
||||
const value = Number(curr);
|
||||
if (!isNaN(value)) {
|
||||
return prev + curr;
|
||||
} else {
|
||||
return prev;
|
||||
}
|
||||
}, 0);
|
||||
sums[index] += '';
|
||||
if(index<6){
|
||||
sums[index] = '';
|
||||
}
|
||||
} else {
|
||||
sums[index] = '';//N/A
|
||||
}
|
||||
});
|
||||
|
||||
return sums;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,89 @@
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div ref="chart" style="width:90%;height:260px"></div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return{
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getGroupLineEquInfo();
|
||||
this.getEchartData();
|
||||
},
|
||||
methods: {
|
||||
getGroupLineEquInfo(){
|
||||
|
||||
|
||||
// 月份信息
|
||||
var monthTemp = ['一月', '二月', '三月', '四月', '五月', '六月', '七月','八月','九月','十月','十一月','十二月']
|
||||
var groupLineNames=['一号线','二号线']
|
||||
monthTemp.splice(new Date().getMonth()+1)
|
||||
|
||||
const chart = this.$refs.chart
|
||||
if (chart) {
|
||||
const myChart = this.$echarts.init(chart)
|
||||
const option = {
|
||||
title: {
|
||||
text: ''
|
||||
},
|
||||
tooltip: {
|
||||
trigger: 'axis'
|
||||
},
|
||||
legend: {
|
||||
data: groupLineNames
|
||||
},
|
||||
grid: {
|
||||
left: '3%',
|
||||
right: '4%',
|
||||
bottom: '3%',
|
||||
containLabel: true
|
||||
},
|
||||
/**
|
||||
toolbox: {
|
||||
feature: {
|
||||
saveAsImage: {}
|
||||
}
|
||||
},**/
|
||||
xAxis: {
|
||||
type: 'category',
|
||||
boundaryGap: false,
|
||||
data: monthTemp
|
||||
},
|
||||
yAxis: {
|
||||
type: 'value'
|
||||
},
|
||||
series: info
|
||||
|
||||
}
|
||||
myChart.setOption(option)
|
||||
window.addEventListener("resize", function() {
|
||||
myChart.resize()
|
||||
})
|
||||
}
|
||||
this.$on('hook:destroyed',()=>{
|
||||
window.removeEventListener("resize", function() {
|
||||
myChart.resize();
|
||||
});
|
||||
});
|
||||
},
|
||||
getEchartData() {
|
||||
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
watch: {},
|
||||
created() {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue