定制项目提交一波

This commit is contained in:
aixianling
2022-07-04 15:13:36 +08:00
parent 7cf7d41c23
commit f67bdea66f

View File

@@ -13,11 +13,18 @@
</ai-search-bar>
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
@getList="getTableData" :col-configs="colConfigs" :dict="dict">
<el-table-column label="打包进度" slot="process">
<template slot-scope="{row}">
<span v-if="row.count==0" v-text="getProcessMsg(row)"/>
<el-progress v-else :percentage="row.count"/>
</template>
</el-table-column>
<el-table-column slot="options" label="操作" fixed="right" align="center" width="300">
<template slot-scope="{row}">
<el-button type="text" @click="handleAdd(row.id)">编辑</el-button>
<el-button type="text" @click="handleAdd(row.id)">打包更新</el-button>
<el-button type="text" @click="handleDownload(row)">下载</el-button>
<el-button type="text" @click="handleUpdate(row)" v-if="row.count==0">打包更新</el-button>
<el-button type="text" @click="handleCancelUpdate(row)" v-else>停止</el-button>
<el-button type="text" @click="handleDownload(row)" v-if="row.dist">下载</el-button>
<el-button type="text" @click="handleDelete(row.id)">删除</el-button>
</template>
</el-table-column>
@@ -46,7 +53,9 @@ export default {
{prop: "version", label: "版本号", width: 120},
{prop: "customPath", label: "库项目根路径", width: 120},
{prop: "dist", label: "更新路径"},
{slot: 'process'},
],
timer: {}
}
},
methods: {
@@ -55,7 +64,7 @@ export default {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
this.tableData = res.data.records
this.tableData = res.data.records.map(e => ({...e, count: 0}))
this.page.total = res.data.total
}
})
@@ -95,9 +104,71 @@ export default {
}
})
},
handleUpdate(row) {
let {id} = row, {timer} = this
this.instance.post("/node/custom/getZip", null, {
params: {id}
}).then(res => {
if (res?.code == 0) {
row.count = 1
timer[id] = setInterval(() => {
if (row.count >= 100) {
clearInterval(timer[id])
row.count = 0
this.$message.error("打包失败!")
} else if (row.count % 2 == 0 && row.target) {
row.count++
} else this.getRowById(row).then(v => {
if (v.error) {
clearInterval(timer[id])
this.$message.error("打包失败!")
this.refreshRow(row, v)
row.count = 0
} else if (v.download) {
clearInterval(timer[id])
this.refreshRow(row, v)
row.count = 0
} else row.count++
})
}, 6000)
}
})
},
refreshRow(row, v) {
row.error = v.error
row.download = v.download
row.zipTime = v.zipTime
},
getProcessMsg(row) {
let time = row.zipTime ? this.$moment(row.download).diff(row.zipTime, 's', true) : ""
return row.error || (row.download ? `最近打包时间:${row.download}(用时:${time}秒)` :
row.zipTime ? `正在打包,开始于:${row.zipTime}` : `暂无打包`)
},
handleCancelUpdate(row) {
let {id} = row
return this.instance.post("/node/custom/cancelZip", null, {
params: {id}
}).then(res => {
if (res?.code == 0) {
clearInterval(this.timer[id])
row.count = 0
this.getRowById(row).then(v => this.refreshRow(row, v))
}
})
},
getRowById(id) {
return this.instance.post("/node/custom/detail", null, {
params: {id}
}).then(res => {
if (res?.data) return res.data
})
}
},
created() {
this.getTableData()
},
beforeDestroy() {
Object.values(this.timer).map(t => clearInterval(t))
}
}
</script>