mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
25 lines
437 B
JavaScript
25 lines
437 B
JavaScript
import yapi from '../yapi.js'
|
|
class baseController{
|
|
constructor(ctx){
|
|
console.log('baseControler init...')
|
|
}
|
|
|
|
getUid(){
|
|
return 0
|
|
}
|
|
|
|
getLoginStatus(){
|
|
let token = getCookie('_yapi_token');
|
|
let uid = getCookie('_yapi_uid');
|
|
let usermodel
|
|
|
|
usermode.token === token
|
|
return true
|
|
}
|
|
|
|
getRole(){
|
|
return 'admin'
|
|
}
|
|
}
|
|
|
|
module.exports = baseController |