| 12345678910111213141516171819 |
- import request from '@/router/axios';
- export const submit = (row) => {
- return request({
- url: '/api/blade-user/update',
- method: 'post',
- data: row
- })
- }
- export const getDetail = (id) => {
- return request({
- url: '/api/blade-user/detail',
- method: 'get',
- params: {
- id
- }
- })
- }
|