mpVuePackage.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. (function(global,factory){
  2. typeof define == 'function' && define.amd && define(factory)
  3. })(this,function(){
  4. return function(){
  5. return {
  6. methods:{
  7. hideModelFrameSpin(){
  8. vm.showStatus.modelFrameSpinShow = false;
  9. },
  10. message(type,config){
  11. switch (type) {
  12. case 'success':
  13. return vm.$Message.success(config);
  14. break;
  15. case 'warning':
  16. return vm.$Message.warning(config);
  17. break;
  18. case 'error':
  19. return vm.$Message.error(config);
  20. break;
  21. case 'loading':
  22. return vm.$Message.loading(config);
  23. break;
  24. default :
  25. return vm.$Message.info(config || type);
  26. break;
  27. }
  28. },
  29. notice(type,config){
  30. switch (type) {
  31. case 'info':
  32. return vm.$Notice.info(config);
  33. break;
  34. case 'success':
  35. return vm.$Notice.success(config);
  36. break;
  37. case 'warning':
  38. return vm.$Notice.warning(config);
  39. break;
  40. case 'error':
  41. return vm.$Notice.error(config);
  42. break;
  43. default :
  44. return vm.$Notice.open(config || type);
  45. break;
  46. }
  47. },
  48. noticeClose(name){
  49. return vm.$Notice.close(name);
  50. },
  51. noticeDestroy(){
  52. return vm.$Notice.destroy();
  53. },
  54. addModalFrame:function(title,src,opt){
  55. vm.showStatus.modelFrameSpinShow = (src != vm.modalFrame.frame$vm.src);
  56. vm.modalFrame.title = title;
  57. vm.modalFrame.frame$vm.src = src;
  58. vm.modalFrame.isShow = true;
  59. opt.width && (vm.modalFrame.width = opt.width);
  60. opt.height && (vm.modalFrame.frame$vm.height = opt.height);
  61. }
  62. }
  63. }
  64. }
  65. });