123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <template>
- <view class="fs-popover" :style="{ 'z-index': zIndex }">
- <view class="fs-popover-refer" @click="handleClickRefer"><slot name="refer"></slot></view>
- <view
- class="fs-popover-action"
- v-if="actionVisible"
- :class="['fs-popover-' + placement]"
- :style="{ 'z-index': zIndex }"
- @click="handleClose"
- >
- <view class="fs-popover-arrow"></view>
- <slot>
- <view
- class="fs-popover-action-item line1"
- :class="{ 'fs-popover-active': item[valueKey] && item[valueKey] === modelValue[valueKey] }"
- v-for="(item, index) in actions"
- :key="index"
- @click="handleClickAction(item)"
- >
- {{ item.text }}
- </view>
- </slot>
- </view>
- <fs-mask v-model="actionVisible" :z-index="1" bgColor="rgba(0,0,0,0)"></fs-mask>
- </view>
- </template>
- <script>
- /**
- * 气泡弹出层组件
- * @description 气泡弹出层组件
- * @property {String} valueKey 作为 value 唯一标识的键名
- * @property {Array} actions 选项列表
- * @property {String} placement = [top | top-start | top-end | bottom | bottom-start | bottom-end,left | left-start | left-end,right | right-start | right-end] 弹出位置
- * @property {String} bgColor 背景色
- * @property {String} textColor 文字颜色
- * @property {String} activeColor 文字选中颜色
- * @property {String} borderColor 边框颜色
- * @property {String} width 气泡弹出层宽度
- * @property {String} actionWidth 选项列表宽度
- */
- export default {
- name: 'fs-popover'
- }
- </script>
- <script setup>
- import { ref, onMounted, watch } from 'vue'
- import utils from '@/utils/utils'
- const props = defineProps({
- modelValue: [Object],
- valueKey: {
- type: String,
- default: 'id'
- },
- placement: {
- type: String,
- default: 'bottom',
- validator(value) {
- return [
- 'top',
- 'top-start',
- 'top-end',
- 'bottom',
- 'bottom-start',
- 'bottom-end',
- 'left',
- 'left-start',
- 'left-end',
- 'right',
- 'right-start',
- 'right-end'
- ].includes(value)
- }
- },
- actions: Array,
- bgColor: {
- type: String,
- default: '#fff'
- },
- textColor: {
- type: String,
- default: '#666'
- },
- activeColor: {
- type: String,
- default: '#165DFF'
- },
- borderColor: {
- type: String,
- default: '#E8EAF2'
- },
- width: {
- type: String,
- default: 'auto'
- },
- actionWidth: {
- type: String,
- default: 'auto'
- }
- })
- const emits = defineEmits(['clickAction', 'visibleChange', 'update:modelValue'])
- const uuid = utils.uuid()
- const actionVisible = ref(false)
- const handleClickRefer = () => {
- uni.$emit('popoverClose', { uuid: uuid })
- actionVisible.value = !actionVisible.value
- }
- watch(actionVisible, () => {
- emits('visibleChange')
- })
- const handleClickAction = item => {
- emits('update:modelValue', item)
- emits('clickAction', item)
- }
- const handleClose = () => {
- actionVisible.value = false
- }
- const zIndex = ref(10)
- uni.$on('popoverClose', res => {
- if (uuid !== res.uuid) {
- zIndex.value = 10
- handleClose()
- } else {
- zIndex.value = 20
- }
- })
- defineExpose({
- handleClose
- })
- </script>
- <style lang="scss" scoped>
- $margin: 20rpx;
- $arrowOffset: 30rpx;
- $arrowSize: 24rpx;
- .fs-popover {
- position: relative;
- display: inline-block;
- width: v-bind(width);
- &-action {
- position: absolute;
- min-width: 260rpx;
- max-width: 100%;
- width: v-bind(actionWidth);
- background-color: v-bind(bgColor);
- transition: opacity 0.15s, transform 0.15s;
- border-radius: 12rpx;
- padding: 0 30rpx;
- color: v-bind(textColor);
- border: 2rpx solid v-bind(borderColor);
- &-item {
- padding: 20rpx;
- & + & {
- border-top: 2rpx solid v-bind(borderColor);
- }
- }
- }
- &-active {
- color: v-bind(activeColor);
- }
- &-arrow {
- position: absolute;
- width: $arrowSize;
- height: $arrowSize;
- transform: rotate(45deg);
- z-index: 1000;
- background-color: v-bind(bgColor);
- border: 2rpx solid transparent;
- margin-top: -$arrowSize / 2;
- margin-left: -$arrowSize / 2;
- }
- &-top {
- left: 50%;
- bottom: 100%;
- transform: translateX(-50%);
- margin-bottom: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- bottom: -$arrowSize / 2;
- left: 50%;
- }
- }
- &-top-start {
- left: 0;
- bottom: 100%;
- margin-bottom: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- bottom: -$arrowSize / 2;
- left: $arrowOffset;
- margin-left: 0;
- }
- }
- &-top-end {
- right: 0;
- bottom: 100%;
- margin-bottom: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- bottom: -$arrowSize / 2;
- right: $arrowOffset;
- margin-left: 0;
- }
- }
- &-bottom {
- left: 50%;
- top: 100%;
- transform: translateX(-50%);
- margin-top: $margin;
- .fs-popover-arrow {
- border-top-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- top: 0;
- left: 50%;
- }
- }
- &-bottom-start {
- left: 0;
- top: 100%;
- margin-top: $margin;
- .fs-popover-arrow {
- border-top-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- top: 0;
- left: $arrowOffset;
- margin-left: 0;
- }
- }
- &-bottom-end {
- right: 0;
- top: 100%;
- margin-top: $margin;
- .fs-popover-arrow {
- border-top-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- top: 0;
- right: $arrowOffset;
- margin-left: 0;
- }
- }
- &-left {
- left: -$margin;
- top: 50%;
- transform: translate(-100%, -50%);
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- top: 50%;
- right: -$arrowSize / 2;
- transform: rotate(-45deg);
- }
- }
- &-left-start {
- left: -$margin;
- top: 0;
- transform: translateX(-100%);
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- top: $arrowOffset;
- right: -$arrowSize / 2;
- transform: rotate(-45deg);
- margin-top: 0;
- }
- }
- &-left-end {
- left: -$margin;
- bottom: 0;
- transform: translateX(-100%);
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-right-color: v-bind(borderColor);
- bottom: $arrowOffset;
- right: -$arrowSize / 2;
- transform: rotate(-45deg);
- margin-top: 0;
- }
- }
- &-right {
- left: 100%;
- top: 50%;
- transform: translateY(-50%);
- margin-left: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- top: 50%;
- left: 0;
- }
- }
- &-right-start {
- left: 100%;
- top: 0;
- margin-left: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- top: $arrowOffset;
- left: 0;
- margin-top: 0;
- }
- }
- &-right-end {
- left: 100%;
- bottom: 0;
- margin-left: $margin;
- .fs-popover-arrow {
- border-bottom-color: v-bind(borderColor);
- border-left-color: v-bind(borderColor);
- left: 0;
- bottom: $arrowOffset;
- margin-top: 0;
- }
- }
- }
- </style>
|