main.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import Vue from 'vue'
  2. import App from './App'
  3. // #ifdef H5
  4. import wx from 'weixin-jsapi'
  5. import './mixins/mixin'
  6. // import VConsole from 'vconsole';
  7. // new VConsole();
  8. // import eruda from 'eruda';
  9. // eruda.init();
  10. console.info('v2.4.40');
  11. Vue.prototype.wx = wx //声明扫码
  12. Vue.prototype.audios = [] //待播放的语音集合
  13. // #endif
  14. // #ifdef APP-PLUS
  15. Vue.prototype.$ws = null//websocket
  16. // #endif
  17. Vue.config.productionTip = false
  18. Date.prototype.Format = function (fmt) {
  19. var o = {
  20. "M+": this.getMonth() + 1, //月份
  21. "d+": this.getDate(), //日
  22. "h+": this.getHours(), //小时
  23. "m+": this.getMinutes(), //分
  24. "s+": this.getSeconds(), //秒
  25. "q+": Math.floor((this.getMonth() + 3) / 3), //季度
  26. S: this.getMilliseconds(), //毫秒
  27. };
  28. if (/(y+)/.test(fmt))
  29. fmt = fmt.replace(
  30. RegExp.$1,
  31. (this.getFullYear() + "").substr(4 - RegExp.$1.length)
  32. );
  33. for (var k in o)
  34. if (new RegExp("(" + k + ")").test(fmt))
  35. fmt = fmt.replace(
  36. RegExp.$1,
  37. RegExp.$1.length == 1
  38. ? o[k]
  39. : ("00" + o[k]).substr(("" + o[k]).length)
  40. );
  41. return fmt;
  42. };
  43. // 日期过滤器
  44. Vue.filter('formatDate', function(timestamp, format){
  45. console.log(timestamp, format);
  46. return new Date(timestamp).Format(format);
  47. })
  48. App.mpType = 'app'
  49. const app = new Vue({
  50. ...App
  51. })
  52. app.$mount()