diff --git a/src/services/system/bizs.js b/src/services/system/bizs.js index 5444b97..8628f73 100644 --- a/src/services/system/bizs.js +++ b/src/services/system/bizs.js @@ -20,7 +20,7 @@ export function configBizPool(id, params) { return request.post(`${baseUrl}/${id}/pools`, wrapperParams(params)) } -// 获取单个业务的关联项目 +// 获取单个业务的关联应用系统 export function getProjectByBizList(id) { return request.get(`${baseUrl}/${id}/projects`) } diff --git a/src/views/resource-apply/components/user.vue b/src/views/resource-apply/components/user.vue index a969c87..3e306bd 100644 --- a/src/views/resource-apply/components/user.vue +++ b/src/views/resource-apply/components/user.vue @@ -19,7 +19,7 @@ - + @@ -119,7 +119,7 @@ export default { }) }, async getProjectName(projectId) { - // 未选择项目情况 + // 未选择应用系统情况 if (!projectId) return; const res = await getProjectDetailInfo(projectId); if (res.success) { diff --git a/src/views/task/graph/mixins/show.js b/src/views/task/graph/mixins/show.js index 30c24e3..8a9c9a6 100644 --- a/src/views/task/graph/mixins/show.js +++ b/src/views/task/graph/mixins/show.js @@ -4,7 +4,7 @@ export default { isPreview: this.$route.name.indexOf('Preview') > -1, // 详情预览 isTemplate: this.$route.name.indexOf('Tpl') > -1, // 模板下不显示目标机器 isTaskInstance: this.$route.name.indexOf('Instance') > -1, - isConsole: this.$route.name.indexOf('Service') > -1, // 自服务界面隐藏项目 + isConsole: this.$route.name.indexOf('Service') > -1, // 自服务界面隐藏应用系统 isHistoryDetail: this.$route.name.indexOf('History') > -1, // 执行历史的详情 serverCount: {} }