1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import Vue from 'vue'
-
-
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- Vue.use(ElementUI)
-
- import App from './App'
- import router from './router'
- import store from './store'
- import echarts from 'echarts'
-
- import './style/index.css'
- import './style/tabletree.css'
-
-
- Vue.config.productionTip = false
- Vue.prototype.$echarts = echarts
-
- /* eslint-disable no-new */
- new Vue({
- el: '#app',
- router,
- store,
- render: h => h(App)
- })
- 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;
- }
|