Files
dvcp_v2_wxcp_app/components/AiFixedBtn/AiFixedBtn.vue

37 lines
558 B
Vue
Raw Normal View History

2021-11-15 10:29:05 +08:00
<template>
<section class="AiFixedBtn">
<movable-area class="movableArea">
<movable-view direction="all" x="300" y="500" @tap.stop>
<slot/>
</movable-view>
</movable-area>
</section>
</template>
<script>
export default {
name: "AiFixedBtn"
}
</script>
<style lang="scss" scoped>
.AiFixedBtn {
}
.movableArea {
position: fixed;
left: 0;
top: 0;
2022-01-27 14:55:53 +08:00
width: 100vw;
height: 100vh;
2021-11-15 10:29:05 +08:00
pointer-events: none;
z-index: 999;
uni-movable-view {
pointer-events: auto;
width: auto;
height: auto;
}
}
</style>