diff --git a/project/oms/apps/AppDeploy/AppDeploy.vue b/project/oms/apps/AppDeploy/AppDeploy.vue index 4325be37..a5e7c6af 100644 --- a/project/oms/apps/AppDeploy/AppDeploy.vue +++ b/project/oms/apps/AppDeploy/AppDeploy.vue @@ -44,6 +44,9 @@ + + + @@ -53,6 +56,9 @@ + + + @@ -79,7 +85,8 @@ export default { return [ {prop: "libShell", label: "打包脚本", width: 100}, {prop: "updateShell", label: "更新脚本", width: 100}, - {prop: "target", label: "nginx地址", width: 100, isLine}, + {prop: "zipPath", label: "打包地址", width: 100}, + {prop: "target", label: "nginx地址", width: 100}, {prop: "webUrl", label: "项目地址", width: 100}, ] }, @@ -92,6 +99,7 @@ export default { colConfigs: [ {slot: "expand"}, {label: "项目/系统名称", prop: "name", width: 200}, + {label: "系统类型", prop: "type", dict: "systemType", width: 80}, {label: "项目地址", prop: "webUrl"}, {label: "nginx地址", prop: "target"}, {slot: "process"}, @@ -101,8 +109,6 @@ export default { form: {}, rules: { name: {required: true, message: "请输入项目/系统名称"}, - libShell: {required: true, message: "请输入 打包脚本"}, - updateShell: {required: true, message: "请输入 更新脚本"}, } } }, @@ -212,6 +218,7 @@ export default { } }, created() { + this.dict.load("systemType") this.getTableData() } }