diff --git a/project/oms/apps/AppDeploy/AppDeploy.vue b/project/oms/apps/AppDeploy/AppDeploy.vue
index 1f639e46..cadff14d 100644
--- a/project/oms/apps/AppDeploy/AppDeploy.vue
+++ b/project/oms/apps/AppDeploy/AppDeploy.vue
@@ -7,6 +7,10 @@
增加
+
+
+
@@ -87,7 +91,19 @@ export default {
})
},
handleDownload(row) {
+ let loading = this.$loading({
+ lock: true, text: "正在打包文件...",
+ spinner: 'el-icon-loading',
+ background: 'rgba(0, 0, 0, 0.7)'
+ }), {id} = row
+ this.instance.post("/node/autodeploy/getZip", null, {
+ params: {id}
+ }).then(res => {
+ loading.close()
+ if (res?.code == 0) {
+ }
+ })
},
handleEdit(row) {
this.form = JSON.parse(JSON.stringify(row))