You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
207 B
4 lines
207 B
2 years ago
|
const Mock = require('mockjs');
|
||
|
//格式: Mock.mock( url, post/get , 返回的数据);
|
||
|
Mock.mock('/home/userInfo', 'get', require('./json/home'));
|
||
|
Mock.mock('/news/press', 'get', require('./json/news'));
|