123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <template>
- <view v-if="showPopup" class="uni-popup" @touchmove.stop.prevent="clear">
- <uni-transition :mode-class="['fade']" :styles="maskClass" :show="showTrans" @click="onTap" />
- <uni-transition :mode-class="ani" :styles="transClass" :show="showTrans" @click="onTap">
- <view class="uni-popup__wrapper-box" @click.stop="clear">
- <view class="uni-popup_mask">
- <view class="popup_text" @click="onTap">
- <image src="/static/img/img31.jpg"></image>
- <view class="text">{{illustrate}}</view>
- </view>
- </view>
- </view>
- </uni-transition>
- </view>
- </template>
- <script>
- import uniTransition from '../uni-transition/uni-transition.vue'
- export default {
- name: 'Popup',
- components: {
- uniTransition
- },
- props: {
- // 开启动画
- animation: {
- type: Boolean,
- default: true
- },
- // 弹出层类型,可选值,top: 顶部弹出层;bottom:底部弹出层;center:全屏弹出层
- type: {
- type: String,
- default: 'center'
- },
- // maskClick
- maskClick: {
- type: Boolean,
- default: true
- },
- },
- data() {
- return {
- ani: [],
- showPopup: false,
- illustrate:'',
- showTrans: false,
- maskClass: {
- 'position': 'fixed',
- 'bottom': 0,
- 'top': 0,
- 'left': 0,
- 'right': 0,
- 'backgroundColor': 'rgba(0, 0, 0, 0.4)'
- },
- transClass: {
- 'position': 'fixed',
- 'left': 0,
- 'right': 0,
- }
- }
- },
- watch: {
- type: {
- handler: function(newVal) {
- switch (this.type) {
- case 'top':
- this.ani = ['slide-top']
- this.transClass = {
- 'position': 'fixed',
- 'left': 0,
- 'right': 0,
- }
- break
- case 'bottom':
- this.ani = ['slide-bottom']
- this.transClass = {
- 'position': 'fixed',
- 'left': 0,
- 'right': 0,
- 'bottom': 0
- }
- break
- case 'center':
- this.ani = ['zoom-out', 'fade']
- this.transClass = {
- 'position': 'fixed',
- /* #ifndef APP-NVUE */
- 'display': 'flex',
- 'flexDirection': 'column',
- /* #endif */
- 'bottom': 0,
- 'left': 0,
- 'right': 0,
- 'top': 0,
- 'justifyContent': 'center',
- 'alignItems': 'center'
- }
- break
- }
- },
- immediate: true
- }
- },
- created() {},
- methods: {
-
- clear(e) {
- // TODO nvue 取消冒泡
- // console.log("取消冒泡")
- e.stopPropagation()
- },
- open(item) {
- console.log(item,55)
- this.illustrate = item;
- this.showPopup = true
- this.$nextTick(() => {
- setTimeout(() => {
- this.showTrans = true
- }, 50);
- })
- this.$emit('change', {
- show: true
- })
- },
- close(type) {
- // console.log("取消冒泡111")
- this.showTrans = false
- this.$nextTick(() => {
- clearTimeout(this.timer)
- this.timer = setTimeout(() => {
- this.$emit('change', {
- show: false
- })
- this.showPopup = false
- }, 300)
- })
- },
- onTap() {
- if (!this.maskClick) return
- this.close()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .uni-popup {
- position: fixed;
- /* #ifdef H5 */
- top: var(--window-top);
- /* #endif */
- /* #ifndef H5 */
- top: 0;
- /* #endif */
- bottom: 0;
- left: 0;
- right: 0;
- /* #ifndef APP-NVUE */
- z-index: 99;
- /* #endif */
- }
- .uni-popup__mask {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background-color: $uni-bg-color-mask;
- opacity: 0;
- }
- .mask-ani {
- transition-property: opacity;
- transition-duration: 0.2s;
- }
- .uni-top-mask {
- opacity: 1;
- }
- .uni-bottom-mask {
- opacity: 1;
- }
- .uni-center-mask {
- opacity: 1;
- }
- .uni-popup__wrapper {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- position: absolute;
- }
- .top {
- top: 0;
- left: 0;
- right: 0;
- transform: translateY(-500px);
- }
- .bottom {
- bottom: 0;
- left: 0;
- right: 0;
- transform: translateY(500px);
- }
- .center {
- /* #ifndef APP-NVUE */
- display: flex;
- flex-direction: column;
- /* #endif */
- bottom: 0;
- left: 0;
- right: 0;
- top: 0;
- justify-content: center;
- align-items: center;
- transform: scale(1.2);
- opacity: 0;
- }
- .uni-popup__wrapper-box {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- position: relative;
- }
- .content-ani {
- // transition: transform 0.3s;
- transition-property: transform, opacity;
- transition-duration: 0.2s;
- }
- .uni-top-content {
- transform: translateY(0);
- }
- .uni-bottom-content {
- transform: translateY(0);
- }
- .uni-center-content {
- transform: scale(1);
- opacity: 1;
- }
- .uni-popup_mask{
- padding: 55rpx 35rpx;
- // background: #FFFFFF;
- width: 100%;
- // border-radius: 15rpx;
- .popup_list{
- font-size: 45rpx;
- text-align: center;
- color: #2D2D2D;
- padding-bottom: 55rpx;
- // font-weight: 800;
- }
- .popup_text{
- font-size: 45rpx !important;
- color: #FFFFFF;
- background: #FFFFFF;
- padding-bottom: 25rpx;
- text-align: left;
- border-radius: 15rpx;
- width: 600rpx;
- .text{
- padding: 0rpx 45rpx;
- font-size: 28rpx;
- overflow: auto;
- color: #333;
- margin-top: .58rem;
- line-height: 1.5;
- height: 500rpx;
-
- }
- image{
- width: 100%;
- height: 300rpx;
- border-radius: 15rpx;
- }
- .popup_image{
- width: 40rpx;
- height: 40rpx;
- margin-right: 25rpx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- }
- .popup_button{
- margin-top: 35rpx;
- .button_action{
- color: #BC253A;
- border: 2rpx solid #BC253A;
- width: 250rpx;
- text-align: center;
- margin-right: 25rpx;
- padding: 15rpx 0rpx;
- border-radius: 15rpx;
- }
- .submit{
- background: #BC253A !important;
- color: #FFFFFF !important;
- }
- }
- }
- </style>
|