1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| const totalCount = 3
| const List = [
| {
| id: '@id',
| username: 'admin',
| password: 'admin',
| email: '@email',
| permissions: ['admin'],
| datatime: '@datetime',
| },
| {
| id: '@id',
| username: 'editor',
| password: 'editor',
| email: '@email',
| permissions: ['editor'],
| datatime: '@datetime',
| },
| {
| id: '@id',
| username: 'test',
| password: 'test',
| email: '@email',
| permissions: ['admin', 'editor'],
| datatime: '@datetime',
| },
| ]
| module.exports = [
| {
| url: '/userManagement/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,
| data: pageList,
| }
| },
| },
| {
| url: '/userManagement/doEdit',
| type: 'post',
| response() {
| return {
| code: 200,
| msg: '模拟保存成功',
| }
| },
| },
| {
| url: '/userManagement/doDelete',
| type: 'post',
| response() {
| return {
| code: 200,
| msg: '模拟删除成功',
| }
| },
| },
| ]
|
|