当前位置: 首页 > article >正文

uniapp + Vue3自定义封装弹窗组件

uniapp + Vue3自定义封装弹窗组件

需求背景

在uniapp项目中,有时候需要弹出一个自定义的弹窗组件,比如提示框、确认框、选择框等。

实现方案

1. 创建弹窗组件

首先,我们需要创建一个弹窗组件,比如my-dialog.vue

<script setup>
import { ref, defineProps, defineEmits, defineExpose } from 'vue'

// 定义组件名称
const component = {
  name: "yc-dialog"
}

// 定义组件的 props
const props = defineProps({
  title: { type: String, default: 'Title' },
  content: { type: String, default: 'Concent' },
  confirmText: { type: String, default: "Confirm" },
  cancelText: { type: String, default: 'Cancel' }
})

// 定义组件的 emits
const emit = defineEmits(['clickConfirm', 'clickCancel'])

// 是否显示弹窗
const isDialog = ref(false)

// 弹窗确认
const handleConfirm = () => {
  emit('clickConfirm')
}

// 弹窗取消
const handleCancel = () => {
  emit('clickCancel')
  isDialog.value = false
}

// 暴露 isDialog 变量
defineExpose({ isDialog })
</script>

<template>
  <!-- 自定义弹窗组件 -->
  <div class="my-dialog" v-if="isDialog">
    <div class="dialog-box">
      <div class="dialog-title">
        <text>{{ title }}</text>
      </div>
      <div class="dialog-content">
        <text>{{ content }}</text>
      </div>
      <div class="dialog-btns">
        <div class="btn-item" @click="handleConfirm">
          <text>{{ confirmText }}</text>
        </div>
        <div class="btn-item" @click="handleCancel">
          <text>{{ cancelText }}</text>
        </div>
      </div> 
    </div>
  </div>
</template>

<style scoped lang="scss">
// 定义弹窗背景颜色
$dialog-bgc: #F8F8F8;

.my-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  .dialog-box {
    width: 80%;
    height: 300rpx;
    margin: auto;
    background-color: $dialog-bgc;
    border-radius: 20rpx;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    line-height: 100rpx;
    
    .dialog-title {
      flex: 1;
      font-size: 40rpx;
      font-weight: 600;
      text-align: center;
    }

    .dialog-content {
      flex: 1;
      font-size: 35rpx;
      text-align: center;
      line-height: 60rpx;
    }

    .dialog-btns {
      flex: 1;
      display: flex;
      justify-content: space-around;

      .btn-item {
        width: 160rpx;
        height: 80rpx;
        line-height: 80rpx;
        text-align: center;
        border-radius: 12rpx;
        background-color: #409eff;
        color: #F8F8F8;
      }
      
      .btn-item:last-child {
        background-color: #fff;
        color: #409eff;
      }
    }
  }
}
</style>

2. 使用弹窗组件

然后,在需要弹出弹窗的页面,比如index.vue中,使用my-dialog.vue组件:

<template>
  <view>
    <button type="primary" @click="showDialog">弹出弹窗</button>
    <yc-dialog
      ref="dialogRef"
      :title="title"
      :content="content"
      :confirmText="confirmText"
      :cancelText="cancelText"
      @clickConfirm="handleConfirm"
      @clickCancel="handleCancel"
    />
    <view>
      <text>Hello World</text>
    </view>
  </view>
</template>


<script setup>
import { ref } from 'vue'
import YcDialog from './my-dialog.vue'

const dialogRef = ref(null)

const title = ref('弹窗标题')
const content = ref('弹窗内容')
const confirmText = ref('确认')
const cancelText = ref('取消')

// 显示弹窗
const showDialog = () => {
  dialogRef.value.isDialog = true
}

const handleConfirm = () => {
  console.log('confirm')
  // 需要执行的函数
  // ...
}

const handleCancel = () => {
  console.log('cancel')
  // 需要执行的函数
  // ...
}

</script>

注意事项

  • 弹窗组件的样式,可以根据需求进行自定义,比如字体大小、颜色、背景色等。
  • 弹窗组件的功能,比如确认、取消按钮的文字、点击事件等,可以根据需求进行自定义。
  • 弹窗组件的显示、隐藏,可以通过isDialog变量进行控制。

http://www.kler.cn/a/282197.html

相关文章:

  • 6.584-Lab1:MapReduce
  • 探索美赛:从准备到挑战的详细指南
  • Gin 框架中的路由
  • 传奇996_23——杀怪掉落,自动捡取,捡取动画
  • java常用工具包介绍
  • latex中,两个相邻的表格,怎样留一定的空白
  • Kubectl常用命令
  • 深度强化学习算法(三)(附带MATLAB程序)
  • Python酷库之旅-第三方库Pandas(105)
  • 2012-2022年各省新质生产力匹配数字经济数据
  • 通过 pnpm 安装依赖包会发生什么
  • 【Java】Java 设计模式之工厂模式与策略模式
  • 本地Docker部署Navidrome音乐服务器与远程访问听歌详细教程
  • 力扣题/回溯/子集
  • java.time包时间类浅谈
  • C语言中的int argc, char *argv[]是什么?
  • 设计模式 10 外观模式
  • mysql集群从零开始搭建
  • Qt详解QUrl
  • CSS动画魔法:用@keyframes点亮你的网页
  • Python操作Excel的十大技巧
  • 算法的学习笔记—数据流中的中位数(牛客JZ41)
  • 数学建模~~~预测方法--决策树模型
  • pyautogui的一些自动化示例,附代码
  • 新手如何找到正确入行 Web3 路径?揭开职业启航新篇章
  • linux驱动 -- 输入子系统