riku
2024-05-21 668f251a5c8099d7edec59f40d1311a6785ef10c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import {
  ElMessageBox,
  ElNotification,
  ElMessage
} from 'element-plus';
 
function useMessageBoxTip({
  confirmMsg,
  confirmTitle = '提交',
  doneMsg = confirmTitle,
  onConfirm
}) {
  ElMessageBox.confirm(confirmMsg, `${confirmTitle}确认`, {
    confirmButtonText: '确认',
    cancelButtonText: '取消',
    type: 'warning'
  })
    .then(async () => {
      let msg = `已${doneMsg}`;
      if (typeof onConfirm === 'function') {
        onConfirm()
          .then((res) => {
            if (res && res != '') {
              msg = `已${doneMsg}, ${res}`;
            }
            ElNotification({
              title: `${confirmTitle}成功`,
              message: msg,
              type: 'success'
            });
          })
          .catch((err) => {
            let errStr = `${confirmTitle}取消`;
            if (err != 'cancel') {
              errStr = `${confirmTitle}失败, ${err}`;
            }
            ElMessage({
              message: errStr,
              type: 'warning'
            });
          });
      }
    })
    .catch((err) => {
      let errStr = `${confirmTitle}取消`;
      if (err != 'cancel') {
        errStr = `${confirmTitle}失败, ${err}`;
      }
      ElMessage({
        message: errStr,
        type: 'warning'
      });
    });
}
 
function useMessageBox({ confirmMsg, confirmTitle, onConfirm }) {
  ElMessageBox.confirm(confirmMsg, confirmTitle, {
    confirmButtonText: '确认',
    cancelButtonText: '取消',
    type: 'warning'
  })
    .then(async () => {
      if (typeof onConfirm === 'function') {
        onConfirm();
      }
    })
    .catch(() => {});
}
 
export { useMessageBoxTip, useMessageBox };