You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.0 KiB
95 lines
3.0 KiB
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
import Vue from 'vue'
|
|
import App from './App'
|
|
import store from './store'
|
|
import Cache from './utils/cache'
|
|
import util from 'utils/util'
|
|
import configs from './config/app.js'
|
|
import socket from './libs/new_chat.js'
|
|
import i18n from './utils/lang.js';
|
|
Vue.prototype.$util = util;
|
|
Vue.prototype.$baseurl = 'https://rzds.njrzwl.cn';
|
|
Vue.prototype.$config = configs;
|
|
Vue.prototype.$Cache = Cache;
|
|
Vue.prototype.$eventHub = new Vue();
|
|
Vue.prototype.$socket = new socket();
|
|
Vue.config.productionTip = false
|
|
import pageLoading from './components/pageLoading.vue'
|
|
import skeleton from './components/skeleton/index.vue'
|
|
import easyLoadimage from '@/components/easy-loadimage/easy-loadimage.vue'
|
|
Vue.component('skeleton', skeleton)
|
|
Vue.component('pageLoading', pageLoading)
|
|
Vue.component('easyLoadimage', easyLoadimage)
|
|
import ActivePermission from './libs/permission.js';
|
|
Vue.prototype.$permission = ActivePermission;
|
|
// #ifdef H5
|
|
import {
|
|
parseQuery
|
|
} from "./utils";
|
|
import Auth from './libs/wechat';
|
|
import {
|
|
SPREAD
|
|
} from './config/cache';
|
|
Vue.prototype.$wechat = Auth;
|
|
|
|
|
|
|
|
let cookieName = "VCONSOLE",
|
|
query = parseQuery(),
|
|
urlSpread = query["spread"],
|
|
vconsole = query[cookieName.toLowerCase()],
|
|
md5Crmeb = "b14d1e9baeced9bb7525ab19ee35f2d2", //CRMEB MD5 加密开启vconsole模式
|
|
md5UnCrmeb = "3dca2162c4e101b7656793a1af20295c"; //UN_CREMB MD5 加密关闭vconsole模式
|
|
|
|
if (urlSpread !== undefined) {
|
|
var spread = Cache.get(SPREAD);
|
|
urlSpread = parseInt(urlSpread);
|
|
if (!Number.isNaN(urlSpread) && spread !== urlSpread) {
|
|
Cache.set("spread", urlSpread || 0);
|
|
} else if (spread === 0 || typeof spread !== "number") {
|
|
Cache.set("spread", urlSpread || 0);
|
|
}
|
|
}
|
|
|
|
if (vconsole !== undefined) {
|
|
if (vconsole === md5UnCrmeb && Cache.has(cookieName))
|
|
Cache.clear(cookieName);
|
|
} else vconsole = Cache.get(cookieName);
|
|
|
|
// import VConsole from './pages/extension/components/vconsole.min.js'
|
|
|
|
// if (vconsole !== undefined && vconsole === md5Crmeb) {
|
|
// Cache.set(cookieName, md5Crmeb, 3600);
|
|
// let vConsole = new VConsole();
|
|
// }
|
|
|
|
// let snsapiBase = 'snsapi_base';
|
|
// Auth.isWeixin() && Auth.oAuth(snsapiBase);
|
|
|
|
// 记录进入app时的url
|
|
if (typeof window.entryUrl === 'undefined' || window.entryUrl === '') {
|
|
window.entryUrl = location.href
|
|
}
|
|
|
|
//全局路由前置守卫
|
|
// #endif
|
|
|
|
App.mpType = 'app'
|
|
|
|
|
|
const app = new Vue({
|
|
...App,
|
|
store,
|
|
Cache,
|
|
i18n,
|
|
})
|
|
app.$mount();
|
|
|