style: 历史列表操作菜单排版,颜色版上传/从收藏选择图片排版

This commit is contained in:
zhangyh
2025-09-25 17:03:52 +08:00
parent 396f29734c
commit 928db59edc
5 changed files with 29 additions and 27 deletions

View File

@@ -30,20 +30,14 @@
<div class="operate_list" v-if="column?.Operations">
<div
class="operate_item"
v-if="
record.process ==='SERIES_DESIGN' ||
record.process ==='SINGLE_DESIGN'
"
:class="{ 'operate_item_hidden': !(record.process ==='SERIES_DESIGN' || record.process ==='SINGLE_DESIGN') }"
@click="turnToDetail(record)"
>
{{ $t('HistoryPage.Detail') }}
</div>
<div
class="operate_item"
v-if="
record.process ==='SERIES_DESIGN' ||
record.process ==='SINGLE_DESIGN'
"
:class="{ 'operate_item_hidden': !(record.process ==='SERIES_DESIGN' || record.process ==='SINGLE_DESIGN') }"
@click="renameCollection(record, index)"
>
{{ $t('LibraryPage.Rename') }}
@@ -725,6 +719,11 @@ export default defineComponent({
font-weight: 400;
color: #007ee5;
cursor: pointer;
&.operate_item_hidden {
visibility: hidden;
pointer-events: none;
}
}
}
}