145 lines
3.5 KiB
JavaScript
145 lines
3.5 KiB
JavaScript
|
|
import Vue from "vue";
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
import "normalize.css/normalize.css"; // a modern alternative to CSS resets
|
|
|
|
// 懒加载
|
|
import VueLazyload from "vue-lazyload";
|
|
|
|
import Element from "element-ui";
|
|
import cascader from "element-ui/lib/cascader";
|
|
import Moment from "moment";
|
|
import "./styles/element-variables.scss";
|
|
import 'viewerjs/dist/viewer.css';
|
|
import "@/styles/index.scss"; // global css
|
|
import "@/styles/iconfont/iconfont.css";
|
|
import "@/styles/iconfont2/iconfont.css";
|
|
|
|
import App from "./App";
|
|
import store from "./store";
|
|
import router from "./router";
|
|
import Viewer from 'v-viewer';
|
|
import FormCreate from "@form-create/element-ui";
|
|
import uploadPicture from "./components/uploadPicture/uploadFrom";
|
|
import VueUeditorWrap from "vue-ueditor-wrap";
|
|
import newsCategory from "./components/newsCategory/newsCategoryFrom";
|
|
import { getToken } from "./utils/auth";
|
|
|
|
import "./icons"; // icon
|
|
import "./permission"; // permission control
|
|
// import './utils/error-log' // error log
|
|
import modalForm from "@/libs/modal-form";
|
|
import videoCloud from "@/utils/videoCloud";
|
|
import { modalSure, deleteSure } from "@/libs/public";
|
|
import { modalSureDelete } from "@/libs/public";
|
|
import * as filters from "./filters";
|
|
import notice from "@/libs/notice";
|
|
import guidancePop from "@/components/guidancePop";
|
|
// swiper
|
|
import VueAwesomeSwiper from "vue-awesome-swiper";
|
|
import "swiper/dist/css/swiper.css";
|
|
|
|
Vue.use(uploadPicture);
|
|
Vue.use(FormCreate);
|
|
Vue.use(newsCategory);
|
|
Vue.component("vue-ueditor-wrap", VueUeditorWrap);
|
|
Vue.use(VueAwesomeSwiper);
|
|
Vue.use(Viewer, {
|
|
defaultOptions: {
|
|
zIndex: 9999,
|
|
},
|
|
});
|
|
Vue.use(VueLazyload, {
|
|
preLoad: 1.3,
|
|
error: require("@/assets/images/no.png"),
|
|
loading: require("@/assets/images/moren.jpg"),
|
|
attempt: 1,
|
|
listenEvents: [
|
|
"scroll",
|
|
"wheel",
|
|
"mousewheel",
|
|
"resize",
|
|
"animationend",
|
|
"transitionend",
|
|
"touchmove"
|
|
]
|
|
});
|
|
|
|
Vue.prototype.$modalForm = modalForm;
|
|
Vue.prototype.$videoCloud = videoCloud;
|
|
Vue.prototype.$modalSure = modalSure;
|
|
Vue.prototype.$deleteSure = deleteSure;
|
|
Vue.prototype.$modalSureDelete = modalSureDelete;
|
|
Vue.prototype.moment = Moment;
|
|
|
|
Vue.component('guidancePop',guidancePop);
|
|
|
|
Vue.use(Element, {
|
|
size: Cookies.get("size") || "medium", // set element-ui default size
|
|
zIndex: 1000
|
|
});
|
|
Vue.use(cascader);
|
|
|
|
// register global utility filters
|
|
Object.keys(filters).forEach(key => {
|
|
Vue.filter(key, filters[key]);
|
|
});
|
|
|
|
Vue.directive("debounce", {
|
|
inserted(el, binding) {
|
|
el.addEventListener("click", e => {
|
|
el.classList.add("is-disabled");
|
|
el.disabled = true;
|
|
setTimeout(() => {
|
|
el.disabled = false;
|
|
el.classList.remove("is-disabled");
|
|
}, 1000);
|
|
});
|
|
}
|
|
});
|
|
|
|
const token = getToken();
|
|
let _notice;
|
|
if (token) {
|
|
_notice = notice(token);
|
|
}
|
|
|
|
var _hmt = _hmt || [];
|
|
(function() {
|
|
var hm = document.createElement("script");
|
|
hm.src = "https://cdn.oss.9gt.net/js/es.js?version=merchantv2.0";
|
|
var s = document.getElementsByTagName("script")[0];
|
|
s.parentNode.insertBefore(hm, s);
|
|
})();
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
/* 路由发生变化修改页面title */
|
|
if (_hmt) {
|
|
if (to.path) {
|
|
_hmt.push(["_trackPageview", "/#" + to.fullPath]);
|
|
}
|
|
}
|
|
// if (to.meta.title) {
|
|
// document.title = to.meta.title + '-' + JSON.parse(Cookies.get('MerInfo')).login_title
|
|
// }
|
|
next();
|
|
});
|
|
|
|
Vue.config.productionTip = false;
|
|
export default new Vue({
|
|
el: "#app",
|
|
router,
|
|
data: {
|
|
notice: _notice
|
|
},
|
|
methods: {
|
|
closeNotice() {
|
|
this.notice && this.notice();
|
|
}
|
|
},
|
|
store,
|
|
render: h => h(App)
|
|
});
|