123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- const baseUrl = import.meta.env.VITE_BASE_URL;
- const basePrefix = import.meta.env.VITE_BASE_PREFIX;
- import { screenApi } from "@/api/screen"
- /** 统一 - get和post请求书写方式 */
- export function tansParams(params) {
- let result = ''
- for (const propName of Object.keys(params)) {
- const value = params[propName];
- const part = encodeURIComponent(propName) + "=";
- if (value !== null && typeof (value) !== "undefined") {
- if (typeof value === 'object') {
- for (const key of Object.keys(value)) {
- if (value[key] !== null && typeof (value[key]) !== 'undefined') {
- const params = propName + '[' + key + ']';
- const subPart = encodeURIComponent(params) + "=";
- result += subPart + encodeURIComponent(value[key]) + "&";
- }
- }
- } else {
- result += part + encodeURIComponent(value) + "&";
- }
- }
- }
- return result;
- }
- /** localhost - methods */
- export class LocalCache {
- static setCath(key, value) {
- window.localStorage.setItem(key, JSON.stringify(value));
- }
- static getCache(key) {
- const value = window.localStorage.getItem(key);
- return value ? JSON.parse(value) : {};
- }
- static deleteCatch(key) {
- window.localStorage.removeItem(key);
- }
- static clearCache() {
- window.localStorage.clear();
- }
- }
- // get file path
- export const getPreviewPath = (fileObjectKey = '') => {
- return baseUrl + basePrefix + "/auth/t/queryFiles?fileName=" + new Date().getTime() + ".pdf&fileObjectKey=" + fileObjectKey;
- }
- export const getQueryParamsAsObject = (url) => {
- url = url || window.location.href;
- const queryString = url.split('?')[1];
- if (!queryString) {
- return {};
- }
- const queryParams = queryString.split('&');
- const paramsObj = {};
- queryParams.forEach(function(param) {
- const parts = param.split('=');
- const key = decodeURIComponent(parts[0]);
- const value = decodeURIComponent(parts[1]);
- paramsObj[key] = value;
- });
- return paramsObj;
- }
- /**
- * 复制文本
- * @param options
- */
- export function copyText(options) {
- const props = { origin: true, ...options }
- let input;
- if (props.origin) {
- input = document.createElement('textarea')
- } else {
- input = document.createElement('input')
- }
- input.setAttribute('readonly', 'readonly')
- input.value = props.text
- document.body.appendChild(input)
- input.select()
- if (document.execCommand('copy'))
- document.execCommand('copy')
- document.body.removeChild(input)
- }
- export const upLoadImageFun = async (targe) => {
- const file = targe.files[0]; // 获取上传的文件
- const allowedTypes = [
- "image/png",
- "application/pdf",
- "image/jpg",
- "image/jpeg",
- ]; // 允许的文件类型
- const maxFileSizeMB = 10; // 最大文件大小(以 MB 为单位)
- // 校验文件类型
- if (!allowedTypes.includes(file.type)) {
- alert("请选择(jpg, png, pdf)类型的文件");
- return;
- }
- // 校验文件大小
- if (file.size > maxFileSizeMB * 1024 * 1024) {
- alert("文件大小不能超过 10MB");
- return;
- }
- const formData = new FormData();
- formData.append("file", file);
- try {
- const res = await screenApi.upLoadImage(formData);
- if (res.code === 200) {
- return res.data;
- } else {
- alert(res.msg);
- return false
- }
- } catch (error) {
- return "";
- }
- };
- // 简易版防抖
- export const debounce = (func, wait) => {
- let timeout = null;
- return function() {
- const context = this;
- const args = arguments;
- clearTimeout(timeout);
- timeout = setTimeout(function() {
- func.apply(context, args);
- }, wait);
- };
- }
- export const objectCopy = (obj) => {
- const newObj = {};
- Object.entries(obj).map(([key, value]) => newObj[key] = value);
- return newObj;
- }
|