blob: bcfc75635f52c2e1a2e3b9f0ae60d4773f6ce7ab [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<template>
<div>
<ul class="we-progress-toolbar">
<li
@click="openPanel('log')">
<Icon
type="md-list-box"
size="14"/>
<span class="v-toolbar-icon">{{ $t('message.common.log') }}</span>
<li
@click="openPanel('diagnosis')"
v-if="status === 'Running' && application ==='spark'">
<Icon
type="md-barcode"
size="14"/>
<span class="v-toolbar-icon">智能<br/>诊断</span>
</li>
</ul>
</div>
</template>
<script>
export default {
props: {
status: String,
application: String,
},
data() {
return {
};
},
methods: {
openPanel(type) {
this.$emit('open-panel', type);
},
},
};
</script>
<style lang="scss" scoped>
@import '@/common/style/variables.scss';
.we-progress-toolbar {
width: 40px;
height: 100%;
position: absolute;
margin-left: -40px;
padding-top: 10px;
background: #fff;
border-right: 1px solid #dcdee2;
li {
display: flex;
flex-direction: column;
align-items: center;
padding: 6px 2px;
cursor: pointer;
&:hover {
color: $primary-color;
}
}
}
</style>