组件 // 封装提示框 export const showModal = (content, showCancel = false, title = "提示") => { return new Promise((resolve, reject) => { uni.showModal({ title: title, content: content, showCancel: showCancel, success: (res) => {