vue 弹出自定义确认取消对话框使用createVNode, render

138 篇文章 1 订阅

1、首先创建conform.vue,其内容如下:

<template>
  <div class="xtx-confirm" :class="{fade}">
    <div class="wrapper" :class="{fade}">
      <div class="header">
        <h3>{{title}}</h3>
<!--        <a @click="cancel" href="JavaScript:;" class="iconfont icon-close-new">x</a>-->
        <a @click="cancel" href="JavaScript:;" >x</a>
      </div>
      <div class="body">
        <i class="iconfont icon-warning"></i>
        <span>{{text}}</span>
      </div>
      <div class="footer">
        <span @click="cancel" class="cancel">取消</span>
        <span @click="submit" class="submit">确认</span>
      </div>
    </div>
  </div>
</template>
<script setup>
import { onMounted, ref } from 'vue'

const props = defineProps({
  title: {
      type: String,
      default: '温馨提示'
    },
  text: {
    type: String,
    default: ''
  },
  // 传递函数进来
  cancelCallback: {
    type: Function
  },
  submitCallback: {
    type: Function
  }
});

// 对话框默认隐藏
const fade = ref(false)
// 组件渲染完毕后
onMounted(() => {
  // 过渡效果需要在元素创建完毕后延时一会加上才会触发
  setTimeout(() => {
    fade.value = true
  }, 0)
})
// 取消
const cancel = () => {
  // 其他事情
  props.cancelCallback()
}
// 确认
const submit = () => {
  // 其他事情
  props.submitCallback()
}

// 下边这种不是setup的写法也可
// export default {
//   name: 'conform',
//   props: {
//     title: {
//       type: String,
//       default: '温馨提示'
//     },
//     text: {
//       type: String,
//       default: ''
//     },
//     cancelCallback: {
//       type: Function
//     },
//     submitCallback: {
//       type: Function
//     }
//   },
//   setup (props) {
//     // 对话框默认隐藏
//     const fade = ref(false)
//     // 组件渲染完毕后
//     onMounted(() => {
//       // 过渡效果需要在元素创建完毕后延时一会加上才会触发
//       setTimeout(() => {
//         fade.value = true
//       }, 0)
//     })
//     // 取消
//     const cancel = () => {
//       // 其他事情
//       props.cancelCallback()
//     }
//     // 确认
//     const submit = () => {
//       // 其他事情
//       props.submitCallback()
//     }
//     return { cancel, submit, fade }
//   }
// }
</script>
<style scoped lang="less">
.xtx-confirm {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8888;
  background: rgba(0,0,0,0);
  //background: rgba(0,0,0,.5);
  &.fade {
    transition: all 0.4s;
    background: rgba(0,0,0,.5);
  }
  .wrapper {
    width: 400px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    opacity: 0;
    //opacity: 1;
    &.fade {
      transition: all 0.4s;
      transform: translate(-50%,-50%);
      opacity: 1;
    }
    .header,.footer {
      height: 50px;
      line-height: 50px;
      padding: 0 20px;
    }
    .body {
      padding: 20px 40px;
      font-size: 16px;
      .icon-warning {
        color: red;
        margin-right: 3px;
        font-size: 16px;
      }
    }
    .footer {
      text-align: right;
      cursor: pointer;
      .cancel{
        margin-right: 20px;
        cursor: pointer;
      }
      .submit{
        cursor: pointer;
      }
      //.xtx-button {
      //  margin-left: 20px;
      //}
    }
    .header {
      position: relative;
      h3 {
        font-weight: normal;
        font-size: 18px;
      }
      a {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 20px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        color: #999;
        &:hover {
          color: #666;
        }
      }
    }
  }
}
</style>

2、编写conform.js其内容如下:

import { createVNode, render } from 'vue'
import conform from './components/conform.vue'

// 准备一个DOM
const div = document.createElement('div')
// div.setAttribute('class', 'xtx-confirm-container')
document.body.appendChild(div)

// 返回的是promise对象,点取消销毁组件,点确认销毁组件
export default ({ title, text }) => {
    // 1. 导入被创建的组件
    // 2. 使用createVNode创建虚拟节点
    // 3. 准备一个dom容器装载组件
    // 4. 使用render函数渲染组件到容器
    return new Promise((resolve, reject) => {
        // 点击取消触发的函数
        const cancelCallback = () => {
            render(null, div)
            // reject(new Error('点击取消'))
            reject("取消")
        }
        // 点击确认触发的函数
        const submitCallback = () => {
            render(null, div)
            resolve('确认')
        }
        //  不光传递字段,还可以传递函数
        const vn = createVNode(conform, { title, text, cancelCallback, submitCallback })
        render(vn, div)
    })
}

3、在app.vue中使用,其内容如下:

<template>
  <span @click="sure">点击弹出遮罩/确认按钮</span>
</template>

<script setup>
import Conform from "@/conform";
// import {ref} from "vue";
const sure = () => {
  Conform({text:"确认删除吗?"}).then((e)=>{console.log(e)}).catch((e)=>{console.log(e)})
}
</script>

<style scoped lang="less">
</style>

4、效果如下:

在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值