修复打包的问题

This commit is contained in:
aixianling
2023-02-16 17:30:50 +08:00
parent 31e79f88a3
commit 4c080b7b19

View File

@@ -149,9 +149,9 @@ export default {
this.ws = new WebSocket(`ws://192.168.1.87:12525/ws`)
this.ws.onopen = () => resolve()
this.ws.onmessage = res => {
if (this.$checkJson(res?.data)) {
const data = JSON.parse(res.data),
row = this.tableData.find(e => e.id == data?.row.id)
if (this.$checkJson(res)) {
const data = JSON.parse(res),
row = this.tableData.find(e => e.id == data?.row?.id)
if (data.code == '0') {
row.count = data.progress
if (row.count == 100) {