useNoAuth.js 440 B

1234567891011121314
  1. import noAuthImg from '@/assets/imgs/dataEDB/lock_big.png'
  2. import noAuthIco from '@/assets/imgs/dataEDB/lock_black.png'
  3. //无数据权限 缺省图和提示
  4. export function useNoAuth() {
  5. return {
  6. noAuthImg,
  7. noAuthIco,
  8. edb: '暂无指标权限,如有问题请联系管理员!',
  9. chart: '暂无图表权限,如有问题请联系管理员!',
  10. sheet: '暂无表格权限,如有问题请联系管理员!',
  11. }
  12. }