fix(仪表板): 次要按钮交互样式不对

This commit is contained in:
dataeaseShu 2024-02-27 16:18:00 +08:00
parent 873d00835e
commit e13c708655
3 changed files with 4 additions and 4 deletions

View File

@ -88,7 +88,7 @@ watch(
</el-popover>
</div>
<div class="canvas-opt-button">
<el-button v-if="!isDataEaseBi" @click="preview()">
<el-button secondary v-if="!isDataEaseBi" @click="preview()">
<template #icon>
<icon name="icon_pc_outlined"></icon>
</template>

View File

@ -1,5 +1,5 @@
<template>
<el-button ref="shareButtonRef" v-if="props.weight >= 7" v-click-outside="openShare">
<el-button secondary ref="shareButtonRef" v-if="props.weight >= 7" v-click-outside="openShare">
<template #icon>
<icon name="icon_share-label_outlined"></icon>
</template>

View File

@ -10,10 +10,10 @@
>
<el-row class="demonstration"> {{ template.title }} </el-row>
<el-row class="template-button" v-show="createAuth[template.templateType]">
<el-button size="mini" style="width: calc(50% - 18px)" @click="templateInnerPreview">{{
<el-button secondary style="width: calc(50% - 18px)" @click="templateInnerPreview">{{
t('visualization.preview')
}}</el-button>
<el-button size="mini" style="width: calc(50% - 18px)" type="primary" @click="apply">{{
<el-button style="width: calc(50% - 18px)" type="primary" @click="apply">{{
t('visualization.apply')
}}</el-button>
</el-row>