| | |
| | | Vue.prototype.$headerCellStyle = headerCellStyle() // 设置全局表头样式 |
| | | Vue.prototype.$cellStyle = cellStyle() // 设置全局表体样式 |
| | | |
| | | // import 'lib-flexible' // 阿里可伸缩布局方案 |
| | | // import 'lib-flexible-computer' |
| | | |
| | | import '../public/static/theme/index.css' /* icofont */ |
| | | |
| | | // 打印 |
| | | // import Print from 'vue-print-nb' |
| | | import Print from './components/Print/vue-print-nb' |
| | | Vue.use(Print) |
| | | |
| | | // 水印 |
| | | import watermark from './utils/watermark.js' |
| | | Vue.prototype.$watermark = watermark |
| | | |
| | | // 时间过滤器 |
| | | Vue.filter('dataFormat', function(originVal) { |
| | | const dt = new Date(originVal) |
| | | |
| | | const y = dt.getFullYear() |
| | | const m = (dt.getMonth() + 1 + '').padStart(2, '0') |
| | | const d = (dt.getDate() + '').padStart(2, '0') |
| | | |
| | | const hh = (dt.getHours() + '').padStart(2, '0') |
| | | const mm = (dt.getMinutes() + '').padStart(2, '0') |
| | | const ss = (dt.getSeconds() + '').padStart(2, '0') |
| | | |
| | | return `${y}-${m}-${d} ${hh}:${mm}:${ss}` |
| | | }) |
| | | new Vue({ |
| | | el: '#app', |
| | | router, |