质量检测项明细报表开发
parent
c27b55e50b
commit
ad2090ebb1
@ -0,0 +1,473 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="100px"
|
||||
class="edit-el-form"
|
||||
>
|
||||
<el-form-item label="订单编码" prop="workorderCodeSap">
|
||||
<el-input
|
||||
v-model="queryParams.workorderCodeSap"
|
||||
placeholder="请输入订单编码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="线体" prop="checkLoc">
|
||||
<el-select clearable v-model="queryParams.checkLoc">
|
||||
<el-option
|
||||
v-for="item in prodLineList"
|
||||
:key="item.lineCode"
|
||||
:label="item.lineName"
|
||||
:value="item.lineCode"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="产品编号" prop="materialCode">
|
||||
<el-input
|
||||
v-model="queryParams.materialCode"
|
||||
placeholder="请输入产品编号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="检验类型" prop="typeCode">
|
||||
<el-select
|
||||
v-model="queryParams.typeCode"
|
||||
placeholder="必选检验类型"
|
||||
@change="getCheckTypeList"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in dict.type.check_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="检验节点" prop="checkType">
|
||||
<el-select
|
||||
v-model="queryParams.checkType"
|
||||
placeholder="必选检验节点"
|
||||
@change="getProjectListFunc"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in checkTypeList"
|
||||
:key="dict.checkType"
|
||||
:label="dict.checkName"
|
||||
:value="dict.checkType"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="定量检测项" prop="projectId">
|
||||
<el-select
|
||||
v-model="queryParams.projectId"
|
||||
|
||||
collapse-tags
|
||||
placeholder="必选定量检测项"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in projectNoOptions"
|
||||
:key="item.recordId"
|
||||
:label="item.ruleName"
|
||||
:value="item.recordId"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="生产时间" prop="incomeTimeArray">
|
||||
<el-date-picker
|
||||
v-model="queryParams.incomeTimeArray"
|
||||
format="yyyy-MM-dd"
|
||||
type="datetimerange"
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-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"
|
||||
>导出</el-button
|
||||
>
|
||||
</el-col>
|
||||
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange" height="450">
|
||||
<el-table-column type="index" width="50" align="center" :index="indexMethod" label="序号"fixed/>
|
||||
<!--<el-table-column label="线体编码" align="center" prop="checkLoc" width="90" />-->
|
||||
<el-table-column label="线体名称" align="center" prop="equipmentName" width="90" />
|
||||
<el-table-column label="产品编码" align="center" prop="materialCode" width="110" :formatter="productCodeFormate"/>
|
||||
<el-table-column label="产品名称" align="center" prop="materialName" width="180" :show-overflow-tooltip="true"/>
|
||||
|
||||
<el-table-column label="订单号" align="center" prop="workorderCodeSap" width="100" :formatter="orderCodeFormate"/>
|
||||
<!--<el-table-column label="工单号" align="center" prop="workorderCode" width="130"/>-->
|
||||
<el-table-column label="批次号" align="center" prop="batchNo" width="150" />
|
||||
<el-table-column label="检测项" align="center" prop="ruleName" width="250" :show-overflow-tooltip="true"/>
|
||||
<el-table-column label="测量值" align="center">
|
||||
<template v-for="(column, index) in showTitles">
|
||||
<el-table-column align="center" width="70" :prop="column.id" :key="column.id" :label="column.titleName"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="CPK品类" align="center" prop="cpkTypeName" width="100" />
|
||||
<el-table-column label="日期" align="center" prop="incomeTime" width="160">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.incomeTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!--
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>-->
|
||||
<!-- 图标分析 -->
|
||||
<el-dialog
|
||||
:title="title"
|
||||
:visible.sync="open"
|
||||
width="1300px"
|
||||
append-to-body
|
||||
>
|
||||
|
||||
<el-button type="primary" round v-if="title == 'CPK分析'" @click="handleExportCPK">导出CPK</el-button>
|
||||
<div
|
||||
class="echartbox"
|
||||
id="echart1"
|
||||
style="margin: auto; margin-top: 20px; width: 1220px; height: 545px"
|
||||
></div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
getDLTableMXTitle,
|
||||
getDLTableMXList,
|
||||
getCheckTypeList,
|
||||
getSupplierList,
|
||||
getProjectOptionList,
|
||||
} from "@/api/quality/qcTable";
|
||||
import {
|
||||
getProdLineList
|
||||
} from '@/api/plan/workorder'
|
||||
import * as echarts from "echarts";
|
||||
import moment from "moment/moment";
|
||||
export default {
|
||||
name: "qcTableDLReport",
|
||||
dicts: ["check_type"],
|
||||
data() {
|
||||
return {
|
||||
prodLineList:[],
|
||||
detailListLoading: true,
|
||||
refreshNewWorkerTable: true,
|
||||
// 选择领料单
|
||||
selectPrepare: [],
|
||||
// 打印
|
||||
formRef: "form",
|
||||
validateRules: [],
|
||||
printDialogVisible: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 表格数据
|
||||
tableList: [],
|
||||
showTitles:[],
|
||||
detailTitleCol2: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
checkNo: null,
|
||||
typeCode: null,
|
||||
checkType: null,
|
||||
orderNo: null,
|
||||
productId: null,
|
||||
materialCode: null,
|
||||
prodType: null,
|
||||
materialName: null,
|
||||
productSpc: null,
|
||||
wetDetailPlanId: null,
|
||||
incomeTime: null,
|
||||
incomeBatchNo: null,
|
||||
incomeTimeArray: [],
|
||||
ymArrayStart: null,
|
||||
ymArrayEnd: null,
|
||||
},
|
||||
workCenterList: [],
|
||||
checkTypeList: [],
|
||||
projectNoOptions: [],
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {},
|
||||
openReport: false,
|
||||
titleReport: "工单报工详情",
|
||||
legenddata: [],
|
||||
seriesdata: [],
|
||||
xAxisdata: [],
|
||||
detailechartslist: [],
|
||||
titledata: "",
|
||||
};
|
||||
},
|
||||
created() {
|
||||
getProdLineList().then(response => {
|
||||
this.prodLineList = response
|
||||
})
|
||||
this.getDate();
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
//产品编码格式化
|
||||
productCodeFormate(row, column, cellValue) {
|
||||
return cellValue.slice(7, 18); //返回值
|
||||
},
|
||||
//订单编码格式化
|
||||
orderCodeFormate(row, column, cellValue) {
|
||||
if (cellValue != null) {
|
||||
return cellValue.slice(3, 18); //返回值
|
||||
}
|
||||
},
|
||||
/**获取默认查询时间段**/
|
||||
getDate() {
|
||||
let start = this.Fungetdate(0);
|
||||
let end = this.Fungetdate(0);
|
||||
this.queryParams.incomeTimeArray.push(start, end);
|
||||
},
|
||||
Fungetdate(num) {
|
||||
var dd = new Date();
|
||||
dd.setDate(dd.getDate() + num);
|
||||
var y = dd.getFullYear();
|
||||
var m = dd.getMonth() + 1; //获取当前月份的日期
|
||||
var d = dd.getDate();
|
||||
return y + "-" + m + "-" + d;
|
||||
},
|
||||
/**获取车间数据**/
|
||||
getWorkCenterList() {
|
||||
getWorkcenterList(this.queryParams).then((response) => {
|
||||
this.workCenterList = response;
|
||||
});
|
||||
},
|
||||
getCheckTypeList(val) {
|
||||
//获取检验节点
|
||||
getCheckTypeList(val).then((response) => {
|
||||
this.checkTypeList = response;
|
||||
});
|
||||
//获取统计单位
|
||||
getSupplierList(val).then((response) => {
|
||||
this.workCenterList = response;
|
||||
});
|
||||
},
|
||||
//获取定量检测项
|
||||
getProjectListFunc(val) {
|
||||
getProjectOptionList(val).then((response) => {
|
||||
this.projectNoOptions = response;
|
||||
});
|
||||
},
|
||||
indexMethod(index) {
|
||||
return index + 1;
|
||||
},
|
||||
/** 查询列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
|
||||
if (this.queryParams.incomeTimeArray.length > 0) {
|
||||
this.queryParams.ymArrayStart = moment(this.queryParams.incomeTimeArray[0]).format("YYYY-MM-DD");
|
||||
this.queryParams.ymArrayEnd = moment(this.queryParams.incomeTimeArray[1]).format("YYYY-MM-DD");
|
||||
}
|
||||
|
||||
getDLTableMXTitle(this.queryParams).then((response) => {
|
||||
this.showTitles = [];
|
||||
let col1 = response.titleCol1;
|
||||
if(col1 != null){
|
||||
for (let i = 1; i <= col1.length; i++) {
|
||||
var titleobj1 = {};
|
||||
titleobj1.id = "act" + i;
|
||||
titleobj1.titleName = col1[i-1];
|
||||
this.showTitles.push(titleobj1);
|
||||
}
|
||||
}
|
||||
getDLTableMXList(this.queryParams);
|
||||
});
|
||||
|
||||
getDLTableMXList(this.queryParams).then((response) => {
|
||||
this.tableList = response//.rows;
|
||||
//this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
//产品编码格式化
|
||||
productCodeFormate(row, column, cellValue){
|
||||
if(cellValue !=null){
|
||||
return cellValue.slice(7,18); //返回值
|
||||
}
|
||||
},
|
||||
//订单编码格式化
|
||||
orderCodeFormate(row, column, cellValue){
|
||||
if(cellValue !=null){
|
||||
return cellValue.slice(3,18); //返回值
|
||||
}
|
||||
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.openReport = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
prepareId: null,
|
||||
checkNo: null,
|
||||
workorderName: null,
|
||||
parentOrder: null,
|
||||
orderId: null,
|
||||
orderNo: null,
|
||||
productId: null,
|
||||
materialCode: null,
|
||||
prodType: null,
|
||||
materialName: null,
|
||||
productSpc: null,
|
||||
wetDetailPlanId: null,
|
||||
incomeTime: null,
|
||||
incomeBatchNo: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
factoryCode: null,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.getDate();
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.prepareId);
|
||||
this.single = selection.length !== 1;
|
||||
this.multiple = !selection.length;
|
||||
this.selectPrepare = selection;
|
||||
},
|
||||
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.prepareId != null) {
|
||||
updatePrepare(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addPrepare(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download(
|
||||
"quality/staticTable/exportDLTableMXList",
|
||||
{
|
||||
...this.queryParams,
|
||||
},
|
||||
`DLMxTable_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
},
|
||||
// 取消
|
||||
cancel() {
|
||||
this.open = false;
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.my-print-head {
|
||||
margin-top: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.my-print-nav {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.my-print-table {
|
||||
}
|
||||
.my-print-foot {
|
||||
margin-top: 20px;
|
||||
}
|
||||
#.el-table .cell {
|
||||
white-space: pre-line !important;
|
||||
}
|
||||
.el-table .cell.el-tooltip {
|
||||
white-space: pre-wrap; /*这是重点。文本换行*/
|
||||
}
|
||||
/deep/ .el-table__expand-icon {
|
||||
display: none;
|
||||
}
|
||||
.expandClass .el-table__expand-icon {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue