mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
65 lines
1.1 KiB
TypeScript
65 lines
1.1 KiB
TypeScript
/**
|
|
*
|
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
*
|
|
* @date 2023-08-11
|
|
*
|
|
* @workspace ray-template
|
|
*
|
|
* @remark 今天也是元气满满撸代码的一天
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
/**
|
|
*
|
|
* @param pageCurrent 当前页码
|
|
* @param pageSize 分页展示条数
|
|
* @param array 数据
|
|
*
|
|
* mock 分页展示数据
|
|
*/
|
|
export function pagination<T = any>(
|
|
pageCurrent: number,
|
|
pageSize: number,
|
|
array: T[],
|
|
): T[] {
|
|
const offset = (pageCurrent - 1) * Number(pageSize)
|
|
|
|
return offset + Number(pageSize) >= array.length
|
|
? array.slice(offset, array.length)
|
|
: array.slice(offset, offset + Number(pageSize))
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param value 原始数据
|
|
*
|
|
* 格式化数据为 json 格式
|
|
*/
|
|
export function stringify<T = unknown>(value: T) {
|
|
return JSON.stringify(value)
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param res 数据
|
|
* @param code 响应码
|
|
* @param msg 响应信息
|
|
*/
|
|
export function response<T = any>(
|
|
res: T,
|
|
code: number,
|
|
msg: string,
|
|
params?: object,
|
|
) {
|
|
const basic = {
|
|
code,
|
|
msg,
|
|
data: res,
|
|
...params,
|
|
}
|
|
|
|
return basic
|
|
}
|