代码拉取完成,页面将自动刷新
import Vue from 'vue'
import App from './App'
import api from './api/index.js'
import config from './common/config.js'
import util from './common/util.js'
import imUtils from "./common/imTools.js"
import jpushIM from "./common/im.js"
Vue.config.productionTip = false
// 引入vuex 状态库
import store from "./store";
Vue.prototype.$loading = function(status) {
if (status) {
if (status == "1" || status == "0") {
store.commit("switch_loading", status)
} else {
console.log("输入的参数 有误,应为 0/1");
}
} else {
store.commit("switch_loading", 'change')
}
};
/* im-start */
Vue.prototype.imUtils = imUtils;
Vue.prototype.jpushIM = jpushIM;
/* im-end */
// 状态数据
Vue.prototype.$api = api;
Vue.prototype.$store = store;
Vue.prototype.$config = config;
Vue.prototype.$utils = util;
App.mpType = 'app'
Array.prototype.indexOf = function(val) {
for (var i = 0; i < this.length; i++) {
if (this[i] == val) return i;
}
return -1;
};
Array.prototype.remove = function(val) {
var index = indexOf(val);
if (index > -1) {
this.splice(index, 1);
}
};
Date.prototype.Format = function(fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"H+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[
k]).substr(("" + o[k]).length)));
return fmt;
}
const app = new Vue({
store,
...App
})
app.$mount()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。