<template>
|
<div class="app-container">
|
<el-row :gutter="5">
|
<el-col :span="7">
|
<el-card shadow="never">
|
<span class="head-font">工位编号:{{headContent.processesCode}}</span>
|
</el-card>
|
</el-col>
|
<el-col :span="7">
|
<el-card shadow="never">
|
<span class="head-font">工位名称:{{headContent.processesName}}</span>
|
</el-card>
|
</el-col>
|
<el-col :span="10">
|
<el-card shadow="never" body-style="padding: 10px;">
|
<span class="head-font">产品序列号:</span>
|
<el-input style="width: 50%;" v-model="headContent.sfcCode" placeholder="请输入内容"></el-input>
|
<!-- <el-button type="primary" id="print" v-print="'#printMe'">打印</el-button>-->
|
<el-button type="primary" id="print" v-print="'#printMe'" style="display: none;">打印</el-button>
|
<!-- <el-button id="print" @click="print1" type="primary">打印</el-button>-->
|
<el-button type="primary" @click="printBefore">打印</el-button>
|
<el-button @click="clearClick" type="danger">清除</el-button>
|
</el-card>
|
</el-col>
|
|
</el-row>
|
<el-row :gutter="5" style="margin-top: 5px">
|
<el-col :span="24">
|
<el-tabs type="border-card" style="height: 600px" v-model="activeName" @tab-click="changeMenu">
|
<el-tab-pane name="first">
|
<span slot="label"> <a class="el-icon-date"></a>首页</span>
|
<el-col :span="24">
|
<div>
|
<div id="printMe">
|
<offline-qualification-report :printParam="printParam"></offline-qualification-report>
|
</div>
|
</div>
|
</el-col>
|
</el-tab-pane>
|
</el-tabs>
|
</el-col>
|
</el-row>
|
</div>
|
</template>
|
<script>
|
import {getIpv4, listStationConf} from "@/api/main/sc/stationConf";
|
import {
|
noPageListFormulaChild,
|
workpieceRelease,
|
yzUpdateResults,
|
yzUpdateTighteningFormula
|
} from "@/api/main/bs/formulaChild/formulaChild";
|
import MySerialPort from "@/utils/MySerialPort";
|
import USBDevice from "@/utils/usb.json";
|
import {addPassingStationCollection} from "@/api/main/da/passingStationCollection/passingStationCollection";
|
import {
|
addTighteningParameters, enterWeighing, getPrintOfflineReportInfo, listParamCollection,
|
replaceAssemblyCode,
|
saveCampaignTimeParameters,
|
yzAddBasicParameters,
|
} from "@/api/main/da/paramCollection/paramCollection";
|
import QRCode from "qrcodejs2";
|
import OfflineQualificationReport from "@/views/components/offlineQualificationReport.vue";
|
import {listProductionOrde} from "@/api/main/om/productionOrde/productionOrde";
|
|
export default {
|
name: "stationTerminal",
|
components: {OfflineQualificationReport},
|
data() {
|
return {
|
printParam: {
|
|
},
|
weightValue: '',
|
showInput: true,
|
serialPortContent: '',
|
// 查询参数
|
formulaChildParams: {
|
pageNum: 1,
|
pageSize: 10,
|
productCode: null,
|
processesCode: null,
|
},
|
// 配方配置子信息表格数据
|
formulaChildList: [],
|
ipAddress: '',
|
imgSrc: '',
|
headContent: {
|
processesCode: 'OP520',
|
processesName: '成品下线',
|
sfcCode: '',
|
yzSfcCode: '',
|
},
|
workpieceInformation: {
|
workOrderNo: null,
|
productCode: null,
|
productModel: null,
|
productName: null,
|
beat: null,
|
},
|
// 查询参数
|
queryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
sfcCode: null,
|
},
|
// 查询参数
|
StationConfQueryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
ipAddress: null,
|
},
|
cakeLamp: {
|
plcState: 1, //plc
|
scannerState: 1, //扫码枪
|
InPlace: 0, //工件到位
|
scanFinish: 0,
|
startWork: 0,
|
release: 0 //允许放行
|
},
|
content: '',
|
activeName: 'first',
|
url: "ws://192.168.20.250:8080/websocket/message/",
|
message: "",
|
text_content: "",
|
ws: null,
|
inputValue: '9',
|
|
open1: false,
|
input: "",
|
keepReading: true,
|
form1: {
|
baudRate: "115200",
|
dataBits: "8",
|
stopBits: "1",
|
parity: "none",
|
flowControl: "none",
|
desc: "",
|
type: "1",
|
isShowHistory: false,
|
},
|
btnType: "primary",
|
btnText: "连接串口",
|
restaurants: [],
|
portsList: [],
|
isShowSendArea: false,
|
readType: 1,
|
title: "",
|
|
passingStationForm: {},
|
originalArray: [],
|
text1: '',
|
}
|
},
|
created() {
|
// this.initStation();
|
// this.getStationConfList();
|
// setTimeout(() => {
|
// this.connectWebsocket();
|
// }, 3000);
|
},
|
methods: {
|
serialLink() {
|
this.open1 = true
|
},
|
bindYzSfc(){
|
if(this.headContent.sfcCode!==""&&this.headContent.yzSfcCode!==""){
|
let param = {
|
sfcCode: this.headContent.sfcCode,
|
locationCode: this.headContent.processesCode,
|
yzSfcCode: this.headContent.yzSfcCode
|
}
|
this.$message('可以绑定!');
|
replaceAssemblyCode(param).then(response => {
|
|
});
|
}
|
},
|
|
serialPortMethod(value){
|
let formulaChildParams = {
|
scanBarcode: value,
|
sfcBarcode: this.headContent.sfcCode,
|
workOrderNo: this.workpieceInformation.workOrderNo,
|
productCode: "1P102S",
|
locationCode: this.headContent.processesCode,
|
collectionTime: new Date()
|
}
|
yzUpdateResults(formulaChildParams).then(response => {
|
this.getListFormulaChild()
|
});
|
},
|
rowStyle({ row }) {
|
if (row.results === 'OK') {
|
return 'background-color: PaleGreen';
|
} else if (row.results === 'NG') {
|
return 'background-color: LightSalmon';
|
}
|
return '';
|
},
|
/** 查询配方配置子信息列表 */
|
getListFormulaChild() {
|
this.formulaChildParams.productCode = "1P102S"
|
this.formulaChildParams.processesCode = this.headContent.processesCode
|
console.log(this.formulaChildParams)
|
noPageListFormulaChild(this.formulaChildParams).then(response => {
|
this.formulaChildList = response.rows;
|
if (this.formulaChildList.length >0){
|
let pos = 0
|
const tempArr = this.formulaChildList.filter(x=> 'OK' === x.results)
|
if (tempArr.length>0){
|
pos = tempArr.length
|
this.$nextTick(() => {
|
let temp33 = document.getElementsByClassName('el-table__row')
|
console.log('temp33',temp33)
|
console.log('len',temp33.item(pos))
|
if (temp33.length > 0){
|
console.log('1111111111111111')
|
let arr = temp33[pos-1]
|
console.log('srr',arr)
|
arr.scrollIntoView({ block: 'center' })
|
}
|
})
|
}
|
|
}
|
});
|
},
|
endClear(){
|
|
},
|
changeMenu(tab, event) {
|
console.log(tab, event);
|
},
|
clearClick(){
|
this.$message('这是一条清除消息提示');
|
this.headContent.sfcCode = null
|
},
|
scanCompleted(){
|
this.$message('扫码完成'+this.content);
|
this.headContent.sfcCode = this.content
|
this.queryParams.sfcCode = this.content
|
this.getList()
|
this.getListFormulaChild()
|
this.cakeLamp.scanFinish = 1
|
this.cakeLamp.startWork = 1
|
|
},
|
/** 查询工单列表 */
|
async getList() {
|
// this.getListFormulaChild()
|
// this.addOverStationCollection()
|
this.print1()
|
},
|
printBefore() {
|
if (this.headContent.sfcCode !== '') {
|
listProductionOrde({productNum: this.headContent.sfcCode}).then(response => {
|
let rowsData = response.rows[0];
|
if(rowsData){
|
getPrintOfflineReportInfo({productNum: this.headContent.sfcCode}).then(response => {
|
this.printParam = response.data
|
document.getElementById('print').click();
|
});
|
}else {
|
this.$message.error('系统没有此工单,请重新扫码!');
|
}
|
});
|
} else {
|
this.$message.error('请先扫码!');
|
}
|
},
|
|
// print1() {
|
// if(this.headContent.sfcCode !== ''){
|
// // 新开页面打印
|
// const value = 'Hello, Parent!';
|
// this.$emit('value-sent', value);
|
// let newStr = document.getElementById('printMe').innerHTML;
|
// let newWin = window.open('', '_blank');
|
// newWin.document.body.innerHTML = newStr;
|
// newWin.print();
|
// return;
|
// }else {
|
// this.$message.error('请先扫码');
|
// }
|
// },
|
/** 入站增加过站采集记录 **/
|
addOverStationCollection(){
|
this.passingStationForm = {
|
id: null,
|
// workOrderNo: this.workpieceInformation.workOrderNo,
|
productCode: "1P102S",
|
locationCode: this.headContent.processesCode,
|
// model: this.workpieceInformation.productModel,
|
productBarcode: this.headContent.sfcCode,
|
sfcCode: this.headContent.sfcCode,
|
inboundTime: new Date()
|
}
|
addPassingStationCollection(this.passingStationForm).then(response => {});
|
yzAddBasicParameters(this.passingStationForm).then(response => {});
|
},
|
initStation: async function () {
|
await getIpv4().then(response => {
|
this.StationConfQueryParams.ipAddress = response.msg
|
console.log('查询到本工位IP为' + this.StationConfQueryParams.ipAddress)
|
});
|
await listStationConf(this.StationConfQueryParams).then(response => {
|
let rows = response.rows[0]
|
if (response.rows.length === 0) {
|
// this.$message('该工位没有配置IP,请联系管理员配置IP');
|
return
|
}
|
this.headContent.processesName = rows.processesName
|
this.headContent.processesCode = rows.processesCode
|
console.log('设置工位编码' + this.headContent.processesCode)
|
|
});
|
this.conCom()
|
console.log('websocket连接工位为' + this.headContent.processesCode)
|
const wsuri = this.url + this.headContent.processesCode;
|
this.ws = new WebSocket(wsuri);
|
const self = this;
|
this.ws.onopen = function (event) {
|
this.$message('websocket连接成功!');
|
};
|
this.ws.onmessage = function (event) {
|
if (event.data === "print") {
|
self.$message('postman调用打印方法打印!');
|
// self.print1()
|
document.getElementById('print').click();
|
}else if (event.data === "IN") {
|
self.cakeLamp.InPlace = 1;
|
} else if (event.data === "IN0") {
|
self.cakeLamp.InPlace = 0;
|
} else if (event.data === "OUT") {
|
console.log("out")
|
|
const param = {
|
workOrderNo: self.workpieceInformation.workOrderNo,
|
productCode: "1P102S",
|
locationCode: self.headContent.processesCode,
|
productBarcode: self.headContent.sfcCode,
|
}
|
// saveCampaignTimeParameters(param).then(response => {});
|
// self.cakeLamp.release = 1;
|
workpieceRelease(param).then(response => {});
|
self.formulaChildList = [];
|
self.headContent.sfcCode = '';
|
console.log(self.formulaChildList)
|
} else if (event.data === "END") {
|
// const param = {
|
// workOrderNo: self.workpieceInformation.workOrderNo,
|
// productCode: self.workpieceInformation.productCode,
|
// locationCode: self.headContent.processesCode,
|
// productBarcode: self.headContent.sfcCode,
|
// }
|
// saveCampaignTimeParameters(param).then(response => {});
|
// self.endClear()
|
// workpieceRelease(param).then(response => {});
|
} else if (event.data.includes("[")) {
|
let formulaChilds = "";
|
self.formulaChildList.sort((a, b) => a.stepSort - b.stepSort);
|
self.formulaChildList
|
.filter((formulaChild) => formulaChild.operationType === '1');
|
for (let i = 0; i < self.formulaChildList.length; i++) {
|
let formulaChild = self.formulaChildList[i];
|
let results = formulaChild.results;
|
if (results === '' || results === null || results === 'NG') {
|
formulaChilds = formulaChild;
|
break;
|
}
|
}
|
const param = {
|
tightenTheArray: event.data,
|
paramCode: formulaChilds.paramCode,
|
// workOrderNo: self.workpieceInformation.workOrderNo,
|
productCode: "1P102S",
|
locationCode: self.headContent.processesCode,
|
productBarcode: self.headContent.sfcCode,
|
}
|
addTighteningParameters(param).then(response => {});
|
yzUpdateTighteningFormula(param).then(response => {
|
console.log(response.msg)
|
if(response.msg === "1"){
|
self.getListFormulaChild()
|
|
}else {
|
const param = {
|
workOrderNo: self.workpieceInformation.workOrderNo,
|
productCode: "1P102S",
|
locationCode: self.headContent.processesCode,
|
productBarcode: self.headContent.sfcCode,
|
}
|
saveCampaignTimeParameters(param).then(response => {});
|
workpieceRelease(param).then(response => {});
|
self.formulaChildList = [];
|
self.headContent.sfcCode = '';
|
}
|
});
|
}
|
};
|
},
|
|
|
|
//接受数据的回调
|
callBack(value) {
|
if (this.form1.isShowHistory) this.form1.desc = this.readLi().join("");
|
else {
|
const scanValue = this.myserialport.hex2atostr(value).replace(/[\r\n]/g, '');
|
console.log("串口收到数据-------------------"+scanValue)
|
this.test1()
|
this.test2()
|
this.text1 = scanValue
|
this.headContent.sfcCode = scanValue
|
// this.print1()
|
// setTimeout(() => {
|
// this.print()
|
// },50)
|
// this.getList()
|
|
}
|
},
|
clearHistory() {
|
this.form1.desc = "";
|
this.myserialport.state.readValue = [];
|
},
|
loadHistory() {
|
if (this.form1.isShowHistory) this.form1.desc = this.readLi().join("");
|
else {
|
let temp = this.readLi();
|
if (temp.length > 0) this.form1.desc = temp[temp.length - 1].join("");
|
}
|
},
|
readLi() {
|
let readType = this.readType;
|
return this.myserialport.state.readValue.map((items, index) => {
|
const item = items.value;
|
const type = items.type; // 1接收,2发送
|
let body = [];
|
if (item !== undefined) {
|
let strArr = [];
|
for (let hex of Array.from(item)) {
|
strArr.push(hex.toString(16).toLocaleUpperCase());
|
}
|
if (strArr.includes("D") && strArr.includes("A")) {
|
if (strArr.indexOf("A") - strArr.indexOf("D") === 1) {
|
strArr.splice(strArr.indexOf("D"), 1);
|
strArr.splice(strArr.indexOf("A"), 1, <br key={0} />);
|
}
|
}
|
strArr = strArr.map((item) => {
|
if (typeof item === "string") {
|
if (readType === 1) {
|
return this.myserialport.hex2a(parseInt(item, 16));
|
} else if (readType === 2) {
|
return item + " ";
|
}
|
}
|
return item;
|
});
|
if (typeof strArr[strArr.length - 1] === "string") {
|
strArr.push("\r\n");
|
}
|
body.push(strArr.join(""));
|
}
|
return body;
|
});
|
},
|
conCom(){
|
try {
|
this.myserialport.state.baudRate = this.form1.baudRate;
|
this.myserialport.state.dataBits = this.form1.dataBits;
|
this.myserialport.state.stopBits = this.form1.stopBits;
|
this.myserialport.state.parity = this.form1.parity;
|
this.myserialport.state.flowControl = this.form1.flowControl;
|
this.myserialport.openPort(0, true, this.callBack);
|
console.log(this.form1.port)
|
} catch (error) {
|
this.$message.error("串口连接失败!请检查串口是否已被占用");
|
}
|
if (this.myserialport.state.isOpen) {
|
this.$message.success("串口连接成功");
|
}
|
},
|
//连接
|
async connectBtn() {
|
if (this.btnType === "primary") {
|
try {
|
this.myserialport.state.baudRate = this.form1.baudRate;
|
this.myserialport.state.dataBits = this.form1.dataBits;
|
this.myserialport.state.stopBits = this.form1.stopBits;
|
this.myserialport.state.parity = this.form1.parity;
|
this.myserialport.state.flowControl = this.form1.flowControl;
|
await this.myserialport.openPort(this.form1.port, true, this.callBack);
|
console.log(this.form1.port)
|
} catch (error) {
|
this.$message.error("串口连接失败!请检查串口是否已被占用");
|
}
|
if (this.myserialport.state.isOpen) {
|
this.$message.success("串口连接成功");
|
this.open1 = false
|
this.btnType = "danger";
|
this.btnText = "关闭串口";
|
}
|
} else {
|
this.myserialport.openPort(this.form1.port, false, this.callBack);
|
this.$message.success("串口关闭成功");
|
this.btnType = "primary";
|
this.btnText = "连接串口";
|
}
|
},
|
//授权
|
async obtainAuthorization() {
|
if ("serial" in navigator) {
|
console.log("The Web Serial API is supported.");
|
if (!this.myserialport) this.myserialport = new MySerialPort();
|
try {
|
await this.myserialport.handleRequestPort();
|
this.$message.success("串口授权成功");
|
this.getPortInfo(this.myserialport.state.ports);
|
} catch (error) {
|
this.$message.warning("未选择新串口授权!");
|
}
|
} else {
|
this.$message.error(
|
"当前为HTTP模式或者浏览器版本过低,不支持网页连接串口"
|
);
|
}
|
},
|
//串口列表初始化
|
getPortInfo(portList) {
|
this.portsList = [];
|
portList.map((port, index) => {
|
const { usbProductId, usbVendorId } = port.getInfo();
|
if (usbProductId === undefined || usbVendorId === undefined) {
|
this.portsList.push({ label: "未知设备" + index, value: index });
|
} else {
|
const usbVendor = USBDevice.filter(
|
(item) => parseInt(item.vendor, 16) === usbVendorId
|
);
|
let usbProduct = [];
|
if (usbVendor.length === 1) {
|
usbProduct = usbVendor[0].devices.filter(
|
(item) => parseInt(item.devid, 16) === usbProductId
|
);
|
}
|
this.portsList.push({ label: usbProduct[0].devname, value: index });
|
}
|
});
|
},
|
// 发送
|
async sendCommon() {
|
if (this.myserialport.state.isOpen) {
|
if (this.form1.sendMsg.length !== 0) {
|
const writeType = this.form1.type;
|
let value = this.form1.sendMsg;
|
let arr = [];
|
if (writeType === 1) {
|
// ASCII
|
for (let i = 0; i < value.length; i++) {
|
arr.push(this.myserialport.a2hex(value[i]));
|
}
|
} else if (writeType === 2) {
|
// HEX
|
if (/^[0-9A-Fa-f]+$/.test(value) && value.length % 2 === 0) {
|
for (let i = 0; i < value.length; i = i + 2) {
|
arr.push(parseInt(value.substring(i, i + 2), 16));
|
}
|
} else {
|
this.$message.error("格式错误");
|
return;
|
}
|
}
|
this.myserialport.writeText(arr);
|
} else {
|
this.$message.warning("请输入发送的信息");
|
}
|
} else {
|
this.$message.warning("串口处于关闭状态,请连接串口");
|
}
|
},
|
async getPorts() {
|
await this.myserialport.getPorts();
|
this.getPortInfo(this.myserialport.state.ports);
|
},
|
querySearch(queryString, cb) {
|
var restaurants = this.restaurants;
|
var results = queryString
|
? restaurants.filter(this.createFilter(queryString))
|
: restaurants;
|
// 调用 callback 返回建议列表的数据
|
cb(results);
|
},
|
createFilter(queryString) {
|
return (restaurant) => {
|
return (
|
restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) ===
|
0
|
);
|
};
|
},
|
loadAll() {
|
return [
|
{ value: "110" },
|
{ value: "300" },
|
{ value: "600" },
|
{ value: "1200" },
|
{ value: "2400" },
|
{ value: "4800" },
|
{ value: "7200" },
|
{ value: "9600" },
|
{ value: "14400" },
|
{ value: "19200" },
|
{ value: "28800" },
|
{ value: "38400" },
|
{ value: "56000" },
|
{ value: "57600" },
|
{ value: "76800" },
|
{ value: "115200" },
|
{ value: "230400" },
|
{ value: "460800" },
|
];
|
},
|
}
|
}
|
|
</script>
|
|
<style scoped>
|
.div1, .div2 {
|
flex: 1; /* 两个div平分容器宽度 */
|
}
|
.span{
|
font-family: 'Microsoft YaHei', sans-serif;
|
}
|
.div2{
|
margin-left: 30px;
|
}
|
.bottom-card{
|
height: 600px;
|
}
|
.circle-button{
|
height: 30px;
|
width: 30px;
|
}
|
.circle-red {
|
background-color: #e01a4f;
|
}
|
.circle-green {
|
background-color: green;
|
}
|
.circle-green-animate {
|
background-color: green;
|
animation: circle-green-animate 2s infinite;
|
}
|
@keyframes circle-green-animate {
|
50% {
|
opacity: 0.6;
|
}
|
0% {
|
opacity: 0.2;
|
}
|
}
|
.head-font{
|
/*font-weight: bold;*/
|
/*font-size: 25px;*/
|
}
|
span{
|
font-size: 15px;
|
}
|
.el-table .warning-row {
|
background: oldlace;
|
}
|
|
.el-table .success-row {
|
background: #f0f9eb;
|
}
|
|
/*隐藏打印区域*/
|
/*#printMe {*/
|
/* display: none;*/
|
/*}*/
|
/*!*打印时显示打印区域*!*/
|
/*@media print {*/
|
/* #printMe {*/
|
/* display: block;*/
|
/* }*/
|
/*}*/
|
</style>
|