Files
buy-lite/server/app/controller/auth.js
2023-01-14 22:30:41 +08:00

21 lines
611 B
JavaScript

const Controller = require("egg").Controller
const table = "sys_user";
class Auth extends Controller {
async token() {
const {ctx: {query}, ctx, app} = this
ctx.validate({phone: "string", password: "password"}, query)
const {phone, password} = query
const user = await app.mysql.get(table, {phone, password})
if (!user?.id) {
return this.ctx.body = {code: 1, msg: "用户名或密码不正确"}
}
const token = app.jwt.sign({id: user?.id}, app.config.jwt.secret)
this.ctx.body = {code: 0, data: "bearer " + token}
this.ctx.status = 200
}
}
module.exports = Auth