mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-23 23:39:47 +08:00
37 lines
951 B
Vue
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>
|