screenFront/src/http/rule/index.ts

19 lines
520 B
TypeScript
Raw Normal View History

2023-08-02 10:04:04 +00:00
/*
* @FilePath: \wwwd:\code\screenFront\src\http\realtimeSecurity\index.ts
* @Author:
* @文件版本: V1.0.0
* @Date: 2023-02-14 08:45:45
* @Description:
*
* 版权信息 : 2023 by ${}, All Rights Reserved.
*/
import {get,post} from "@/utils/http"
2023-08-03 03:37:01 +00:00
//url
2023-08-02 10:04:04 +00:00
export function selectPermission({address,hash}){
2023-08-03 03:37:01 +00:00
return get('/system/screen/selectPermission',{address,hash})
}
//首页
export function getScreenByHash({hash}){
return get('/system/screen/getScreenByHash',{hash})
2023-08-02 10:04:04 +00:00
}