确认提示弹窗,比如删除提示
<template> <div class="t-input"> <t-layout sectionTitle="按钮组件"> <div class="content-main t-margin20"> <el-button @click="submit">删除</el-button> </div> </t-layout> </div> </template> <script> export default { data() { return {} }, methods: { submit() { // 这里供业务组件处理一些事情,比如ajax请求 执行done()方法消失loading this.$OTAlert( { show: true, title: '提示', message: '确定删除该用户吗?', messageType: 'confrim' }, () => { // ajax 请求 alert('ajax 请求') } ) } } } </script>
this.$OTAlert({ title: '提示', message: '确定取消收藏该设备?', iconType: 'warning', messageType: 'confrim' }, () => {})
← 分组组件 自动设置区域高度 →