知与行后台管理端

app.js 743B

1234567891011121314151617181920212223242526
  1. // (function (doc, win) {
  2. // var docEl = doc.documentElement,
  3. // resizeEvt = 'onorientationchange' in window ? 'onorientationchange' : 'resize',
  4. // recalc = function () {
  5. // var clientWidth = docEl.clientWidth;
  6. // if (!clientWidth) return;
  7. // if (clientWidth >= 750) {
  8. // docEl.style.fontSize = '100px';
  9. // } else {
  10. // docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
  11. // }
  12. // };
  13. // if (!doc.addEventListener) return;
  14. // win.addEventListener(resizeEvt, recalc, false);
  15. // doc.addEventListener('DOMContentLoaded', recalc, false);
  16. // })(document, window);
  17. export const dva = {
  18. config: {
  19. onError(e) {
  20. e.preventDefault();
  21. console.error(e);
  22. },
  23. },
  24. };