Files
FirstUI-vue/components/firstui/fui-landscape/fui-landscape.vue
2023-08-17 21:28:49 +08:00

246 lines
4.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号18 614 07 254 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-landscape__wrap"
:class="{'fui-landscape__fixed':!absolute,'fui-landscape__absolute':absolute,'fui-landscape__show':isShow}"
:style="{background:maskBackground,zIndex:zIndex}" v-if="isShow || !isNvue" @tap.stop="closeWin"
ref="fui_landscape_ani">
<view class="fui-landscape__inner">
<slot></slot>
<view class="fui-landscape__icon"
:class="{'fui-landscape__icon-rt':position==2,'fui-landscape__icon-def':position==3}" :style="getStyles"
v-if="closable">
<view @tap.stop="close">
<icon :type="type" :size="size" :color="color"></icon>
</view>
</view>
</view>
</view>
</template>
<script>
// #ifdef APP-NVUE
const animation = uni.requireNativePlugin('animation');
// #endif
export default {
name: "fui-landscape",
emits: ['close'],
props: {
show: {
type: Boolean,
default: false
},
closable: {
type: Boolean,
default: true
},
type: {
type: String,
default: 'cancel'
},
color: {
type: String,
default: '#fff'
},
size: {
type: [Number, String],
default: 28
},
position: {
type: [Number, String],
default: 3
},
distance: {
type: [Number, String],
default: 120
},
absolute: {
type: Boolean,
default: false
},
maskClosable: {
type: Boolean,
default: false
},
maskBackground: {
type: String,
default: 'rgba(0,0,0,.6)'
},
zIndex: {
type: Number,
default: 996
},
param: {
type: [Number, String],
default: 0
}
},
computed: {
getStyles() {
let distance = Math.abs(Number(this.distance))
let styles = `bottom: -${distance}rpx;`;
// #ifdef APP-NVUE
styles = `bottom: 0rpx;`;
// #endif
if (this.position != 3) {
styles = `top: -${distance}rpx;`;
// #ifdef APP-NVUE
styles = `top: 0rpx;`;
// #endif
}
return styles
}
},
data() {
let isNvue = false;
// #ifdef APP-NVUE
isNvue = true;
// #endif
return {
isShow: false,
src: '',
text: '',
isNvue: isNvue
}
},
watch: {
show: {
handler(newVal) {
if (newVal) {
this.open();
} else {
// #ifndef APP-NVUE
this.isShow = false
// #endif
// #ifdef APP-NVUE
this._animation(false);
// #endif
}
},
immediate: true
}
},
mounted() {
if (this.show) {
this.open()
}
},
methods: {
// #ifdef APP-NVUE
_animation(type) {
if (!this.$refs['fui_landscape_ani']) return;
animation.transition(
this.$refs['fui_landscape_ani'].ref, {
styles: {
opacity: type ? 1 : 0
},
duration: 250, //ms
timingFunction: 'ease-in',
needLayout: false,
delay: 0 //ms
},
() => {
if (!type) {
this.isShow = false
}
}
);
},
// #endif
closeWin(e) {
if (!this.maskClosable) return;
this.close(e)
},
open() {
this.isShow = true;
// #ifdef APP-NVUE
this.$nextTick(() => {
setTimeout(() => {
this._animation(true);
}, 50);
});
// #endif
},
close(e) {
// #ifdef APP-NVUE
e && e.stopPropagation();
// #endif
this.$emit('close', {
param: this.param
});
}
}
}
</script>
<style scoped>
.fui-landscape__wrap {
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 1002;
/* #ifndef APP-NVUE */
display: flex;
transition: all ease-in .25s;
transform: scale3d(1, 1, 0);
visibility: hidden;
/* #endif */
opacity: 0;
align-items: center;
justify-content: center;
}
.fui-landscape__fixed {
position: fixed;
}
.fui-landscape__absolute {
position: absolute;
}
/* #ifndef APP-NVUE */
.fui-landscape__show {
opacity: 1;
transform: scale3d(1, 1, 1);
visibility: visible;
}
/* #endif */
.fui-landscape__inner {
/* #ifndef APP-NVUE */
display: flex;
box-sizing: border-box;
/* #endif */
align-items: center;
justify-content: center;
flex-direction: column;
position: relative;
/* #ifdef APP-NVUE */
padding: 40px 0;
/* #endif */
}
.fui-landscape__icon {
position: absolute;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
left: 0;
right: 0;
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
justify-content: flex-start;
flex-direction: row;
}
.fui-landscape__icon-rt {
justify-content: flex-end !important;
}
.fui-landscape__icon-def {
justify-content: center !important;
}
</style>