common.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. export function msg(content) {
  2. uni.showToast({
  3. title: content,
  4. icon: 'none'
  5. })
  6. }
  7. // 错误消息
  8. export function msgError(content) {
  9. uni.showToast({
  10. title: content,
  11. icon: 'error'
  12. })
  13. }
  14. // // 成功消息
  15. export function msgSuccess(content) {
  16. uni.showToast({
  17. title: content,
  18. icon: 'success'
  19. })
  20. }
  21. // // 隐藏消息
  22. export function hideMsg(content) {
  23. uni.hideToast()
  24. }
  25. // // 弹出提示
  26. export function alert(content, title) {
  27. uni.showModal({
  28. title: title || '系统提示',
  29. content: content,
  30. showCancel: false
  31. })
  32. }
  33. // // 确认窗体
  34. export function confirm(content, title) {
  35. return new Promise((resolve, reject) => {
  36. uni.showModal({
  37. title: title || '系统提示',
  38. content: content,
  39. cancelText: '取消',
  40. confirmText: '确定',
  41. success: function(res) {
  42. if (res.confirm) {
  43. resolve(res.confirm)
  44. }
  45. }
  46. })
  47. })
  48. }
  49. // // 提示信息
  50. export function showToast(option) {
  51. if (typeof option === "object") {
  52. uni.showToast(option)
  53. } else {
  54. uni.showToast({
  55. title: option,
  56. icon: "none",
  57. duration: 2500
  58. })
  59. }
  60. }
  61. // // 打开遮罩层
  62. export function loading(content) {
  63. uni.showLoading({
  64. title: content,
  65. icon: 'none'
  66. })
  67. }
  68. // // 关闭遮罩层
  69. export function closeLoading() {
  70. uni.hideLoading()
  71. }
  72. // /**
  73. // * 显示模态弹窗
  74. // * @param content 提示的标题
  75. // */
  76. export function showConfirm(content) {
  77. return new Promise((resolve, reject) => {
  78. uni.showModal({
  79. title: '提示',
  80. content: content,
  81. cancelText: '取消',
  82. confirmText: '确定',
  83. success: function(res) {
  84. resolve(res)
  85. }
  86. })
  87. })
  88. }
  89. /**
  90. * 参数处理
  91. * @param params 参数
  92. */
  93. export function tansParams(params) {
  94. let result = ''
  95. for (const propName of Object.keys(params)) {
  96. const value = params[propName]
  97. var part = encodeURIComponent(propName) + "="
  98. if (value !== null && value !== "" && typeof(value) !== "undefined") {
  99. if (typeof value === 'object') {
  100. for (const key of Object.keys(value)) {
  101. if (value[key] !== null && value[key] !== "" && typeof(value[key]) !== 'undefined') {
  102. let params = propName + '[' + key + ']'
  103. var subPart = encodeURIComponent(params) + "="
  104. result += subPart + encodeURIComponent(value[key]) + "&"
  105. }
  106. }
  107. } else {
  108. result += part + encodeURIComponent(value) + "&"
  109. }
  110. }
  111. }
  112. return result
  113. }