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") {