Files
ruoyi-plus-soybean/src/layouts/modules/global-search/components/search-footer.vue
2024-03-24 03:02:08 +08:00

37 lines
951 B
Vue

<script lang="ts" setup>
import { $t } from '@/locales';
defineOptions({ name: 'SearchFooter' });
</script>
<template>
<div class="h-44px flex-y-center gap-14px px-24px">
<span class="flex-y-center">
<icon-mdi-keyboard-return class="operate-shadow operate-item" />
<span>{{ $t('common.confirm') }}</span>
</span>
<span class="flex-y-center">
<icon-mdi-arrow-up-thin class="operate-shadow operate-item" />
<icon-mdi-arrow-down-thin class="operate-shadow operate-item" />
<span>{{ $t('common.switch') }}</span>
</span>
<span class="flex-y-center">
<icon-mdi-keyboard-esc class="operate-shadow operate-item" />
<span>{{ $t('common.close') }}</span>
</span>
</div>
</template>
<style lang="scss" scoped>
.operate-shadow {
box-shadow:
inset 0 -2px #cdcde6,
inset 0 0 1px 1px #fff,
0 1px 2px 1px #1e235a66;
}
.operate-item {
--uno: mr-6px p-2px text-20px;
}
</style>