mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
44 lines
1006 B
JavaScript
44 lines
1006 B
JavaScript
import { mock } from "mockjs";
|
|
|
|
const List = [];
|
|
const count = 999;
|
|
let num = 0;
|
|
for (let i = 0; i < count; i++) {
|
|
List.push(
|
|
mock({
|
|
uuid: "@uuid",
|
|
image: `https://picsum.photos/300/600?random=${num++}`,
|
|
title: "@ctitle",
|
|
description: "@csentence",
|
|
link: "https://www.baidu.com",
|
|
price: "@integer(100, 500)",
|
|
"status|1": [1, 0],
|
|
"isRecommend|1": [1, 0],
|
|
})
|
|
);
|
|
}
|
|
|
|
export default [
|
|
{
|
|
url: "/goodsList/getList",
|
|
type: "post",
|
|
response(config) {
|
|
const { title = "", pageNo = 1, pageSize = 20 } = config.body;
|
|
let mockList = List.filter((item) => {
|
|
if (title && item.title.indexOf(title) < 0) return false;
|
|
return true;
|
|
});
|
|
const pageList = mockList.filter(
|
|
(item, index) =>
|
|
index < pageSize * pageNo && index >= pageSize * (pageNo - 1)
|
|
);
|
|
return {
|
|
code: 200,
|
|
msg: "success",
|
|
totalCount: count,
|
|
data: pageList,
|
|
};
|
|
},
|
|
},
|
|
];
|