common.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. import store from '../store/index.js';
  2. // 不含icon提示框
  3. export const toast = str => {
  4. return new Promise((resolve, reject) => {
  5. uni.showToast({
  6. title: str,
  7. icon: "none",
  8. duration: 1500,
  9. success: () => {
  10. setTimeout(() => {
  11. resolve
  12. }, 1500)
  13. }
  14. })
  15. })
  16. };
  17. // 成功提示框
  18. export const successToast = str => {
  19. return new Promise((resolve, reject) => {
  20. uni.showToast({
  21. title: str || '请求成功',
  22. icon: "success",
  23. duration: 1500,
  24. success: () => {
  25. setTimeout(() => {
  26. resolve()
  27. }, 1500)
  28. }
  29. })
  30. })
  31. };
  32. // loading
  33. export const showLoading = () => {
  34. return new Promise((resolve, reject) => {
  35. uni.showLoading({
  36. success: () => {
  37. resolve()
  38. }
  39. })
  40. })
  41. };
  42. // 提示loading
  43. export const tipLoading = str => {
  44. return new Promise((resolve, reject) => {
  45. uni.showLoading({
  46. title: str,
  47. success: () => {
  48. resolve()
  49. }
  50. })
  51. })
  52. };
  53. // 隐藏loading
  54. export const hideLoading = () => {
  55. return new Promise((resolve, reject) => {
  56. uni.hideLoading({
  57. success: () => {
  58. resolve()
  59. }
  60. })
  61. })
  62. };
  63. // 模态弹窗
  64. export const modal = (options = {}) => {
  65. if (!options) return;
  66. const {
  67. title,
  68. content,
  69. showCancel,
  70. cancelText,
  71. cancelColor,
  72. confirmText,
  73. confirmColor
  74. } = Object.assign({}, options.content ? options : { content: options });
  75. return new Promise((resolve, reject) => {
  76. uni.showModal({
  77. title: title || "提示",
  78. content: String(content),
  79. showCancel: typeof showCancel == "boolean" ? showCancel : true,
  80. cancelText: cancelText || "取消",
  81. cancelColor: cancelColor || "#323233",
  82. confirmText: confirmText || "确定",
  83. confirmColor: confirmColor || "#FF3F42",
  84. success(res) {
  85. if (res.confirm) {
  86. resolve(res);
  87. } else {
  88. reject();
  89. }
  90. }
  91. });
  92. });
  93. };
  94. /**
  95. * 跳转页面 navigateTo
  96. * 保留当前页面,跳转到应用内的某个页面
  97. * @param {String} url 需要跳转的页面
  98. * @param {Boolean} isAuth 是否需要鉴权
  99. * @returns
  100. */
  101. export const navPage = (url, isAuth = 0) => {
  102. if((isAuth && store.state.isLogin) || !isAuth){
  103. uni.navigateTo({
  104. url,
  105. fail: err=>{
  106. console.log('页面跳转失败', url, err)
  107. }
  108. })
  109. }else{
  110. uni.navigateTo({
  111. url:'/pages/login/index'
  112. })
  113. }
  114. };
  115. /**
  116. * 跳转页面 redirectTo
  117. * 关闭当前页面,跳转到应用内的某个页面
  118. * @param {String} url 需要跳转的页面
  119. * @param {Boolean} isAuth 是否需要鉴权
  120. * @returns
  121. */
  122. export const redPage = (url, isAuth = 0) => {
  123. if((isAuth && store.state.isLogin) || !isAuth){
  124. uni.redirectTo({
  125. url,
  126. fail: err=>{
  127. console.log('页面跳转失败', url, err)
  128. }
  129. })
  130. }else{
  131. uni.navigateTo({
  132. url:'/pages/login/index'
  133. })
  134. }
  135. };
  136. /**
  137. * 返回页面
  138. * @param {Number} num 返回的页面数
  139. * @param {Number} time 延时返回
  140. * @returns
  141. */
  142. export const backPage = (num = 1, time = 0) => {
  143. if(!num) return false;
  144. setTimeout(() => {
  145. uni.navigateBack({
  146. delta: num
  147. });
  148. }, time)
  149. };
  150. export default {
  151. toast,
  152. successToast,
  153. showLoading,
  154. tipLoading,
  155. hideLoading,
  156. modal,
  157. navPage,
  158. redPage,
  159. backPage
  160. }