/* * @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" //url export function selectPermission({address,hash}){ return get('/system/screen/selectPermission',{address,hash}) } //首页 export function getScreenByHash({hash}){ return get('/system/screen/getScreenByHash',{hash}) }