From e96d255e76e86337825486fc89e2743aadcbdc27 Mon Sep 17 00:00:00 2001 From: xuyiming Date: Thu, 16 Jul 2020 14:53:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E7=94=A8=E6=9E=84=E5=BB=BAfixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/workbench/app_build.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/workbench/app_build.vue b/src/pages/workbench/app_build.vue index 232b5d1..5de167b 100644 --- a/src/pages/workbench/app_build.vue +++ b/src/pages/workbench/app_build.vue @@ -622,6 +622,14 @@ export default { this.getTypes(); this.getOrgs(); + this.$api.user.getNowUser().then(({ data }) => { + if (data.success == 1) { + this.app_info.org = data.data.department_id; + } else { + console.log(data.errMsg); + } + }); + this.image_headers = [ { label: "镜像名称", -- 2.26.0