You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
552 B
JavaScript
31 lines
552 B
JavaScript
export default [
|
|
{
|
|
url: '/prod-api/user/info',
|
|
type: 'get',
|
|
response: config => {
|
|
return {
|
|
code: 200,
|
|
entry: {
|
|
name: 'Ewall&熊猫',
|
|
avatar:
|
|
'https://raw.githubusercontent.com/Ewall1106/panda-vue-template/master/src/assets/logo.png',
|
|
id: '00001'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
{
|
|
url: '/prod-api/user/login',
|
|
type: 'post',
|
|
response: config => {
|
|
return {
|
|
code: 200,
|
|
entry: {
|
|
token: 'mall-token123456'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|