common.plugins.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. import modal from "./modal.plugins";
  2. export default {
  3. /**
  4. * 参数处理
  5. * @param params 参数
  6. */
  7. tansParams(params) {
  8. let result = "";
  9. for (const propName of Object.keys(params)) {
  10. const value = params[propName];
  11. var part = encodeURIComponent(propName) + "=";
  12. if (value !== null && value !== "" && typeof value !== "undefined") {
  13. if (typeof value === "object") {
  14. for (const key of Object.keys(value)) {
  15. if (value[key] !== null && value[key] !== "" && typeof value[key] !== "undefined") {
  16. let params = propName + "[" + key + "]";
  17. var subPart = encodeURIComponent(params) + "=";
  18. result += subPart + encodeURIComponent(value[key]) + "&";
  19. }
  20. }
  21. } else {
  22. result += part + encodeURIComponent(value) + "&";
  23. }
  24. }
  25. }
  26. return result;
  27. },
  28. /**
  29. * 数据映射
  30. * @param reKey 需要返回的key
  31. * @param isKey 需要比对的key
  32. * @param value 对比值
  33. * @param data 数据集
  34. */
  35. mapping(reKey, isKey, value, data) {
  36. if (typeof value == "string" && value.indexOf(",") > -1) {
  37. //value为字符串的id集合
  38. let arr = value.split(",");
  39. let returnValue = "";
  40. arr.forEach((e, index) => {
  41. data.forEach((f) => {
  42. if (e == f[isKey]) {
  43. returnValue = returnValue ? `${returnValue},${f[reKey]}` : f[reKey];
  44. }
  45. })
  46. })
  47. return returnValue;
  48. } else {
  49. if (!data) return;
  50. for (let i = 0; i < data.length; i++) {
  51. if (value == data[i][isKey]) {
  52. return data[i][reKey];
  53. }
  54. }
  55. }
  56. },
  57. /**
  58. * @一键拨号
  59. */
  60. makePhoneCall(phone) {
  61. uni.makePhoneCall({
  62. phoneNumber: phone,
  63. success: function () {
  64. console.log('success');
  65. },
  66. fail: function () {
  67. }
  68. });
  69. },
  70. /**
  71. * @复制粘贴板
  72. * @param {传入值} content
  73. * @returns
  74. */
  75. uniCopy({ content, success, error }) {
  76. if (!content) return error('复制的内容不能为空 !')
  77. content = typeof content === 'string' ? content : content.toString() // 复制内容,必须字符串,数字需要转换为字符串
  78. /**
  79. * 小程序端 和 app端的复制逻辑
  80. */
  81. //#ifdef APP-PLUS || MP-WEIXIN
  82. uni.setClipboardData({
  83. data: content,
  84. success: function () {
  85. success("复制成功~")
  86. console.log('success');
  87. },
  88. fail: function () {
  89. success("复制失败~")
  90. }
  91. });
  92. //#endif
  93. /**
  94. * H5端的复制逻辑
  95. */
  96. // #ifdef H5
  97. if (!document.queryCommandSupported('copy')) { //为了兼容有些浏览器 queryCommandSupported 的判断
  98. // 不支持
  99. error('浏览器不支持')
  100. }
  101. let textarea = document.createElement("textarea")
  102. textarea.value = content
  103. textarea.readOnly = "readOnly"
  104. document.body.appendChild(textarea)
  105. textarea.select() // 选择对象
  106. textarea.setSelectionRange(0, content.length) //核心
  107. let result = document.execCommand("copy") // 执行浏览器复制命令
  108. if (result) {
  109. success("复制成功~")
  110. } else {
  111. error("复制失败,请检查h5中调用该方法的方式,是不是用户点击的方式调用的,如果不是请改为用户点击的方式触发该方法,因为h5中安全性,不能js直接调用!")
  112. }
  113. textarea.remove()
  114. // #endif
  115. },
  116. /**
  117. * @根据时间分类数据
  118. * @param {数据集} data
  119. * @param {需要处理的时间key} timeKey
  120. * @returns
  121. */
  122. groupedItems(data, timeKey) {
  123. if (data <= 0) {
  124. return false
  125. }
  126. const grouped = {};
  127. data.forEach((item) => {
  128. const date = item[timeKey].split("T")[0];
  129. grouped[date] = grouped[date] || [];
  130. grouped[date].push(item);
  131. });
  132. return grouped;
  133. },
  134. /**
  135. * @公共获取URL中的参数
  136. */
  137. getUrlList() {
  138. // 截取url中的list
  139. var url = window.location.href;
  140. var theRequest = new Object();
  141. if (url.indexOf("?") != -1) {
  142. var str = url.split("?")[1];
  143. var strs = str.split("&");
  144. for (var i = 0; i < strs.length; i++) {
  145. theRequest[strs[i].split("=")[0]] = strs[i].split("=")[1];
  146. }
  147. }
  148. return theRequest;
  149. },
  150. /**
  151. * @数组对象排序
  152. * @return
  153. * @param {数据} data
  154. * @param {0 从小到大 1 从大到小} sort
  155. */
  156. sortEvent(data, sort) {
  157. let arr = [];
  158. // 将需要排序的 key, 进行排列
  159. let sortKeys = Object.keys(JSON.parse(JSON.stringify(data))).sort((a, b) => {
  160. return sort == 0 ? JSON.parse(JSON.stringify(data))[a].sort - JSON.parse(JSON.stringify(data))[b].sort : JSON.parse(JSON.stringify(data))[b].sort - JSON.parse(JSON.stringify(data))[a].sort;
  161. });
  162. // 循环排列好的 key, 重新组成一个新的数组
  163. for (var sortIndex in sortKeys) {
  164. arr.push(JSON.parse(JSON.stringify(data))[sortKeys[sortIndex]]);
  165. }
  166. return arr;
  167. },
  168. /**
  169. * @数组对象去重
  170. * @methods data 需要去重的数据
  171. * @methods objectName 需要去重的对象名称
  172. */
  173. uniq(data, objectName) {
  174. if (!objectName) {
  175. var newArr = [...new Set(data)]
  176. return newArr;
  177. } else {
  178. let obj = {};
  179. let peon = data.reduce((cur, next) => {
  180. obj[next[objectName]] ? "" : obj[next[objectName]] = true && cur.push(next);
  181. return cur;
  182. }, []) //设置cur默认类型为数组,并且初始值为空的数组
  183. return peon;
  184. }
  185. },
  186. /**
  187. * @判断当前是否有网络
  188. */
  189. isNetwork() {
  190. let status = true
  191. // 获取网络状态
  192. uni.getNetworkType({
  193. success: function (res) {
  194. if (res.networkType === "none") {
  195. modal.msg("网络异常,请稍后重试!");
  196. status = false
  197. } else {
  198. status = true
  199. }
  200. },
  201. });
  202. return status
  203. },
  204. /**
  205. * @判断用户拒绝权限是否超过48小时
  206. */
  207. isExpirationTime() {
  208. let sotrTime = uni.getStorageSync("expirationTime");
  209. if (sotrTime) {
  210. if (sotrTime + 3600 * 24 * 2 <= Date.parse(new Date()) / 1000) {
  211. return true
  212. } else {
  213. return false
  214. }
  215. } else {
  216. return true
  217. }
  218. },
  219. /**
  220. * @判断是否为微信公众号
  221. */
  222. isWechatMp() {
  223. var ua = navigator?.userAgent.toLowerCase();
  224. if (ua?.match(/MicroMessenger/i) == 'micromessenger') {
  225. return true;
  226. } else {
  227. // 不在微信内置浏览器中
  228. return false;
  229. }
  230. },
  231. /**
  232. * @是否显示容器
  233. * @判断是否为微信公众号
  234. */
  235. isVisible() {
  236. let visible = true;
  237. //#ifdef H5
  238. visible = !this.isWechatMp();
  239. //#endif
  240. //#ifdef APP-PLUS || MP-WEIXIN
  241. visible = true;
  242. //#endif
  243. return visible;
  244. },
  245. /**
  246. * 图片点击放大
  247. * @param {*类型} type (1:string:图片地址 2:array(数组对象))
  248. * @param {*数据} data
  249. */
  250. imgEnlarge(type, data) {
  251. let param = {}
  252. if (type == 1) {
  253. param = {
  254. urls: [data],
  255. current: data
  256. }
  257. }
  258. if (type == 2) {
  259. let arr = []
  260. for (let i = 0; i < data.length; i++) {
  261. arr.push(data[i].url)
  262. }
  263. param = {
  264. urls: arr,
  265. current: arr[0]
  266. }
  267. }
  268. if (data && data.length > 0) {
  269. uni.previewImage(param)
  270. }
  271. }
  272. };