appfun.ts 246 B

12345678910111213
  1. //获取文件路径
  2. export function getFilePath (file_path){
  3. if(file_path) return file_path;
  4. return null
  5. }
  6. //获取路由地址
  7. export function getRouterUrl (href){
  8. return window.location.origin+window.location.pathname+href
  9. }