2022-01-24 15:34:57 +08:00
|
|
|
<template>
|
|
|
|
<div class="px-24px h-44px flex-y-center">
|
|
|
|
<span class="mr-14px">
|
2022-03-05 01:55:21 +08:00
|
|
|
<icon-ant-design-enter-outlined class="icon text-20px p-2px mr-3px" />
|
2022-01-24 15:34:57 +08:00
|
|
|
确认
|
|
|
|
</span>
|
|
|
|
<span class="mr-14px">
|
2022-03-05 01:55:21 +08:00
|
|
|
<icon-mdi-arrow-up-thin class="icon text-20px p-2px mr-5px" />
|
|
|
|
<icon-mdi-arrow-down-thin class="icon text-20px p-2px mr-3px" />
|
2022-01-24 15:34:57 +08:00
|
|
|
切换
|
|
|
|
</span>
|
|
|
|
<span>
|
2022-03-05 01:55:21 +08:00
|
|
|
<icon-mdi-close class="icon text-20px p-2px mr-3px" />
|
2022-01-24 15:34:57 +08:00
|
|
|
关闭
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.icon {
|
|
|
|
box-shadow: inset 0 -2px #cdcde6, inset 0 0 1px 1px #fff, 0 1px 2px 1px #1e235a66;
|
|
|
|
}
|
|
|
|
</style>
|