java-mall-admin/mock/controller/router.js
2024-11-01 16:24:11 +08:00

18 lines
402 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @description router全局配置如有必要可分文件抽离其中asyncRoutes只有在intelligence模式下才会用到pro版只支持remixIcon图标具体配置请查看vip群文档
*/
const data = []
module.exports = [
{
url: '/router/getList',
type: 'get',
response() {
return {
code: 200,
msg: 'success',
data,
}
},
},
]