fix
Showing
3 changed files
with
6 additions
and
4 deletions
| ... | @@ -149,8 +149,8 @@ header { | ... | @@ -149,8 +149,8 @@ header { |
| 149 | background-color: inherit; | 149 | background-color: inherit; |
| 150 | 150 | ||
| 151 | .logo { | 151 | .logo { |
| 152 | width: auto; | 152 | width: 180px; |
| 153 | height: 30px; | 153 | height: 48px; |
| 154 | } | 154 | } |
| 155 | 155 | ||
| 156 | span { | 156 | span { |
| ... | @@ -278,5 +278,4 @@ header { | ... | @@ -278,5 +278,4 @@ header { |
| 278 | height: 18px; | 278 | height: 18px; |
| 279 | } | 279 | } |
| 280 | } | 280 | } |
| 281 | |||
| 282 | </style> | 281 | </style> | ... | ... |
| ... | @@ -44,7 +44,10 @@ const CgDirTreeList = ref(); | ... | @@ -44,7 +44,10 @@ const CgDirTreeList = ref(); |
| 44 | const getCgDirTreeData = async () => { | 44 | const getCgDirTreeData = async () => { |
| 45 | treeInfo.value.loading = true; | 45 | treeInfo.value.loading = true; |
| 46 | const params = { | 46 | const params = { |
| 47 | execGuid: execGuidInfo.value?.execGuid | 47 | execGuid: execGuidInfo.value.execGuid |
| 48 | } | ||
| 49 | if (!execGuidInfo.value.execGuid) { | ||
| 50 | return; | ||
| 48 | } | 51 | } |
| 49 | const res: any = await getTaskExeTreeList(params); | 52 | const res: any = await getTaskExeTreeList(params); |
| 50 | if (res.code == proxy.$passCode) { | 53 | if (res.code == proxy.$passCode) { | ... | ... |
-
Please register or sign in to post a comment