对话框编写

编程入门 行业动态 更新时间:2024-10-27 10:23:27

<a href=https://www.elefans.com/category/jswz/34/1761322.html style=对话框编写"/>

对话框编写

<template><div class="shadow-wrapper" v-if="visible" @click.stop ref="mask"><!-- 遮罩层 --><div class="dialog-wrapper">                                    <!-- 对话框 --><div class="info-wrapper">                                    <!-- 对话框内容部分 --><!-- <img class="icon" :src="require(`../common/images/${icon}-circle.png`)"> --><div class="text">{{info}}</div></div><div class="btn-wrapper">                                     <!-- 对话框按钮部分 --><div class="btn" @click="onCancel">{{cancelText}}</div><div class="btn" @click="onOk">{{okText}}</div></div></div></div>
</template><script>
export default {props: {mask: { /* 控制遮罩 */type: Boolean,default: false},icon: { /* 图标类型 */type: String,default: 'info'},info: { /* 文字内容 */type: String,default: '内容'},cancelText: { /* 取消按钮文字 */type: String,default: ''},okText: { /* 确认按钮文字 */type: String,default: ''}},data () {return {visible: true /* 控制对话框显示 */}},mounted () {setTimeout(() => { /* 确保能获取到mask修改其背景属性 */if (this.mask) {this.$refs.mask.style.background = 'rgba(0,0,0,.3)'}}, 20)},methods: {show () { /* 打开对话框 */this.visible = true},hidden () { /* 关闭对话框 */this.visible = false},onCancel () { /* 点击取消 */this.$emit('cancel')this.hidden()},onOk () { /* 点击确认 */this.$emit('ok')this.hidden()}}
}
</script>
<style scoped>
.shadow-wrapper {position: absolute;top: 0;left: 0;height: 100%;width: 100%;background: rgba(0,0,0,0.3)
}                  /* 覆盖整个页面 */.dialog-wrapper {position: relative;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 220px;background: #ffffff;border: solid 1px #ccc;border-radius: 10px;box-shadow: 0 0 5px #ccc;color: #777777;
}                  /* 垂直居中 */
.info-wrapper {min-height: 80px;              /* dialog随内容撑开高度 */text-align: center;font-weight: bold;margin-bottom: 50px;
}  .icon {margin-top: 10px;height: 30px;width: 30px;
}/* .textline-height 30pxcolor #666
.btn-wrapperposition absolutedisplay flexheight 40pxwidth 100%bottom 0 */</style>

更多推荐

对话框编写

本文发布于:2023-12-03 23:03:35,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1658708.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:对话框

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!