2022-01-24 15:34:57 +08:00
|
|
|
<template>
|
|
|
|
<div class="px-24px h-44px flex-y-center">
|
2022-06-17 11:39:38 +08:00
|
|
|
<span class="mr-14px flex-y-center">
|
2022-08-03 22:34:59 +08:00
|
|
|
<icon-mdi-keyboard-return class="icon text-20px p-2px mr-6px" />
|
2022-06-17 11:39:38 +08:00
|
|
|
<span>确认</span>
|
2022-01-24 15:34:57 +08:00
|
|
|
</span>
|
2022-06-17 11:39:38 +08:00
|
|
|
<span class="mr-14px flex-y-center">
|
2022-03-05 01:55:21 +08:00
|
|
|
<icon-mdi-arrow-up-thin class="icon text-20px p-2px mr-5px" />
|
2022-06-17 11:39:38 +08:00
|
|
|
<icon-mdi-arrow-down-thin class="icon text-20px p-2px mr-6px" />
|
|
|
|
<span>切换</span>
|
2022-01-24 15:34:57 +08:00
|
|
|
</span>
|
2022-06-17 11:39:38 +08:00
|
|
|
<span class="flex-y-center">
|
2022-08-03 22:34:59 +08:00
|
|
|
<icon-mdi-keyboard-esc class="icon text-20px p-2px mr-6px" />
|
2022-06-17 11:39:38 +08:00
|
|
|
<span>关闭</span>
|
2022-01-24 15:34:57 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-07-10 14:02:00 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
defineOptions({ name: 'SearchFooter' });
|
|
|
|
</script>
|
2022-05-28 12:30:17 +08:00
|
|
|
|
2022-01-24 15:34:57 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.icon {
|
|
|
|
box-shadow: inset 0 -2px #cdcde6, inset 0 0 1px 1px #fff, 0 1px 2px 1px #1e235a66;
|
|
|
|
}
|
|
|
|
</style>
|