You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
/** |
|
* @program: kicc-ui |
|
* @description: axios帮助工具类 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/7 |
|
*/ |
|
|
|
import { isObject, isString } from '/@/utils/is'; |
|
|
|
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'; |
|
|
|
export function joinTimestamp<T extends boolean>( |
|
join: boolean, |
|
restful: T, |
|
): T extends true ? string : object; |
|
|
|
export function joinTimestamp(join: boolean, restful = false): string | object { |
|
if (!join) { |
|
return restful ? '' : {}; |
|
} |
|
const now = new Date().getTime(); |
|
if (restful) { |
|
return `?_t=${now}`; |
|
} |
|
return { _t: now }; |
|
} |
|
|
|
/** 格式请求参数dayjs时间 */ |
|
export function formatRequestDate(params: Recordable) { |
|
if (Object.prototype.toString.call(params) !== '[object Object]') { |
|
return; |
|
} |
|
for (const key in params) { |
|
const format = params[key]?.format ?? null; |
|
if (format && typeof format === 'function') { |
|
params[key] = params[key].format(DATE_TIME_FORMAT); |
|
} |
|
if (isString(key)) { |
|
const value = params[key]; |
|
if (value) { |
|
try { |
|
params[key] = isString(value) ? value.trim() : value; |
|
} catch (error: any) { |
|
throw new Error(error); |
|
} |
|
} |
|
} |
|
if (isObject(params[key])) { |
|
formatRequestDate(params[key]); |
|
} |
|
} |
|
}
|
|
|