utils.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /**
  2. * 对象转URL
  3. */
  4. export const urlEncode = function(data) {
  5. var _result = [];
  6. for (var key in data) {
  7. var value = data[key];
  8. if (value.constructor == Array) {
  9. value.forEach(_value => {
  10. _result.push(key + "=" + _value);
  11. });
  12. } else {
  13. _result.push(key + '=' + value);
  14. }
  15. }
  16. return _result.join('&');
  17. }
  18. /**
  19. * scene解码
  20. */
  21. export const scene_decode = function (e) {
  22. if (e === undefined)
  23. return {};
  24. let scene = decodeURIComponent(e),
  25. params = scene.split(','),
  26. data = {};
  27. for (let i in params) {
  28. var val = params[i].split(':');
  29. val.length > 0 && val[0] && (data[val[0]] = val[1] || null)
  30. }
  31. return data;
  32. }
  33. export const deepCopy = function (obj) {
  34. //判断拷贝的要进行深拷贝的是数组还是对象,是数组的话进行数组拷贝,对象的话进行对象拷贝
  35. var objClone = Array.isArray(obj) ? [] : {};
  36. //进行深拷贝的不能为空,并且是对象或者是
  37. if (obj && typeof obj === "object") {
  38. for (var key in obj) {
  39. if (obj.hasOwnProperty(key)) {
  40. if (obj[key] && typeof obj[key] === "object") {
  41. objClone[key] = deepCopy(obj[key]);
  42. } else {
  43. objClone[key] = obj[key];
  44. }
  45. }
  46. }
  47. }
  48. return objClone;
  49. };
  50. /*
  51. @parmas current 页面栈,非必传,不传的时候默认返回上一页
  52. */
  53. export const getPage = function (current) {
  54. if (!current) {
  55. current = 2;
  56. }
  57. var pages = getCurrentPages(),
  58. length = pages.length,
  59. page = pages[length - current];
  60. return page
  61. };
  62. /*
  63. *时间戳转化日期方法
  64. *@params val 时间戳,必传;
  65. *@params type 转化类型,非必传,默认返回年月日加时间,等于ymd时,返回年月日,等于hms返回时间
  66. */
  67. export const timeToDate = function (val,type) {
  68. if(!val){
  69. throw new Error('val ')
  70. }
  71. var date = new Date(val * 1000),
  72. Y = date.getFullYear(),
  73. M = date.getMonth() + 1,
  74. D = date.getDate(),
  75. H = date.getHours(),
  76. m = date.getMinutes(),
  77. s = date.getSeconds();
  78. M = M < 10 ? '0' + M : M;
  79. D = D < 10 ? '0' + D : D;
  80. H = H < 10 ? '0' + H : H;
  81. m = m < 10 ? '0' + m : m;
  82. s = s < 10 ? '0' + s : s;
  83. if(!type){
  84. return `${Y}-${M}-${D} ${H}:${m}:${s}`
  85. }else if(type === 'ymd'){
  86. return `${Y}-${M}-${D}`
  87. }else if(type === 'hms'){
  88. return `${H}:${m}:${s}`
  89. }
  90. };
  91. //支付统一处理方法
  92. export const payMoney = function (pay_info) {
  93. return new Promise((resolve,reject)=>{
  94. uni.requestPayment({
  95. timeStamp: pay_info.timestamp,
  96. nonceStr: pay_info.nonceStr,
  97. package: pay_info.package,
  98. signType: pay_info.signType,
  99. paySign: pay_info.paySign,
  100. success(res) {
  101. resolve(res)
  102. },
  103. fail(err) {
  104. reject(err)
  105. }
  106. })
  107. })
  108. }
  109. export const hasLogin = function () {
  110. return new Promise((resolve, reject) => {
  111. uni.getSetting({
  112. success(res) {
  113. if (res.authSetting['scope.userInfo']) {
  114. uni.getUserInfo({
  115. success(res) {
  116. console.log('我授权登陆过了')
  117. resolve(res);
  118. }
  119. })
  120. } else {
  121. uni.hideLoading();
  122. reject()
  123. }
  124. },
  125. fail(err) {
  126. reject(err)
  127. }
  128. })
  129. })
  130. }
  131. /**
  132. * 将时间戳转化为多久以前
  133. * */
  134. export const changeTime = function(timestamp) {
  135. let currentUnixTime = Math.round((new Date()).getTime() / 1000);
  136. let deltaSecond = currentUnixTime - parseInt(timestamp, 10);
  137. let result;
  138. if (deltaSecond < 60) {
  139. result = deltaSecond + '秒前';
  140. } else if (deltaSecond < 3600) {
  141. result = Math.floor(deltaSecond / 60) + '分钟前';
  142. } else if (deltaSecond < 86400) {
  143. result = Math.floor(deltaSecond / 3600) + '小时前';
  144. } else {
  145. result = Math.floor(deltaSecond / 86400) + '天前';
  146. }
  147. return result;
  148. }
  149. export const professTotal = function(val) {
  150. if(!val)return 0;
  151. if (val > 10000) {
  152. return (val / 10000).toFixed(2) + '万'
  153. } else {
  154. return val
  155. }
  156. }
  157. export const getArea = function(str) {
  158. let area = {}
  159. let index11 = 0
  160. let index1 = str.indexOf("省")
  161. if (index1 == -1) {
  162. index11 = str.indexOf("自治区")
  163. if (index11 != -1) {
  164. area.Province = str.substring(0, index11 + 3)
  165. } else {
  166. area.Province = str.substring(0, 0)
  167. }
  168. } else {
  169. area.Province = str.substring(0, index1 + 1)
  170. }
  171. let index2 = str.indexOf("市")
  172. if (index11 == -1) {
  173. area.City = str.substring(index11 + 1, index2 + 1)
  174. } else {
  175. if (index11 == 0) {
  176. area.City = str.substring(index1 + 1, index2 + 1)
  177. } else {
  178. area.City = str.substring(index11 + 3, index2 + 1)
  179. }
  180. }
  181. let index3 = str.lastIndexOf("区")
  182. if (index3 == -1) {
  183. index3 = str.indexOf("县")
  184. area.Country = str.substring(index2 + 1, index3 + 1)
  185. } else {
  186. area.Country = str.substring(index2 + 1, index3 + 1)
  187. }
  188. return area;
  189. }
  190. /**
  191. * 比较时间是否在范围内
  192. * @param {Object} stime
  193. * @param {Object} etime
  194. * @return {Boolean}
  195. */
  196. export const compareTime = function(stime, etime) {
  197. function tranDate(time) {
  198. return new Date(time.replace(/-/g, '/')).getTime();
  199. }
  200. let startTime = tranDate(stime);
  201. let endTime = tranDate(etime);
  202. let nowTime = new Date().getTime();
  203. if(nowTime < startTime || nowTime > endTime) {
  204. return false;
  205. }
  206. return true;
  207. }
  208. export default {
  209. deepCopy,
  210. getPage,
  211. timeToDate,
  212. payMoney,
  213. scene_decode,
  214. hasLogin,
  215. urlEncode,
  216. changeTime,
  217. professTotal,
  218. getArea,
  219. compareTime
  220. }