diff --git a/project/oms/apps/AppDeploy/AppDeploy.vue b/project/oms/apps/AppDeploy/AppDeploy.vue
index 89524868..0792da1e 100644
--- a/project/oms/apps/AppDeploy/AppDeploy.vue
+++ b/project/oms/apps/AppDeploy/AppDeploy.vue
@@ -24,24 +24,23 @@
编辑
删除
- 打包
+ 打包更新
下载
- 更新部署
-
-
+
+
-
-
+
+
-
-
+
+
@@ -72,9 +71,9 @@ export default {
tableData: [],
colConfigs: [
{label: "项目/系统名称", prop: "name", width: 200},
- {label: "git", render: (h, {row}) => h('p', {class: "textRight"}, row.git)},
- {label: "git分支", prop: "branch", width: 140},
- {label: "开发环境nginx", prop: "target"},
+ {label: "打包脚本", prop: "libShell"},
+ {label: "更新脚本", prop: "updateShell"},
+ {label: "nginx地址", prop: "target"},
{slot: "process"},
{slot: "options"}
],
@@ -82,8 +81,8 @@ export default {
form: {},
rules: {
name: {required: true, message: "请输入项目/系统名称"},
- git: {required: true, message: "请输入git"},
- branch: {required: true, message: "请输入 git分支"},
+ libShell: {required: true, message: "请输入 打包脚本"},
+ updateShell: {required: true, message: "请输入 更新脚本"},
}
}
},
@@ -145,16 +144,6 @@ export default {
}
})
},
- handleUpdateSystem(row) {
- let {id} = row
- return this.instance.post("/node/autodeploy/updateSystem", null, {
- params: {id}
- }).then(res => {
- if (res?.code == 0) {
-
- }
- })
- },
handleEdit(row) {
this.form = JSON.parse(JSON.stringify(row))
this.dialog = true