loulijun2021
2022-07-28 9193459fbb692abc227b1643ae52f65a2e782ebd
src/main.js
@@ -49,13 +49,28 @@
import '../public/static/theme/index.css' /* icofont */
// 打印
import Print from 'vue-print-nb'
// 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,