修复打包显示进度的问题

This commit is contained in:
aixianling
2023-02-17 11:48:54 +08:00
parent 01bb09da30
commit 8e293e0d9b

View File

@@ -127,13 +127,6 @@ export default {
let {id} = row
this.initWs().then(() => this.ws.send(JSON.stringify({action: "/custom/getZip", cid: id})))
},
getRowById(id) {
return this.instance.post("/node/custom/detail", null, {
params: {id}
}).then(res => {
if (res?.data) return res.data
})
},
handleNotice(id) {
this.instance.post("/node/custom/webhook", null, {
params: {id}
@@ -150,7 +143,7 @@ export default {
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)
row = this.tableData.find(e => e.id == data?.id)
if (data.code == '0') {
row.count = data.progress
if (row.count == 100) {