| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- module.exports = [
- // app-list
- {
- url: '/vue-element-admin/app/get-app-list',
- type: 'get',
- response: _ => {
- return {
- code: 0,
- message: 'ok',
- data: {
- current_page: 1,
- 'data|5': [{
- 'id|+1': 1,
- 'name|1': ['展会系统', '后台系统', '后台系统2', '展会系统2', '后台系统3'],
- 'short_name|1': ['zhxt', 'htxt', 'zhxt1', 'htxt1'],
- 'domain|1': ['http://www.bbshenqian.cn/', 'http://www.baidu.com/']
- }],
- 'from': 0,
- 'last_page': 1,
- 'per_page': 10,
- 'to': 10,
- 'total': 5
- }
- }
- }
- },
- // edit-app-menus
- {
- url: '/vue-element-admin/app/edit-app-menus',
- type: 'get',
- response: _ => {
- return {
- code: 0,
- message: 'ok',
- data: {
- current_page: 1,
- 'data|10': [{
- 'id|+1': 1,
- 'ver_name|1': ['基础版', '至尊纪念版', '标准2.0版'],
- 'name|1': ['展会系统', '后台系统'],
- 'price|1': ['200', '2000'],
- 'tag|1': ['zhxt', 'htxt'],
- 'desc|1': ['基础版拥有一些基础菜单', '至尊纪念版拥有', '标准2.0版拥有'],
- 'update_time|1': ['2020-12-19 07:09:48', '2020-12-19 07:09:00', '2015-06-17 05:20:00']
- }],
- 'from': 0,
- 'last_page': 1,
- 'per_page': 10,
- 'to': 10,
- 'total': 20
- }
- }
- }
- },
- // get-app
- {
- url: '/vue-element-admin/app/get-app',
- type: 'get',
- response: _ => {
- return {
- 'code': 0,
- 'message': 'ok',
- 'data': {
- 'id': 5,
- 'short_name': 'kfxt',
- 'name': '开发系统',
- 'domain': 'http://www.bbshenqian.cn',
- 'code': 'kfxt',
- 'key': 'kfxt',
- 'allow_api': 0,
- 'logout_url': 'http://www.bbshenqian.cn/',
- 'status': 0,
- 'update_time': '2020-12-19 03:40:00',
- 'create_time': '2020-12-19 03:14:53'
- }
- }
- }
- }
- ]
|