he wei
2025-04-23 b9bd29a1a81f6f7de479e3cc3fdfe3d85fc660bf
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import { ref, reactive } from "vue";
import { ElMessageBox, ElMessage, ElLoading } from "element-plus";
import { checkSnId } from '@/api/user.js';
 
export default () => {
  const $message = ElMessage;
  function $alert(title, fnCancel = () => {}) {
    ElMessageBox.confirm(title, "系统提示", {
      confirmButtonText: "确定",
      type: "warning",
      showCancelButton: false,
      center: true,
    })
      .then(() => {
        fnCancel();
      })
      .catch(() => {
        fnCancel();
      });
  }
 
  function $confirm(operate, fnOk, fnCancel = () => {}) {
    ElMessageBox.confirm(`请确认是否${operate}?`, "系统提示", {
      confirmButtonText: "确定",
      cancelButtonText: "取消",
      type: "warning",
      center: true,
    })
      .then(() => {
        fnOk();
      })
      .catch(() => {
        fnCancel();
      });
  }
 
  function $loading(customOptions = {}) {
    const defaultOptions = {
      lock: true,
      text: "Loading",
      background: "rgba(0, 0, 0, 0.7)",
      target: document.body,
      zIndex: 9000,
      // 可以添加更多默认配置
    };
 
    // 合并默认配置和自定义配置
    const options = { ...defaultOptions, ...customOptions };
 
    // 调用Element UI的加载服务
    const loadingInstance = ElLoading.service(options);
    return loadingInstance;
    // return () => {
    //   console.log('?', 'close', '=============');
 
    //   loadingInstance.close();
    // };
  }
 
  // 确认用户密码后干某事
  async function $confirmPwdDo(callback) {
    ElMessageBox.prompt('请输入用户密码', '系统提示', {
      inputType: 'password',
      inputPattern: /^.+$/,
      inputErrorMessage: '密码不能为空',
    })
      .then(async ({ value: pwd }) => {
        console.log('pwd', pwd, '=============');
   
        // 验证密码
        let res = await checkSnId(pwd);
        let { code, data } = res;
        let res_pwd = code && data;
 
        if (res_pwd) {
          $message({
            type: 'success',
            message: '密码正确'
          });
        } else {
          $message({
            type: 'error',
            message: '密码错误'
          });
          return false;
        }
 
        if (callback && typeof callback === 'function') {
          callback();
        }
      });
  }
 
  return { $alert, $confirm, $message, $loading, $confirmPwdDo };
};