| 12345678910111213141516171819202122232425 |
- import axios from './request'
- // 用户登录接口
- export const userLogin = (data) => {
- return axios({
- method: 'post',
- url: '/admin/login',
- data
- })
- }
- // 获取表相关列表
- export const getBList = (data) => {
- return axios({
- method: 'post',
- url: '/db/table/getList',
- data
- })
- }
- // 新增表
- export const addTable = (data) => {
- return axios({
- method: 'post',
- url: '/db/table/createTable',
- data
- })
- }
|