msg.js 390 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * 警告
  3. * @param {警告信息} msg
  4. */
  5. function showWarn(msg) {
  6. wx.showModal({
  7. title: '警告',
  8. content: msg,
  9. showCancel: false,
  10. })
  11. }
  12. /**
  13. * 错误信息
  14. * @param {错误信息} msg
  15. */
  16. function showErr(msg) {
  17. wx.showModal({
  18. title: "错误提示",
  19. content: msg,
  20. showCancel: false
  21. })
  22. }
  23. module.exports = {
  24. showWarn: showWarn,
  25. showErr: showErr
  26. }