| | |
| | | import request from '@/axios'; |
| | | import request from '@/axios' |
| | | |
| | | export const getListDataScope = (current, size, params) => { |
| | | return request({ |
| | | url: '/blade-system/data-scope/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/data-scope/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | | }) |
| | | } |
| | | |
| | | export const removeDataScope = ids => { |
| | | return request({ |
| | | url: '/blade-system/data-scope/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/data-scope/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | | }, |
| | | }) |
| | | } |
| | | |
| | | export const addDataScope = row => { |
| | | return request({ |
| | | url: '/blade-system/data-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/data-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }) |
| | | } |
| | | |
| | | export const updateDataScope = row => { |
| | | return request({ |
| | | url: '/blade-system/data-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/data-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }) |
| | | } |
| | | |
| | | export const getMenuDataScope = id => { |
| | | return request({ |
| | | url: '/blade-system/data-scope/detail', |
| | | method: 'get', |
| | | params: { |
| | | id, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/data-scope/detail', |
| | | method: 'get', |
| | | params: { |
| | | id, |
| | | }, |
| | | }) |
| | | } |
| | | |
| | | export const getListApiScope = (current, size, params) => { |
| | | return request({ |
| | | url: '/blade-system/api-scope/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/api-scope/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | | }) |
| | | } |
| | | |
| | | export const removeApiScope = ids => { |
| | | return request({ |
| | | url: '/blade-system/api-scope/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/api-scope/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | | }, |
| | | }) |
| | | } |
| | | |
| | | export const addApiScope = row => { |
| | | return request({ |
| | | url: '/blade-system/api-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/api-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }) |
| | | } |
| | | |
| | | export const updateApiScope = row => { |
| | | return request({ |
| | | url: '/blade-system/api-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/api-scope/submit', |
| | | method: 'post', |
| | | data: row, |
| | | }) |
| | | } |
| | | |
| | | export const getMenuApiScope = id => { |
| | | return request({ |
| | | url: '/blade-system/api-scope/detail', |
| | | method: 'get', |
| | | params: { |
| | | id, |
| | | }, |
| | | }); |
| | | }; |
| | | return request({ |
| | | url: '/blade-system/api-scope/detail', |
| | | method: 'get', |
| | | params: { |
| | | id, |
| | | }, |
| | | }) |
| | | } |