大屏页面初始化

This commit is contained in:
2026-03-11 09:27:19 +08:00
parent b17a12c2d7
commit a65912bf8b
13 changed files with 36 additions and 34 deletions

View File

@@ -3,7 +3,7 @@ import request from '@/utils/request';
/**
* 获取指标信息列表
*/
export function getHomeRoleList(params) {
export function getHomeRoleList(params: any) {
return request({
url: '/biz/homeRole/list',
method: 'get',
@@ -14,7 +14,7 @@ export function getHomeRoleList(params) {
/**
* 获取指标信息列表
*/
export function getHomeRoleUserList(params) {
export function getHomeRoleUserList(params: any) {
return request({
url: '/biz/homeRole/userList',
method: 'get',
@@ -25,7 +25,7 @@ export function getHomeRoleUserList(params) {
/**
* 获取角色授权的菜单
*/
export function getHomeRoleMenus(params) {
export function getHomeRoleMenus(params: any) {
return request({
url: '/biz/homeRole/roleMenus',
method: 'get',
@@ -59,7 +59,7 @@ export function getHomeRoleSave(data) {
/**
* 删除角色信息
*/
export function getHomeRoleDelete(params) {
export function getHomeRoleDelete(params: any) {
return request({
url: '/biz/homeRole/delete',
method: 'post',