utils.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. export function msg(content,time=3000){
  2. uni.showToast({
  3. icon:'none',
  4. title: content,
  5. duration: time
  6. });
  7. }
  8. export function showLoading(content="加载数据中...",mask=true){
  9. uni.showLoading({
  10. title: content,
  11. mask: mask
  12. });
  13. }
  14. export function hideLoading(timer=0){
  15. if(timer > 0){
  16. var t = setTimeout(function () {
  17. uni.hideLoading();
  18. clearTimeout(t);
  19. }, timer);
  20. }else{
  21. uni.hideLoading();
  22. }
  23. }
  24. export function in_array(search,array){
  25. let flag = false;
  26. for(let i in array){
  27. if(array[i]==search){
  28. flag = true;
  29. break;
  30. }
  31. }
  32. return flag;
  33. }
  34. export function isDataType(data,type){
  35. return Object.prototype.toString.call(data) === '[object '+type+']';
  36. }
  37. export function ltrim(str,char){
  38. let pos = str.indexOf(char);
  39. let sonstr = str.substr(pos+1);
  40. return sonstr;
  41. }
  42. export function rtrim(str,char){
  43. let pos = str.lastIndexOf(char);
  44. let sonstr = str.substr(0,pos);
  45. return sonstr;
  46. }
  47. /**
  48. * 保留当前页面,跳转到应用内的某个页面,使用uni.navigateBack可以返回到原页面。
  49. */
  50. export function navigateTo(url,params){
  51. uni.navigateTo({
  52. url: parseUrl(url,params),
  53. success: res => {},
  54. fail: (e) => {
  55. console.log(e)
  56. },
  57. complete: () => {}
  58. })
  59. }
  60. /**
  61. * 关闭当前页面,跳转到应用内的某个页面。
  62. */
  63. export function redirectTo(url,params){
  64. uni.redirectTo({
  65. url: parseUrl(url,params)
  66. });
  67. }
  68. /**
  69. * 关闭所有页面,打开到应用内的某个页面。
  70. */
  71. export function reLaunch(url,params){
  72. uni.reLaunch({
  73. url: parseUrl(url,params)
  74. });
  75. }
  76. /**
  77. * 跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面。
  78. */
  79. export function switchTab(url,params){
  80. uni.switchTab({
  81. url: parseUrl(url,params)
  82. });
  83. }
  84. /**
  85. * 关闭当前页面,返回上一页面或多级页面
  86. */
  87. export function navigateBack(delta){
  88. uni.navigateBack({
  89. delta: delta
  90. });
  91. }
  92. /**
  93. * 预加载页面,是一种性能优化技术。被预载的页面,在打开时速度更快。
  94. */
  95. export function preloadPage(){
  96. uni.preloadPage({
  97. url: parseUrl(url,params)
  98. });
  99. }
  100. export function prePage(){
  101. let pages = getCurrentPages();
  102. let prePage = pages[pages.length - 2];
  103. // #ifdef H5
  104. return prePage;
  105. // #endif
  106. return prePage.$vm;
  107. }
  108. /**
  109. * rpx转px
  110. * @param int|float num
  111. */
  112. export function rpx2px(num){
  113. // const info = uni.getSystemInfoSync()
  114. // let scale = 750 / info.windowWidth;
  115. // return (Number.isNaN(parseFloat(num)) ? 0 : parseFloat(num)) / scale;
  116. return uni.upx2px(num);
  117. }
  118. /**
  119. * @param int|float num
  120. */
  121. export function px2rpx(num){
  122. return num/(uni.upx2px(num)/num);
  123. }
  124. /**
  125. * 获取窗口的宽高
  126. */
  127. export function getSystemInfo(){
  128. const info = uni.getSystemInfoSync();
  129. return {
  130. w: info.windowWidth,
  131. h: info.windowHeight
  132. };
  133. }
  134. function parseUrl(url,params){
  135. let arr = [];
  136. let string = '';
  137. for(let i in params){
  138. arr.push(i + "=" + params[i]);
  139. }
  140. string = "/pages/" + url;
  141. if(arr.length > 0){
  142. string += "?" + arr.join("&");
  143. }
  144. return string;
  145. }