This commit is contained in:
yanran200730
2023-02-17 13:55:56 +08:00

View File

@@ -39,7 +39,6 @@
</template>
<script>
import {resolve} from "../../../../../../dvcp_v2_wechat_app/dist/dev/mp-weixin/common/vendor";
export default {
name: "list",
@@ -128,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}
@@ -149,9 +141,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)) {
const data = JSON.parse(res),
row = this.tableData.find(e => e.id == data?.row?.id)
if (this.$checkJson(res?.data)) {
const data = JSON.parse(res.data),
row = this.tableData.find(e => e.id == data?.id)
if (data.code == '0') {
row.count = data.progress
if (row.count == 100) {