Commit ba71e1a1 authored by 胡小根's avatar 胡小根

fix css bug in styleguide

parent c23ac342
......@@ -83,12 +83,19 @@
},
/**
* 搜索过滤选项。默认没有过滤功能。完整的示例为:
*
* {
*
* "column1": {
*
* like: '%abc%', 模糊查询,包含字符”abc”
*
* notLike: '' 模糊查询,不包含字符
*
* between: [1, 10], 取值在[1,10]之间,包含1与10
*
* notBetween: [1, 10], 取值小于1大于10
*
* isNull: true, // 只能为true 判断字段是否为空
* isNotNull: true, // 只能为true 判断字段是否不为空
* equalTo: "abc", 相等于
......
......@@ -8,8 +8,6 @@ const path = require('path')
const utils = require('./build/utils')
// const baseWebpackConfig = require('./build/webpack.base.conf')
console.log(path.join(__dirname, 'src/assets/custom-theme/index.css'))
function resolve(dir) {
return path.join(__dirname, dir)
}
......@@ -62,10 +60,7 @@ module.exports = {
sections: sections,
assetsDir: resolve('src/assets/'),
require: [
resolve('./src/main.js'),
resolve('./src/assets/custom-theme/index.css'),
resolve('./src/assets/custom-theme/fonts/element-icons.ttf'),
resolve('./src/assets/custom-theme/fonts/element-icons.woff')
resolve('./src/main.js')
],
webpackConfig: Object.assign({
resolve: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment