// +----------------------------------------------------------------------
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
// +----------------------------------------------------------------------
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
// +----------------------------------------------------------------------
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
// +----------------------------------------------------------------------
|
// | Author: CRMEB Team <admin@crmeb.com>
|
// +----------------------------------------------------------------------
|
|
/**
|
* 再次确定弹窗组件
|
* @param title 标题
|
* @returns {Promise<any>}
|
*/
|
export default function modalSure(title) {
|
return new Promise((resolve, reject) => {
|
this.$confirm(`确定${title || '永久删除该数据'}`, '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning',
|
})
|
.then(() => {
|
resolve();
|
})
|
.catch(() => {
|
reject();
|
this.$message({
|
type: 'info',
|
message: '已取消',
|
});
|
});
|
});
|
}
|