main.js 1.2 KB

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