123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import service from '@/utils/request'
- // @Summary 用户登录
- // @Produce application/json
- // @Param 可以什么都不填 调一下即可
- // @Router /menu/getMenu [post]
- export const asyncMenu = () => {
- return service({
- url: "/menu/getMenu",
- method: 'post',
- })
- }
- // @Summary 获取menu列表
- // @Produce application/json
- // @Param {
- // page int
- // pageSize int
- // }
- // @Router /menu/getMenuList [post]
- export const getMenuList = (data) => {
- return service({
- url: "/menu/getMenuList",
- method: 'post',
- data
- })
- }
- // @Summary 获取menu列表
- // @Produce application/json
- // @Param menu Object
- // @Router /menu/getMenuList [post]
- export const addBaseMenu = (data) => {
- return service({
- url: "/menu/addBaseMenu",
- method: 'post',
- data
- })
- }
- // @Summary 获取基础路由列表
- // @Produce application/json
- // @Param 可以什么都不填 调一下即可
- // @Router /menu/getBaseMenuTree [post]
- export const getBaseMenuTree = () => {
- return service({
- url: "/menu/getBaseMenuTree",
- method: 'post',
- })
- }
- // @Summary 添加用户menu关联关系
- // @Produce application/json
- // @Param menus Object authorityId string
- // @Router /menu/getMenuList [post]
- export const addMenuAuthority = (data) => {
- return service({
- url: "/menu/addMenuAuthority",
- method: 'post',
- data
- })
- }
- // @Summary 获取用户menu关联关系
- // @Produce application/json
- // @Param authorityId string
- // @Router /menu/getMenuAuthority [post]
- export const getMenuAuthority = (data) => {
- return service({
- url: "/menu/getMenuAuthority",
- method: 'post',
- data
- })
- }
|