1 Star 0 Fork 73

ReposFork/YYC松鼠短视频系统-前端-uniapp-开源--优雅草科技官方发布

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
yangjiasong 提交于 2022-12-10 17:34 . 推送功能提交
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()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/repos-fork/songshu-video-page.git
git@gitee.com:repos-fork/songshu-video-page.git
repos-fork
songshu-video-page
YYC松鼠短视频系统-前端-uniapp-开源--优雅草科技官方发布
master

搜索帮助