收费管理系统
陈少旭 0f51b03b2d `1111` 2 months ago
config `1111` 2 months ago
public 'First' 2 months ago
src `1111` 2 months ago
static 'First' 2 months ago
.env.development `1111` 2 months ago
.env.production 6月20配置打包 2 months ago
.gitignore 'First' 2 months ago
README.md 'First' 2 months ago
babel.config.js 'First' 2 months ago
package-lock.json 6月20配置打包 2 months ago
package.json 'First' 2 months ago
vue.config.js 6月20配置打包 2 months ago
yarn.lock 'First' 2 months ago

README.md

power

vue后台管理系统模板 见文章: https://juejin.im/post/5e670edde51d4527110a9b40

预览地址:

http://cgq666.gitee.io/admin-vue

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Run your tests

yarn run test

Lints and fixes files

yarn run lint

Excel 导出

      import('@/vendor/Export2Excel').then(excel => {
        const tHeader = [  // Excel表头
           '姓名',
           '电话'
        ]
        const dataVal = [  // 对应的数据数组的字段名
          'username',
          'phone'
        ]
        excel.export_json_to_excel2(tHeader, '这里是需要导入的数据', dataVal, '导出后的文件名称')

SVG

安装

npm i -D vue-svg-loader vue-template-compiler

修改配置

// vue.config.js
module.exports = {
  chainWebpack: (config) => {
    const svgRule = config.module.rule('svg');
 
    svgRule.uses.clear();
 
    svgRule
      .use('babel-loader')
      .loader('babel-loader')
      .end()
      .use('vue-svg-loader')
      .loader('vue-svg-loader');
  },
}

使用

<script>
import daiban from '@/assets/icon/daiban.svg'
export default {
    components:{
        daiban
    }
}
</script>

修该颜色

// 删除SVG文件中的 fill 
.index-head-centent-right-list-icon-is{
    color: #F515EA !important;
    width: 20px;
    height: 22px;
    fill: currentColor;   //重点
}