diff --git a/.eslintrc.js b/.eslintrc.js
index a388ba2..006e982 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -6,7 +6,8 @@ module.exports = {
},
env: {
browser: true,
- node: true
+ node: true,
+ es6: true,
},
extends: 'eslint:recommended',
// required to lint *.vue files
@@ -22,297 +23,122 @@ module.exports = {
}
},
// add your custom rules here
+ //it is base on https://github.com/vuejs/eslint-config-vue
'rules': {
- // don't require .vue extension when importing
- // 'import/extensions': ['error', 'always', {
- // 'js': 'never',
- // 'vue': 'never'
- // }],
- // allow debugger during development
- 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
- /*
- * Possible Errors
- */
-
- // disallow unnecessary parentheses
- 'no-extra-parens': ['error', 'all', {'nestedBinaryExpressions': false}],
-
- // disallow negating the left operand of relational operators
- 'no-unsafe-negation': 'error',
-
- // enforce valid JSDoc comments
- 'valid-jsdoc': 'off',
-
- /*
- * Best Practices
- */
-
- // enforce return statements in callbacks of array methods
- 'array-callback-return': 'error',
-
- // enforce consistent brace style for all control statements
- curly: ['error', 'multi-line'],
-
- // enforce consistent newlines before and after dots
- 'dot-location': ['error', 'property'],
-
- // enforce dot notation whenever possible
- 'dot-notation': 'error',
-
- // require the use of === and !==
- 'eqeqeq': ['error', 'smart'],
-
- // disallow the use of arguments.caller or arguments.callee
- 'no-caller': 'error',
-
- // disallow empty functions
- 'no-empty-function': 'error',
-
- // disallow unnecessary calls to .bind()
- 'no-extra-bind': 'error',
-
- // disallow unnecessary labels
- 'no-extra-label': 'error',
-
- // disallow leading or trailing decimal points in numeric literals
- 'no-floating-decimal': 'error',
-
- // disallow assignments to native objects or read-only global variables
- 'no-global-assign': 'error',
-
- // disallow the use of eval()-like methods
- 'no-implied-eval': 'error',
-
- // disallow the use of the __iterator__ property
- 'no-iterator': 'error',
-
- // disallow unnecessary nested blocks
- 'no-lone-blocks': 'error',
-
- // disallow multiple spaces
- 'no-multi-spaces': 'error',
-
- // disallow new operators with the String, Number, and Boolean objects
- 'no-new-wrappers': 'error',
-
- // disallow octal escape sequences in string literals
- 'no-octal-escape': 'error',
-
- // disallow the use of the __proto__ property
- 'no-proto': 'error',
-
- // disallow comparisons where both sides are exactly the same
- 'no-self-compare': 'error',
-
- // disallow throwing literals as exceptions
- 'no-throw-literal': 'error',
-
- // disallow unused expressions
- 'no-unused-expressions': 'error',
-
- // disallow unnecessary calls to .call() and .apply()
- 'no-useless-call': 'error',
-
- // disallow unnecessary concatenation of literals or template literals
- 'no-useless-concat': 'error',
-
- // disallow unnecessary escape characters
- 'no-useless-escape': 'error',
-
- // disallow void operators
- 'no-void': 'error',
-
- // require parentheses around immediate function invocations
- 'wrap-iife': 'error',
-
- // require or disallow “Yoda” conditions
- yoda: 'error',
-
- /*
- * Variables
- */
-
- // disallow labels that share a name with a variable
- 'no-label-var': 'error',
-
- // disallow initializing variables to undefined
- 'no-undef-init': 'error',
- 'no-undef': 'off',
- // disallow the use of variables before they are defined
- 'no-use-before-define': 'error',
-
- /*
- * Node.js and CommonJS
- */
-
- // disallow new operators with calls to require
- 'no-new-require': 'error',
-
- /*
- * Stylistic Issues
- */
-
- // enforce consistent spacing inside array brackets
- 'array-bracket-spacing': 'error',
-
- // enforce consistent spacing inside single-line blocks
- 'block-spacing': 'error',
-
- // enforce consistent brace style for blocks
- 'brace-style': ['error', '1tbs', {'allowSingleLine': true}],
-
- // require or disallow trailing commas
- 'comma-dangle': 'error',
-
- // enforce consistent spacing before and after commas
- 'comma-spacing': 'error',
-
- // enforce consistent comma style
- 'comma-style': 'error',
-
- // enforce consistent spacing inside computed property brackets
- 'computed-property-spacing': 'error',
-
- // require or disallow spacing between function identifiers and their invocations
- 'func-call-spacing': 'error',
-
- // enforce consistent indentation
- indent: ['error', 2, {SwitchCase: 1}],
-
- // enforce the consistent use of either double or single quotes in JSX attributes
- 'jsx-quotes': 'error',
-
- // enforce consistent spacing between keys and values in object literal properties
- 'key-spacing': 'error',
-
- // enforce consistent spacing before and after keywords
- 'keyword-spacing': 'error',
-
- // enforce consistent linebreak style
- 'linebreak-style': 'error',
-
- // require or disallow newlines around directives
- 'lines-around-directive': 'error',
-
- // require constructor names to begin with a capital letter
- 'new-cap': 'off',
-
- // require parentheses when invoking a constructor with no arguments
- 'new-parens': 'error',
-
- // disallow Array constructors
- 'no-array-constructor': 'error',
-
- // disallow Object constructors
- 'no-new-object': 'error',
-
- // disallow trailing whitespace at the end of lines
- 'no-trailing-spaces': 'error',
-
- // disallow ternary operators when simpler alternatives exist
- 'no-unneeded-ternary': 'error',
-
- // disallow whitespace before properties
- 'no-whitespace-before-property': 'error',
-
- // enforce consistent spacing inside braces
- 'object-curly-spacing': ['error', 'always'],
-
- // require or disallow padding within blocks
- 'padded-blocks': ['error', 'never'],
-
- // require quotes around object literal property names
- 'quote-props': ['error', 'as-needed'],
-
- // enforce the consistent use of either backticks, double, or single quotes
- quotes: ['error', 'single'],
-
- // enforce consistent spacing before and after semicolons
- 'semi-spacing': 'error',
-
- // require or disallow semicolons instead of ASI
- // semi: ['error', 'never'],
-
- // enforce consistent spacing before blocks
- 'space-before-blocks': 'error',
-
+ 'accessor-pairs': 2,
+ 'arrow-spacing': [2, { 'before': true, 'after': true }],
+ 'block-spacing': [2, 'always'],
+ 'brace-style': [2, '1tbs', { 'allowSingleLine': true }],
+ 'camelcase': [0, { 'properties': 'always' }],
+ 'comma-dangle': [2, 'never'],
+ 'comma-spacing': [2, { 'before': false, 'after': true }],
+ 'comma-style': [2, 'last'],
+ 'constructor-super': 2,
+ 'curly': [2, 'multi-line'],
+ 'dot-location': [2, 'property'],
+ 'eol-last': 2,
+ 'eqeqeq': [2, 'allow-null'],
+ 'generator-star-spacing': [2, { 'before': true, 'after': true }],
+ 'handle-callback-err': [2, '^(err|error)$' ],
+ 'indent': [2, 2, { 'SwitchCase': 1 }],
+ 'jsx-quotes': [2, 'prefer-single'],
+ 'key-spacing': [2, { 'beforeColon': false, 'afterColon': true }],
+ 'keyword-spacing': [2, { 'before': true, 'after': true }],
+ 'new-cap': [2, { 'newIsCap': true, 'capIsNew': false }],
+ 'new-parens': 2,
+ 'no-array-constructor': 2,
+ 'no-caller': 2,
'no-console': 'off',
-
- // enforce consistent spacing before function definition opening parenthesis
- 'space-before-function-paren': ['error', 'never'],
-
- // enforce consistent spacing inside parentheses
- 'space-in-parens': 'error',
-
- // require spacing around infix operators
- 'space-infix-ops': 'error',
-
- // enforce consistent spacing before or after unary operators
- 'space-unary-ops': 'error',
-
- // enforce consistent spacing after the // or /* in a comment
- 'spaced-comment': 'error',
-
- // require or disallow Unicode byte order mark (BOM)
- 'unicode-bom': 'error',
-
-
- /*
- * ECMAScript 6
- */
-
- // require braces around arrow function bodies
- 'arrow-body-style': 'error',
-
- // require parentheses around arrow function arguments
- 'arrow-parens': ['error', 'as-needed'],
-
- // enforce consistent spacing before and after the arrow in arrow functions
- 'arrow-spacing': 'error',
-
- // enforce consistent spacing around * operators in generator functions
- 'generator-star-spacing': ['error', 'after'],
-
- // disallow duplicate module imports
- 'no-duplicate-imports': 'error',
-
- // disallow unnecessary computed property keys in object literals
- 'no-useless-computed-key': 'error',
-
- // disallow unnecessary constructors
- 'no-useless-constructor': 'error',
-
- // disallow renaming import, export, and destructured assignments to the same name
- 'no-useless-rename': 'error',
-
- // require let or const instead of var
- 'no-var': 'error',
-
- // require or disallow method and property shorthand syntax for object literals
- 'object-shorthand': 'error',
-
- // require arrow functions as callbacks
- 'prefer-arrow-callback': 'error',
-
- // require const declarations for variables that are never reassigned after declared
- 'prefer-const': 'error',
-
- // disallow parseInt() in favor of binary, octal, and hexadecimal literals
- 'prefer-numeric-literals': 'error',
-
- // require rest parameters instead of arguments
- 'prefer-rest-params': 'error',
-
- // require spread operators instead of .apply()
- 'prefer-spread': 'error',
-
- // enforce spacing between rest and spread operators and their expressions
- 'rest-spread-spacing': 'error',
-
- // require or disallow spacing around embedded expressions of template strings
- 'template-curly-spacing': 'error',
-
- // require or disallow spacing around the * in yield* expressions
- 'yield-star-spacing': 'error'
+ 'no-class-assign': 2,
+ 'no-cond-assign': 2,
+ 'no-const-assign': 2,
+ 'no-control-regex': 2,
+ 'no-delete-var': 2,
+ 'no-dupe-args': 2,
+ 'no-dupe-class-members': 2,
+ 'no-dupe-keys': 2,
+ 'no-duplicate-case': 2,
+ 'no-empty-character-class': 2,
+ 'no-empty-pattern': 2,
+ 'no-eval': 2,
+ 'no-ex-assign': 2,
+ 'no-extend-native': 2,
+ 'no-extra-bind': 2,
+ 'no-extra-boolean-cast': 2,
+ 'no-extra-parens': [2, 'functions'],
+ 'no-fallthrough': 2,
+ 'no-floating-decimal': 2,
+ 'no-func-assign': 2,
+ 'no-implied-eval': 2,
+ 'no-inner-declarations': [2, 'functions'],
+ 'no-invalid-regexp': 2,
+ 'no-irregular-whitespace': 2,
+ 'no-iterator': 2,
+ 'no-label-var': 2,
+ 'no-labels': [2, { 'allowLoop': false, 'allowSwitch': false }],
+ 'no-lone-blocks': 2,
+ 'no-mixed-spaces-and-tabs': 2,
+ 'no-multi-spaces': 2,
+ 'no-multi-str': 2,
+ 'no-multiple-empty-lines': [2, { 'max': 1 }],
+ 'no-native-reassign': 2,
+ 'no-negated-in-lhs': 2,
+ 'no-new-object': 2,
+ 'no-new-require': 2,
+ 'no-new-symbol': 2,
+ 'no-new-wrappers': 2,
+ 'no-obj-calls': 2,
+ 'no-octal': 2,
+ 'no-octal-escape': 2,
+ 'no-path-concat': 2,
+ 'no-proto': 2,
+ 'no-redeclare': 2,
+ 'no-regex-spaces': 2,
+ 'no-return-assign': [2, 'except-parens'],
+ 'no-self-assign': 2,
+ 'no-self-compare': 2,
+ 'no-sequences': 2,
+ 'no-shadow-restricted-names': 2,
+ 'no-spaced-func': 2,
+ 'no-sparse-arrays': 2,
+ 'no-this-before-super': 2,
+ 'no-throw-literal': 2,
+ 'no-trailing-spaces': 2,
+ 'no-undef': 2,
+ 'no-undef-init': 2,
+ 'no-unexpected-multiline': 2,
+ 'no-unmodified-loop-condition': 2,
+ 'no-unneeded-ternary': [2, { 'defaultAssignment': false }],
+ 'no-unreachable': 2,
+ 'no-unsafe-finally': 2,
+ 'no-unused-vars': [2, { 'vars': 'all', 'args': 'none' }],
+ 'no-useless-call': 2,
+ 'no-useless-computed-key': 2,
+ 'no-useless-constructor': 2,
+ 'no-useless-escape': 0,
+ 'no-whitespace-before-property': 2,
+ 'no-with': 2,
+ 'one-var': [2, { 'initialized': 'never' }],
+ 'operator-linebreak': [2, 'after', { 'overrides': { '?': 'before', ':': 'before' } }],
+ 'padded-blocks': [2, 'never'],
+ 'quotes': [2, 'single', { 'avoidEscape': true, 'allowTemplateLiterals': true }],
+ 'semi': [2, 'never'],
+ 'semi-spacing': [2, { 'before': false, 'after': true }],
+ 'space-before-blocks': [2, 'always'],
+ 'space-before-function-paren': [2, 'never'],
+ 'space-in-parens': [2, 'never'],
+ 'space-infix-ops': 2,
+ 'space-unary-ops': [2, { 'words': true, 'nonwords': false }],
+ 'spaced-comment': [2, 'always', { 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] }],
+ 'template-curly-spacing': [2, 'never'],
+ 'use-isnan': 2,
+ 'valid-typeof': 2,
+ 'wrap-iife': [2, 'any'],
+ 'yield-star-spacing': [2, 'both'],
+ 'yoda': [2, 'never'],
+ 'prefer-const': 2,
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
+ 'object-curly-spacing': [2, 'always', { objectsInObjects: false }],
+ 'array-bracket-spacing': [2, 'never']
}
}
diff --git a/build/webpack.base.conf.js b/build/webpack.base.conf.js
index 30817ad..72005d0 100644
--- a/build/webpack.base.conf.js
+++ b/build/webpack.base.conf.js
@@ -46,10 +46,19 @@ module.exports = {
loader: 'babel-loader',
include: [resolve('src'), resolve('test')]
},
+ {
+ test: /\.svg$/,
+ loader: 'svg-sprite-loader',
+ include: [resolve('src/icons')],
+ options: {
+ symbolId: 'icon-[name]'
+ }
+ },
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
- options: {
+ exclude: [resolve('src/icons')],
+ query: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
diff --git a/package.json b/package.json
index 5c18afb..92cdb2e 100644
--- a/package.json
+++ b/package.json
@@ -12,12 +12,12 @@
},
"dependencies": {
"axios": "0.16.2",
- "element-ui": "1.3.7",
- "js-cookie": "^2.1.4",
- "normalize.css": "3.0.2",
- "nprogress": "^0.2.0",
- "vue": "2.3.3",
- "vue-router": "2.5.3",
+ "element-ui": "1.4.3",
+ "js-cookie": "2.1.4",
+ "normalize.css": "7.0.0",
+ "nprogress": "0.2.0",
+ "vue": "2.4.2",
+ "vue-router": "2.7.0",
"vuex": "2.3.1"
},
"devDependencies": {
@@ -53,10 +53,11 @@
"rimraf": "2.6.0",
"node-sass": "^4.5.0",
"sass-loader": "6.0.5",
+ "svg-sprite-loader": "3.2.4",
"url-loader": "0.5.8",
- "vue-loader": "12.1.0",
+ "vue-loader": "13.0.4",
"vue-style-loader": "3.0.1",
- "vue-template-compiler": "2.3.3",
+ "vue-template-compiler": "2.4.2",
"webpack": "2.6.1",
"webpack-dev-middleware": "1.10.0",
"webpack-hot-middleware": "2.18.0",
diff --git a/src/App.vue b/src/App.vue
index 16fce5e..d042fd4 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -9,8 +9,8 @@ export default {
name: 'app'
}
+
-
-
diff --git a/src/api/login.js b/src/api/login.js
index 1b14881..eed7c5b 100644
--- a/src/api/login.js
+++ b/src/api/login.js
@@ -1,4 +1,4 @@
-import fetch from '@/utils/fetch';
+import fetch from '@/utils/fetch'
export function login(email, password) {
return fetch({
@@ -8,7 +8,7 @@ export function login(email, password) {
email,
password
}
- });
+ })
}
export function getInfo(token) {
@@ -16,15 +16,12 @@ export function getInfo(token) {
url: '/user/info',
method: 'get',
params: { token }
- });
+ })
}
export function logout() {
return fetch({
url: '/user/logout',
method: 'post'
- });
+ })
}
-
-
-
diff --git a/src/api/table.js b/src/api/table.js
index b475c0a..7079817 100644
--- a/src/api/table.js
+++ b/src/api/table.js
@@ -1,11 +1,9 @@
-import fetch from '@/utils/fetch';
+import fetch from '@/utils/fetch'
export function getList(params) {
return fetch({
url: '/table/list',
method: 'get',
params
- });
+ })
}
-
-
diff --git a/src/assets/iconfont/iconfont.js b/src/assets/iconfont/iconfont.js
deleted file mode 100644
index 11a01bd..0000000
--- a/src/assets/iconfont/iconfont.js
+++ /dev/null
@@ -1 +0,0 @@
-(function(window){var svgSprite="";var script=function(){var scripts=document.getElementsByTagName("script");return scripts[scripts.length-1]}();var shouldInjectCss=script.getAttribute("data-injectcss");var ready=function(fn){if(document.addEventListener){if(~["complete","loaded","interactive"].indexOf(document.readyState)){setTimeout(fn,0)}else{var loadFn=function(){document.removeEventListener("DOMContentLoaded",loadFn,false);fn()};document.addEventListener("DOMContentLoaded",loadFn,false)}}else if(document.attachEvent){IEContentLoaded(window,fn)}function IEContentLoaded(w,fn){var d=w.document,done=false,init=function(){if(!done){done=true;fn()}};var polling=function(){try{d.documentElement.doScroll("left")}catch(e){setTimeout(polling,50);return}init()};polling();d.onreadystatechange=function(){if(d.readyState=="complete"){d.onreadystatechange=null;init()}}}};var before=function(el,target){target.parentNode.insertBefore(el,target)};var prepend=function(el,target){if(target.firstChild){before(el,target.firstChild)}else{target.appendChild(el)}};function appendSvg(){var div,svg;div=document.createElement("div");div.innerHTML=svgSprite;svgSprite=null;svg=div.getElementsByTagName("svg")[0];if(svg){svg.setAttribute("aria-hidden","true");svg.style.position="absolute";svg.style.width=0;svg.style.height=0;svg.style.overflow="hidden";prepend(svg,document.body)}}if(shouldInjectCss&&!window.__iconfont__svg__cssinject__){window.__iconfont__svg__cssinject__=true;try{document.write("")}catch(e){console&&console.log(e)}}ready(appendSvg)})(window)
\ No newline at end of file
diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue
index b0d1597..9ad0bb2 100644
--- a/src/components/Hamburger/index.vue
+++ b/src/components/Hamburger/index.vue
@@ -1,32 +1,31 @@
-