index.js 689 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. toastr.options = {
  2. "closeButton": true,
  3. "positionClass": "toast-top-center"
  4. }
  5. function showSuccessMessage(msg) {
  6. toastr.success(msg)
  7. }
  8. function showErrorMessage(msg) {
  9. toastr.error(msg)
  10. }
  11. function showWarningMessage(msg) {
  12. toastr.warning(msg)
  13. }
  14. $(function(){
  15. var height = window.innerHeight;
  16. console.log(height);
  17. $("#tab").css("height", height+"px");
  18. $("#main").css("height", height+"px");
  19. })
  20. new Vue({
  21. el: '#wrapper',
  22. data: {
  23. },
  24. created: function() {
  25. homeAPI.baseinfo().then(function(res) {
  26. if(res.status == 200) {
  27. var infoStr = JSON.stringify(res.data);
  28. localStorage.setItem("docInfo", infoStr);
  29. }
  30. })
  31. }
  32. })