test.js 242 B

123456789101112131415161718
  1. const List = [
  2. {
  3. id: 1,
  4. },
  5. ]
  6. module.exports = [
  7. {
  8. url: '/test/getList',
  9. type: 'get',
  10. response() {
  11. return {
  12. code: 200,
  13. msg: 'success',
  14. data: { list: List, total: 123 },
  15. }
  16. },
  17. },
  18. ]