tools.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. const baseUrl = import.meta.env.VITE_BASE_URL;
  2. const basePrefix = import.meta.env.VITE_BASE_PREFIX;
  3. import { screenApi } from "@/api/screen"
  4. /** 统一 - get和post请求书写方式 */
  5. export function tansParams(params) {
  6. let result = ''
  7. for (const propName of Object.keys(params)) {
  8. const value = params[propName];
  9. const part = encodeURIComponent(propName) + "=";
  10. if (value !== null && typeof (value) !== "undefined") {
  11. if (typeof value === 'object') {
  12. for (const key of Object.keys(value)) {
  13. if (value[key] !== null && typeof (value[key]) !== 'undefined') {
  14. const params = propName + '[' + key + ']';
  15. const subPart = encodeURIComponent(params) + "=";
  16. result += subPart + encodeURIComponent(value[key]) + "&";
  17. }
  18. }
  19. } else {
  20. result += part + encodeURIComponent(value) + "&";
  21. }
  22. }
  23. }
  24. return result;
  25. }
  26. /** localhost - methods */
  27. export class LocalCache {
  28. static setCath(key, value) {
  29. window.localStorage.setItem(key, JSON.stringify(value));
  30. }
  31. static getCache(key) {
  32. const value = window.localStorage.getItem(key);
  33. return value ? JSON.parse(value) : {};
  34. }
  35. static deleteCatch(key) {
  36. window.localStorage.removeItem(key);
  37. }
  38. static clearCache() {
  39. window.localStorage.clear();
  40. }
  41. }
  42. // get file path
  43. export const getPreviewPath = (fileObjectKey = '') => {
  44. return baseUrl + basePrefix + "/auth/t/queryFiles?fileName=" + new Date().getTime() + ".pdf&fileObjectKey=" + fileObjectKey;
  45. }
  46. export const getQueryParamsAsObject = (url) => {
  47. url = url || window.location.href;
  48. const queryString = url.split('?')[1];
  49. if (!queryString) {
  50. return {};
  51. }
  52. const queryParams = queryString.split('&');
  53. const paramsObj = {};
  54. queryParams.forEach(function(param) {
  55. const parts = param.split('=');
  56. const key = decodeURIComponent(parts[0]);
  57. const value = decodeURIComponent(parts[1]);
  58. paramsObj[key] = value;
  59. });
  60. return paramsObj;
  61. }
  62. /**
  63. * 复制文本
  64. * @param options
  65. */
  66. export function copyText(options) {
  67. const props = { origin: true, ...options }
  68. let input;
  69. if (props.origin) {
  70. input = document.createElement('textarea')
  71. } else {
  72. input = document.createElement('input')
  73. }
  74. input.setAttribute('readonly', 'readonly')
  75. input.value = props.text
  76. document.body.appendChild(input)
  77. input.select()
  78. if (document.execCommand('copy'))
  79. document.execCommand('copy')
  80. document.body.removeChild(input)
  81. }
  82. export const upLoadImageFun = async (targe) => {
  83. const file = targe.files[0]; // 获取上传的文件
  84. const allowedTypes = [
  85. "image/png",
  86. "application/pdf",
  87. "image/jpg",
  88. "image/jpeg",
  89. ]; // 允许的文件类型
  90. const maxFileSizeMB = 10; // 最大文件大小(以 MB 为单位)
  91. // 校验文件类型
  92. if (!allowedTypes.includes(file.type)) {
  93. alert("请选择(jpg, png, pdf)类型的文件");
  94. return;
  95. }
  96. // 校验文件大小
  97. if (file.size > maxFileSizeMB * 1024 * 1024) {
  98. alert("文件大小不能超过 10MB");
  99. return;
  100. }
  101. const formData = new FormData();
  102. formData.append("file", file);
  103. try {
  104. const res = await screenApi.upLoadImage(formData);
  105. if (res.code === 200) {
  106. return res.data;
  107. } else {
  108. alert(res.msg);
  109. return false
  110. }
  111. } catch (error) {
  112. return "";
  113. }
  114. };
  115. // 简易版防抖
  116. export const debounce = (func, wait) => {
  117. let timeout = null;
  118. return function() {
  119. const context = this;
  120. const args = arguments;
  121. clearTimeout(timeout);
  122. timeout = setTimeout(function() {
  123. func.apply(context, args);
  124. }, wait);
  125. };
  126. }
  127. export const objectCopy = (obj) => {
  128. const newObj = {};
  129. Object.entries(obj).map(([key, value]) => newObj[key] = value);
  130. return newObj;
  131. }