Skip to content
  • This project
    • Loading...
  • Sign in

杨炀 / dangan_dataV

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • dangan_dataV
  • src
  • apiPc
  • login.js
  • 杨炀's avatar
    init · 4237375e
    杨炀 committed 2024-10-11 11:19:43 +0800
    4237375e
login.js 295 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import request from '@/utils/request'

export function loginDance(username, password, code, uuid) {
  const data = {
    username,
    password,
    code,
    uuid
  }
  return request({
    url: `/userLogin`,
    headers: {
      isToken: false
    },
    method: 'post',
    data: data
  })
}