wlzboy
2025-09-25 4648a3bee638e9a99d2d80b66f8833b261a2db91
app/plugins/modal.js
@@ -48,6 +48,26 @@
      })
    })
  },
  // 输入框
  prompt(content, defaultValue) {
    return new Promise((resolve, reject) => {
      uni.showModal({
        title: '系统提示',
        content: content,
        editable: true,
        placeholderText: defaultValue || '',
        cancelText: '取消',
        confirmText: '确定',
        success: function(res) {
          if (res.confirm) {
            resolve(res.content)
          } else {
            reject()
          }
        }
      })
    })
  },
  // 提示信息
  showToast(option) {
    if (typeof option === "object") {