12345678910111213141516171819202122 |
- module.exports = [
- // user login
- {
- url: '/sysDict/type/system_type',
- type: 'get',
- response: config => {
- return {
- code: 200,
- msg: 'success',
- data: {
- total: 43,
- records: [
- { 'id': 1, 'value': '1', 'label': 'Type1', 'sort': 1 },
- { 'id': 2, 'value': '2', 'label': 'Type2', 'sort': 2 },
- { 'id': 3, 'value': '3', 'label': 'Type3', 'sort': 3 },
- { 'id': 4, 'value': '4', 'label': 'Type4', 'sort': 4 }
- ]
- }
- }
- }
- }
- ]
|