Files
GDstarmotion-admin/mock/monitor.mock.ts
PC-202306242200\Administrator d4720a32e1 第一次
2024-09-10 16:47:49 +08:00

15 lines
314 B
TypeScript

import type { Request, Response } from 'express';
import mockjs from 'mockjs';
const getTags = (_: Request, res: Response) => {
return res.json({
data: mockjs.mock({
'list|100': [{ name: '@city', 'value|1-100': 150, 'type|0-2': 1 }],
}),
});
};
export default {
'GET /api/tags': getTags,
};