main.js 1.2 KB

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