mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 19:41:43 +08:00
43 lines
991 B
Vue
43 lines
991 B
Vue
const { mock } = require('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],
|
|
})
|
|
)
|
|
}
|
|
|
|
module.exports = [
|
|
{
|
|
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,
|
|
}
|
|
},
|
|
},
|
|
]
|