1b47c5f2 by 任超

图标

1 parent 34ad9c28
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg component
// register globally
Vue.component('svg-icon', SvgIcon)
const req = require.context('./svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)
......@@ -20,7 +20,7 @@
<script>
import defaultSettings from '@/settings'
const { title } = defaultSettings
import logonImg from '@/assets/logo.png'
import logonImg from '@/image/logo.png'
export default {
name: 'SidebarLogo',
props: {
......
......@@ -7,7 +7,7 @@ import Element from 'element-ui'
import './styles/element-variables.scss'
import '@/styles/index.scss' // global css
import './image/icons' // icon
import store from './store'
import router from './router'
import _ from 'lodash'
......
......@@ -244,7 +244,7 @@ input[type="number"] {
.el-table__empty-text {
height: 200px;
line-height: 300px;
background: url('./images/table-bg.png') 50% 50% no-repeat;
background: url('/images/table-bg.png') 50% 50% no-repeat;
background-size: 100px;
letter-spacing: 2px;
color: #aaa;
......@@ -340,5 +340,5 @@ input[type="number"] {
.el-pagination.is-background .el-pager li.active {
background-color: #0F93F6 !important;
border: 1px solid #0F93F6 !important;
color: #fff !important;
color: #fff !important;
}
\ No newline at end of file
......