Commit b550f301 by 无尘

feat: 增加旧版本好办签到导出

parent 03be284d
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"]
}
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
.DS_Store
node_modules/
/build/
/config/
/dist/
/*.js
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: "babel-eslint"
},
env: {
browser: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
// "standard",
"plugin:vue/essential",
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
"plugin:prettier/recommended"
],
// required to lint *.vue files
plugins: ["vue", "prettier"],
// add your custom rules here
rules: {
"prettier/prettier": "error",
// allow async-await
"generator-star-spacing": "off",
"no-console": process.env.NODE_ENV === "production" ? 2 : 0,
"no-alert": process.env.NODE_ENV === "production" ? 2 : 0, //禁止使用alert confirm prompt
"no-debugger": process.env.NODE_ENV === "production" ? 2 : 0,
// --------------------静态检测-----------------------------
/**
* 静态检测:
* 以下基本位能够帮助发现代码错误的规则
* */
// 禁止与负零进行比较
"no-compare-neg-zero": 2,
// 禁止将常量作为 if 或三元表达式的测试条件,比如 if (true), let foo = 0 ? 'foo' : 'bar'
"no-constant-condition": [
2,
{
checkLoops: false
}
],
// 禁止在函数参数中出现重复名称的参数 【辅助检测】
"no-dupe-args": 2,
// 禁止在对象字面量中出现重复名称的键名 【辅助检测】
"no-dupe-keys": 2,
// 禁止出现空代码块 【可读性差】
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
// 禁止将 catch 的第一个参数 error 重新赋值 【重新赋值,error将没有意义】
"no-ex-assign": 2,
// @fixable 禁止函数表达式中出现多余的括号,比如 let foo = (function () { return 1 }) 【一般不会这么写,可读性差】
"no-extra-parens": [2, "functions"],
// 禁止将一个函数申明重新赋值,如:
// function foo() {}
// foo = bar [静态检测:无意义]
"no-func-assign": 2,
// 禁止在 if 内出现函数申明或使用 var 定义变量
"no-inner-declarations": [2, "both"],
// 禁止使用特殊空白符(比如全角空格),除非是出现在字符串、正则表达式或模版字符串中
"no-irregular-whitespace": [
2,
{
skipStrings: true,
skipComments: false,
skipRegExps: true,
skipTemplates: true
}
],
// typeof 表达式比较的对象必须是 'undefined', 'object', 'boolean', 'number', 'string', 'function' 或 'symbol'
"valid-typeof": 2,
// -----------------------------------最佳实践----------------------------------------------
/**
* 最佳实践
* 这些规则通过一些最佳实践帮助你避免问题
*/
// 禁止函数的循环复杂度超过 20,【https://en.wikipedia.org/wiki/Cyclomatic_complexity】
complexity: [
2,
{
max: 20
}
],
// 不允许有空函数,除非是将一个空函数设置为某个项的默认值 【否则空函数并没有实际意义】
"no-empty-function": [
2,
{
allow: ["functions", "arrowFunctions"]
}
],
// 禁止修改原生对象 【例如 Array.protype.xxx=funcion(){},很容易出问题,比如for in 循环数组 会出问题】
"no-extend-native": 2,
// @fixable 表示小数时,禁止省略 0,比如 .5 【可读性】
"no-floating-decimal": 2,
// 禁止直接 new 一个类而不赋值 【 那么除了占用内存还有什么意义呢? @off vue语法糖大量存在此类语义 先手动关闭】
"no-new": 0,
// 禁止使用 new Function,比如 let x = new Function("a", "b", "return a + b"); 【可读性差】
"no-new-func": 2,
// 禁止将自己赋值给自己 [规则帮助检测]
"no-self-assign": 2,
// 禁止将自己与自己比较 [规则帮助检测]
"no-self-compare": 2,
// @fixable 立即执行的函数必须符合如下格式 (function () { alert('Hello') })() 【立即函数写法很多,这个是最易读最标准的】
"wrap-iife": [
2,
"inside",
{
functionPrototypeMethods: true
}
],
// 禁止使用保留字作为变量名 [规则帮助检测保留字,通常ide难以发现,生产会出现问题]
"no-shadow-restricted-names": 2,
// 禁止使用未定义的变量
"no-undef": [
2,
{
typeof: false
}
],
// 定义过的变量必须使用 【正规应该是这样的,具体可以大家讨论】
"no-unused-vars": [
2,
{
vars: "all",
args: "none",
caughtErrors: "none",
ignoreRestSiblings: true
}
],
// 变量必须先定义后使用 【ps:涉及到es6存在不允许变量提升的问题,以免引起意想不到的错误,具体可以大家讨论】
"no-use-before-define": [
2,
{
functions: false,
classes: false,
variables: false
}
],
// ----------------------------------------------------代码规范----------------------------------------------------------
/**
* 代码规范
* 有关【空格】、【链式换行】、【缩进】、【=、{}、()、首位空格】规范没有添加,怕大家一时间接受不了,目前所挑选的规则都是:保障我们的代码可读性、可维护性的
* */
// 变量名必须是 camelcase 驼峰风格的
// @off 【涉及到 很多 api 或文件名可能都不是 camelcase 先关闭】
camelcase: 0,
// @fixable 禁止在行首写逗号
"comma-style": [2, "last"],
// @fixable 一个缩进必须用两个空格替代
// @off 【不限制大家,为了关闭eslint默认值,所以手动关闭,off不可去掉】 讨论
indent: [2, 2,{ "SwitchCase": 1 }],
//@off 手动关闭//前面需要回车的规则 注释
"spaced-comment": 0,
//@off 手动关闭: 禁用行尾空白
"no-trailing-spaces": 2,
//@off 手动关闭: 不允许多行回车
"no-multiple-empty-lines": 1,
//@off 手动关闭: 逗号前必须加空格
"comma-spacing": 0,
//@off 手动关闭: 冒号后必须加空格
"key-spacing": 1,
// @fixable 结尾禁止使用分号
//@off [vue官方推荐无分号,不知道大家是否可以接受?先手动off掉] 讨论
// "semi": [2,"never"],
semi: 0,
// 代码块嵌套的深度禁止超过 5 层
"max-depth": [1, 5],
// 回调函数嵌套禁止超过 4 层,多了请用 async await 替代
"max-nested-callbacks": [2, 4],
// 函数的参数禁止超过 7 个
"max-params": [2, 7],
// new 后面的类名必须首字母大写 【面向对象编程原则】
"new-cap": [
2,
{
newIsCap: true,
capIsNew: false,
properties: true
}
],
// @fixable new 后面的类必须有小括号 【没有小括号、指针指过去没有意义】
"new-parens": 2,
// @fixable 禁止属性前有空格,比如 foo. bar() 【可读性太差,一般也没人这么写】
"no-whitespace-before-property": 2,
// @fixable 禁止 if 后面不加大括号而写两行代码 eg: if(a>b) a=0 b=0
"nonblock-statement-body-position": [
2,
"beside",
{ overrides: { while: "below" } }
],
// 禁止变量申明时用逗号一次申明多个 eg: let a,b,c,d,e,f,g = [] 【debug并不好审查、并且没办法单独写注释】
"one-var": [2, "never"],
// @fixable 【变量申明必须每行一个,同上】
"one-var-declaration-per-line": [2, "always"],
//是否使用全等
eqeqeq: 0,
//this别名
"consistent-this": [2, "that"],
// -----------------------------ECMAScript 6-------------------------------------
/**
* ECMAScript 6
* 这些规则与 ES6 有关 【请大家 尝试使用正确使用const和let代替var,以后大家熟悉之后可能会提升规则】
* */
// 禁止对定义过的 class 重新赋值
"no-class-assign": 2,
// @fixable 禁止出现难以理解的箭头函数,比如 let x = a => 1 ? 2 : 3
"no-confusing-arrow": [2, { allowParens: true }],
// 禁止对使用 const 定义的常量重新赋值
"no-const-assign": 2,
// 禁止重复定义类
"no-dupe-class-members": 2,
// 禁止重复 import 模块
"no-duplicate-imports": 2,
//@off 以后可能会开启 禁止 var
"no-var": 0,
// ---------------------------------被关闭的规则-----------------------
// parseInt必须指定第二个参数 parseInt("071",10);
radix: 0,
//强制使用一致的反勾号、双引号或单引号 (quotes) 关闭
quotes: 0,
//要求或禁止函数圆括号之前有一个空格
"space-before-function-paren": [0, "always"],
//禁止或强制圆括号内的空格
"space-in-parens": [0, "never"],
//关键字后面是否要空一格
"space-after-keywords": [0, "always"],
// 要求或禁止在函数标识符和其调用之间有空格
"func-call-spacing": [0, "never"]
}
};
.DS_Store
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}
{
"printWidth": 208,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"semi": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"proseWrap": "preserve"
}
### 会员标签项目
>会员标签项目
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
```
'use strict'
require('./check-versions')()
process.env.NODE_ENV = 'production'
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
const spinner = ora('building for production...')
spinner.start()
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})
'use strict'
const chalk = require('chalk')
const semver = require('semver')
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}
'use strict'
const path = require('path')
const config = require('../config')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const packageConfig = require('../package.json')
exports.assetsPath = function (_path) {
const assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
const cssLoader = {
loader: 'css-loader',
options: {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {
sourceMap: options.sourceMap
}
}
// generate loader string to be used with extract text plugin
function generateLoaders (loader, loaderOptions) {
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
if (loader) {
loaders.push({
loader: loader + '-loader',
options: Object.assign({}, loaderOptions, {
sourceMap: options.sourceMap
})
})
}
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
publicPath: '../../', //注意: 此处根据路径, 自动更改
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
}
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
return {
css: generateLoaders(),
postcss: generateLoaders(),
less: generateLoaders('less'),
sass: generateLoaders('sass', { indentedSyntax: true }),
scss: generateLoaders('sass'),
stylus: generateLoaders('stylus'),
styl: generateLoaders('stylus')
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
const output = []
const loaders = exports.cssLoaders(options)
for (const extension in loaders) {
const loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
use: loader
})
}
return output
}
exports.createNotifierCallback = () => {
const notifier = require('node-notifier')
return (severity, errors) => {
if (severity !== 'error') return
const error = errors[0]
const filename = error.file && error.file.split('!').pop()
notifier.notify({
title: packageConfig.name,
message: severity + ': ' + error.name,
subtitle: filename || '',
icon: path.join(__dirname, 'logo.png')
})
}
}
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
const createLintingRule = () => ({
test: /\.(js|vue)$/,
loader: "eslint-loader",
enforce: "pre",
include: [resolve("src"), resolve("test")],
options: {
fix: true,
formatter: require("eslint-friendly-formatter"),
emitWarning: !config.dev.showEslintErrorsInOverlay
}
});
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
app: ["babel-polyfill", "./src/main.js"]
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
externals: {
'vue': 'Vue',
'vue-router': 'VueRouter',
'vuex': 'Vuex',
'element-ui': 'Element'
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
'components': resolve('src/components'),
'view': resolve('src/view')
}
},
module: {
rules: [
...(config.dev.useEslint ? [createLintingRule()] : []),
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.scss$/,
loaders: ["style", "css", "scss", "sass"]
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
},
node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const HOST = process.env.HOST
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
// cheap-module-eval-source-map is faster for development
devtool: config.dev.devtool,
// these devServer options should be customized in /config/index.js
devServer: {
clientLogLevel: 'warning',
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,
contentBase: false, // since we use CopyWebpackPlugin.
compress: true,
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon: './favicon.ico'
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})
'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const env = require('../config/prod.env')
const webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true,
usePostCSS: true
})
},
devtool: config.build.productionSourceMap ? config.build.devtool : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks: true,
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
if (config.build.productionGzip) {
const CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})
'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path');
const proxyConfig = require('./proxyList');
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},//proxyConfig.proxyList,
// Various Dev Server settings
// host: '0.0.0.0', // can be overwritten by process.env.HOST
host: 'localhost',//'192.168.1.20',//
port: 8001, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
useEslint: true,
// If true, eslint errors and warnings will also be shown in the error overlay
// in the browser.
showEslintErrorsInOverlay: false,
/**
* Source Maps
*/
// https://webpack.js.org/configuration/devtool/#development
devtool: 'cheap-module-eval-source-map',
// If you have problems debugging vue-files in devtools,
// set this to false - it *may* help
// https://vue-loader.vuejs.org/en/options.html#cachebusting
cacheBusting: true,
cssSourceMap: true
},
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
/**
* Source Maps
*/
productionSourceMap: false,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
}
'use strict'
module.exports = {
NODE_ENV: '"production"'
}
module.exports = {
proxyList: {
'/api-auth/': {
target: 'http://gicdev.demogic.com/api-auth/',
changeOrigin: true,
pathRewrite: {
'^/api-auth': ''
}
},
'/api-admin/': {
target: 'http://gicdev.demogic.com/api-admin/',
changeOrigin: true,
pathRewrite: {
'^/api-admin': ''
}
},
'/api-plug/': {
target: 'http://gicdev.demogic.com/api-plug/',
changeOrigin: true,
pathRewrite: {
'^/api-plug': ''
}
},
'/api-mall/': {
target: 'http://gicdev.demogic.com/api-mall/',
changeOrigin: true,
pathRewrite: {
'^/api-mall': ''
}
}
}
}
<!DOCTYPE html><html><head><meta charset=utf-8><link rel="shortcut icon" href=./favicon.ico><title>GIC-会员标签</title><link href=./static/css/app.2cd56078b4ca6b35ed0e361648625c83.css rel=stylesheet></head><body style="background-color: #f0f2f5;min-width: 1400px;"><div id=app></div><script src=//web-1251519181.file.myqcloud.com/lib/vue/2.6.6/vue.min.js></script><script src=//web-1251519181.file.myqcloud.com/lib/vue-router/3.0.2/vue-router.min.js></script><script src=//web-1251519181.file.myqcloud.com/lib/vuex/3.1.0/vuex.min.js></script><script src=//web-1251519181.file.myqcloud.com/lib/elementUI/index.2.5.4.js></script><script src=//web-1251519181.file.myqcloud.com/components/header.2.0.07.js></script><script src=//web-1251519181.file.myqcloud.com/components/footer.2.0.02.js></script><script type=text/javascript src=./static/js/manifest.1ee771ed0215b10b405c.js></script><script type=text/javascript src=./static/js/vendor.488957d66192c4bf6ce3.js></script><script type=text/javascript src=./static/js/app.3d5f7afc1dabfa23646d.js></script></body></html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
@import './public.css';
.arrowico{
position: absolute;
transition: all .5s;
.icoposition(0px,25px);
}
.icoposition(@right: right,@top: top){
right: @right;
top: @top;
}
.user-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
/deep/ .el-input {
width: 260px;
}
}
.pass-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
}
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* custom */
a {
color: #7e8c8d;
text-decoration: none;
-webkit-backface-visibility: hidden;
}
a.a-href {
color: #606266;
}
a.a-href:hover {
color: #1890ff;
}
li {
list-style: none;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
/*background: #e4e7ed;*/
/*background-color: rgba(0, 0, 0, 0.1)*/
}
::-webkit-scrollbar-track {
/*background: #f5f7fa;*/
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
/*background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;*/
}
::-webkit-scrollbar-thumb {
background: #c0c4cc;
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.1)
}
@-moz-document url-prefix(http: //),url-prefix(https://) {
/* 滚动条颜色 */
scrollbar {
-moz-appearance: none !important;
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* 滚动条按钮颜色 */
thumb, scrollbarbutton {
-moz-appearance: none !important;
}
/* 鼠标悬停时按钮颜色 */
thumb:hover, scrollbarbutton:hover {
-moz-appearance: none !important;
}
/* 隐藏上下箭头 */
scrollbarbutton {
display: none !important;
}
/* 纵向滚动条宽度 */
scrollbar[orient="vertical"] {
/*min-width: 15px !important;*/
}
}
scrollbar {
/* clear useragent default style*/
-moz-appearance: none !important;
}
/* buttons at two ends */
scrollbarbutton {
-moz-appearance: none !important;
}
/* the sliding part*/
thumb {
-moz-appearance: none !important;
}
scrollcorner {
-moz-appearance: none !important;
resize: both;
}
/* vertical or horizontal */
scrollbar[orient="vertical"] {
color: silver;
}
-moz-scrollbar-track {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-face {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-arrow {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar {
-moz-scrollbar-width: 15px;
-moz-scrollbar-border: 1px solid black;
-moz-scrollbar-background-color: white;
-moz-scrollbar-track-background-color: silver;
-moz-scrollbar-arrow-background-color: silver;
-moz-scrollbar-arrow-color: blue;
}
/*::-webkit-scrollbar-button {
color: #c8cbd3;
}*/
html, body {
width: 100%;
min-height: 100%;
height: 100%;
/*background-color: #ffffff;*/
background-color: #f0f2f5;
}
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:focus {
box-shadow: none;
outline: none;
}
.btn-default {
color: #333;
border: 1px solid #ddd;
background-color: #f7f7f7;
cursor: pointer;
}
.btn {
font-size: 12px;
border-radius: 2px;
padding: 8px 16px;
height: 32px;
line-height: 14px;
}
.btn-new {
color: #333;
border: 1px solid #fede29;
background-color: #fede29;
}
/* 浮动 */
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before, .clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.text-right {
text-align: right;
}
.over-hide {
overflow: hidden;
}
/* 边距 */
.m-l-2 {
margin-left: 2px;
}
.m-l-4 {
margin-left: 4px;
}
.m-l-8 {
margin-left: 8px;
}
.m-l-16 {
margin-left: 16px;
}
.m-l-20 {
margin-left: 20px;
}
.m-l-220 {
margin-left: 220px;
}
.m-t-05 {
margin-top: -5px;
}
.m-t-10 {
margin-top: 10px;
}
.m-t-18 {
margin-top: 18px;
}
.m-t-20 {
margin-top: 20px;
}
.m-r-6 {
margin-right: 6px;
}
.m-r-8 {
margin-right: 8px;
}
.m-r-10 {
margin-right: 10px;
}
.m-r-20 {
margin-right: 20px;
}
.m-b-20 {
margin-bottom: 20px;
}
.m-b-26 {
margin-bottom: 26px;
}
.p-20 {
padding: 20px;
}
.p-lr-4 {
padding: 0 4px;
}
.p-lr-18 {
padding: 0 18px;
}
.p-l-8 {
padding-left: 8px;
}
.p-l-10 {
padding-left: 10px;
}
.p-l-20 {
padding-left: 20px;
}
.p-l-32 {
padding-left: 32px;
}
.p-l-36 {
padding-left: 36px;
}
.p-r-8 {
padding-right: 8px;
}
.p-r-12 {
padding-right: 12px;
}
.p-r-20 {
padding-right: 20px;
}
.w_100 {
width: 100%;
}
.w-86 {
width: 86px;
}
.w-90 {
width: 90px;
}
.w-98 {
width: 98px;
}
.w-180 {
width: 180px;
}
.w-182 {
width: 182px;
}
.w-184 {
width: 184px;
}
.w-200 {
width: 200px;
}
.w200 {
width: 200px;
}
.w-220 {
width: 220px;
}
.w-223 {
width: 223px;
}
.w-243 {
width: 243px;
}
.w-290 {
width: 290px;
}
.w-309 {
width: 309px;
}
.w-329 {
width: 329px;
}
.w-375 {
width: 375px;
}
.w-427 {
width: 427px;
}
.w-485 {
width: 485px;
}
.w-536 {
width: 536px;
}
.w-548 {
width: 548px;
}
.border-box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* border */
.border-l-dcdfe6 {
border-left: 1px solid #dcdfe6;
}
/* display */
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.top {
vertical-align: top;
}
.middle {
vertical-align: middle;
}
/* flex */
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-row {
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
.flex-align-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-pack-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex-wrap {
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
.dialog-footer {
font-size: 0;
/*height: 35px;*/
}
.font-0 .el-form-item__content {
font-size: 0;
}
/* 字号 */
i {
font-style: normal;
font-weight: normal;
}
.font-10 {
font-size: 10px;
}
.font-12 {
font-size: 12px;
}
.font-14 {
font-size: 14px;
}
.font-18 {
font-size: 18px;
}
.pointer {
cursor: pointer;
}
/* 颜色 */
.color-blue {
color: #1890ff;
}
.color-303133 {
color: #303133;
}
.color-909399 {
color: #909399;
}
.color-c0c4cc {
color: #c0c4cc;
}
.color-606266 {
color: #606266;
}
.pagewrap {
margin: 20px 0;
text-align: right;
}
.dialogwrap {
position: relative;
}
.dialogwrap:before {
position: absolute;
left: -20px;
top: -20px;
right: -20px;
content: '';
border-bottom: 1px solid #dedede;
}
.dialogcontent {
padding: 0 10px;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: rgb(250, 255, 189);
/* #FAFFBD; */
background-image: none;
color: rgb(0, 0, 0);
}
.el-table th {
background: #f1f3f7 !important;
}
.slide-fade-enter-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-leave-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to {
opacity: 0;
}
/* 新加*/
#app, #index, #content {
position: relative;
height: 100%;
}
/* table 的表头 -- 背景色 */
.el-table thead tr, .el-table thead th {
background: #f1f3f7;
}
/* 面包屑 */
.breadcrumb {
padding: 24px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 -1px 10px #dfdfdf;
}
.breadcrumb .breadcrumb-title {
margin: 30px 0 10px 0;
font-size: 20px;
}
/*有侧边栏的 右侧 */
.content-wrap {
height: 100%;
display: flex;
}
.content-wrap .right-wrap {
width: 100%;
box-sizing: border-box;
height: 100%;
overflow-y: auto;
}
.content-wrap .right-wrap .right-content {
padding: 24px;
}
.content-wrap .right-wrap .right-content .right-box {
background: #fff;
padding: 24px;
}
/* 无侧边栏的底部 */
.bottom-wrap {
padding: 24px;
color: #606266;
font-size: 14px;
}
.bottom-content-wrap {
/*background: #fff;
padding: 24px;*/
}
/*提示文字*/
.tip-text {
font-size: 12px;
color: #909399;
position: absolute;
bottom: -30px;
}
.el-form .el-form-item.is-success .el-input__inner, .el-form .el-form-item.is-success .el-input__inner:focus, .el-form .el-form-item.is-success .el-textarea__inner, .el-form .el-form-item.is-success .el-textarea__inner:focus {
border-color: #dcdfe6;
}
/* 开卡模板 */
.template-cell-r .el-input.is-disabled .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255, 255, 255, .1);
}
.el-button--text.m-l-10 {
margin-left: 10px;
}
.task-public .el-tabs .el-tabs__header {
margin: 0;
padding-left: 24px;
border-bottom: 1px solid #e4e7ed;
background: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 头部 */
.user-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.user-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
.pass-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.pass-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
/* 左侧菜单 */
.leftBar-wrap .el-menu {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item .el-submenu__title, .leftBar-wrap .cardmenu-item .el-menu-item, .leftBar-wrap .cardmenu-item .el-submenu .el-menu-item {
height: 40px;
line-height: 40px;
}
.leftBar-wrap .el-submenu__title:hover {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu .el-menu-item:hover label {
/*background-color: #1890ff;*/
color: #fff;
cursor: pointer;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title i {
color: #fff;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title span {
color: #fff;
}
.el-menu.el-menu--popup .el-menu-item.is-active label {
color: #fff;
}
/* 百分号 */
.percent-item .el-input-group__append {
padding: 0 12px;
}
/* table lable*/
.table-label .el-form-item__label {
line-height: 48px;
}
.el-table th .cell {
/*color: #909399;*/
font-size: 14px;
}
#index .el-table__empty-block {
height: 256px;
}
.common-wrap__table .el-table__empty-text {
margin-bottom: 40px;
}
.common-wrap__fix__table .el-table__empty-text {
margin-bottom: 40px;
}
/* 会员标签 */
.common-lib__cell__fieldName::before {
content: '';
width: 0px;
height: 10px;
position: absolute;
top: 1px;
right: 0;
border-right: 1px solid #C0C4CC;
}
.common-lib__cell__fieldName:last-child::before {
content: '';
width: 0px;
height: 10px;
position: absolute;
top: 1px;
right: 0;
border-right: 0px solid #C0C4CC;
}
/* 标签库通用 */
.right-box .common-wrap__opt {}
.common-libFields {
min-width: 1104px;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 22px;
overflow: hidden;
}
.common-libFields .common-lib__cell {
position: relative;
margin-bottom: 30px;
min-width: 522px;
max-width: calc(50% - 15px);
border: 1px solid rgba(220, 223, 230, 1);
border-radius: 3px;
}
.common-libFields .common-lib__cell.border-primary-color {
border-color: #1890ff;
}
.common-libFields .common-lib__cell:nth-child(2n+1) {
margin-right: 30px;
}
.common-libFields .common-lib__cell__head {
width: 100%;
height: 46px;
line-height: 46px;
padding: 0 24px;
background: #EBEEF5;
border-radius: 3px 3px 0 0;
}
.common-libFields .common-lib__cell__icon {
padding-right: 8px;
color: #909399;
font-size: 20px;
}
.common-libFields .common-lib__icon__right {
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: #C0C4CC;
}
.common-libFields .common-lib__cell__name {
font-size: 14px;
color: #606266;
}
.common-libFields .common-lib__cell__body {
padding: 17px 20px;
}
.common-libFields .common-lib__cell__fieldRow {
padding: 13px 0;
font-size: 0;
}
.common-libFields .common-lib__cell__fieldChild {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-libFields .common-lib__cell__fieldChild i {
font-weight: normal;
color: #C0C4CC;
font-size: 14px;
padding-left: 6px;
}
.common-libFields .common-lib__cell__fieldChild .common-lib__cell__name {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-libFields .common-lib__cell__fieldChild .common-lib__cell__name:hover {
color: #1890ff;
}
.common-libFields .common-lib__cell__fieldLastChild {
width: calc(100% - 80px);
max-width: 500px;
vertical-align: top;
font-size: 14px;
max-height: 65px;
overflow: hidden;
}
.common-libFields .common-lib__cell__fieldName {
position: relative;
margin-bottom: 10px;
padding: 0px 12px;
height: 12px;
/*line-height: 12px;*/
font-size: 13px;
color: #606266;
}
.common-libFields .common-lib__cell__radio {
position: absolute;
bottom: 0px;
right: 0px;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.common-libFields .common-lib__cell__radio .el-radio {
width: 50px;
height: 50px;
line-height: 50px;
}
.common-libFields .common-lib__cell__radio .el-radio__label {
display: none;
}
/* 通用标签列表 面包屑头部标签 */
.common-wrap__cateTags {
position: relative;
width: 100%;
height: 45px;
margin-bottom: 20px;
border-bottom: 1px solid #EBEEF5;
}
.common-wrap__cateTags .common-wrap__currentTag {
white-space: nowrap;
font-size: 0;
color: #303133;
}
.common-wrap__currentTag .common-wrap__currentTag__name {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-wrap__currentTag i {
font-size: 14px;
color: #909399;
}
.common-wrap__cateTags .common-wrap__childTag {
/*max-width: calc(100% - 280px);*/
vertical-align: middle;
margin-left: 8px;
padding-left: 10px;
font-size: 14px;
color: #606266;
border-left: 1px solid #979797;
white-space: nowrap;
/*overflow: hidden;*/
/*text-overflow: ellipsis;*/
}
.common-wrap__childTag .common-wrap__childTag__name {
margin-right: 10px;
padding: 2px 5px;
font-size: 14px;
color: #606266;
background: #F0F2F5;
border-radius: 2px;
}
.common-wrap__moreTag__body {
/*position: absolute;
top: 20px;
right: -10px;
min-width: 500px;
max-width: 1049px;
padding: 24px 12px 14px 22px;
background: #FFFFFF;
border: 1px solid rgba(235,238,245,1);
-webkit-box-shadow: 0px 2px 12px 0px rgba(6,19,33,0.10);
box-shadow: 0px 2px 12px 0px rgba(6,19,33,0.10);
z-index: 1;*/
}
.el-popover .common-wrap__childTag__name {
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
padding: 2px 5px;
font-size: 14px;
color: #606266;
background: #F0F2F5;
border-radius: 2px;
}
/* 分页 */
.common-wrap__page {
padding: 24px 0 30px 0;
}
.common-wrap__page .el-input {
font-size: 12px;
}
.common-wrap__page .el-input__inner {
height: 28px;
line-height: 28px;
}
/* 公共底部固定部分 */
.common-wrap__fix {
position: fixed;
right: 0;
bottom: 0;
width: 706px;
height: 70px;
background: #04143A;
font-size: 16px;
color: #fff;
z-index: 2;
}
.common-wrap__fix__div {
position: relative;
width: 100%;
z-index: 2;
}
.common-wrap__fix__div .common-wrap__fix__showSection {
position: relative;
width: 100%;
line-height: 70px;
background: #04143A;
z-index: 2;
}
.common-wrap__fix__showSection .common-wrap__fix__left {
display: inline-block;
width: 528px;
cursor: pointer;
}
.common-wrap__fix__left i {
vertical-align: top;
padding: 0 15px;
font-size: 27px;
color: rgba(255, 255, 255, 0.70);
}
.common-wrap__fix__left span {
position: relative;
vertical-align: top;
padding-left: 15px;
}
.common-wrap__fix__left span::before {
content: '';
position: absolute;
top: 26px;
left: 0;
width: 0;
height: 20px;
border-left: 1px solid #243969;
}
.common-wrap__fix__left span i {
padding: 0 4px;
font-weight: normal;
font-size: 22px;
color: #fff;
}
.common-wrap__fix__showSection .el-button {
width: 178px;
height: 70px;
padding: 0;
line-height: 70px;
border-radius: 0;
font-size: 16px;
}
.common-wrap__fix__hideList {
position: absolute;
bottom: 70px;
left: 0;
right: 0;
height: 352px;
padding: 24px 22px;
background: #fff;
-webkit-box-shadow: -3px -3px 10px 0px rgba(198, 198, 198, 0.50);
box-shadow: -3px -3px 10px 0px rgba(198, 198, 198, 0.50);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
}
.common-wrap__fix__hideList.hide {
bottom: -404px;
}
.common-wrap__fix__hideList .common-wrap__fix__title {
width: 100%;
margin-bottom: 20px;
font-size: 18px;
color: #303133;
}
.common-wrap__fix__hideList .common-wrap__fix__table {
width: 100%;
height: 333px;
}
/* 分类小版 */
.cate-dialog .el-dialog__body {
padding: 20px 20px 24px 20px;
}
.cate-dialog .el-form-item__label {
color: #606266;
}
.cate-dialog .el-table__body {
color: #606266;
}
.addTag-tab-wrap table tr td {
overflow: hidden;
}
/* 标签详情各个组件 */
.tagShort-dialog .el-dialog__headerbtn {
top: 28px;
}
.tagShort-dialog .el-dialog__body {
/*padding: 0 20px 30px 20px;*/
}
.tagShort-dialog .el-dialog__footer {
/*border-top: none;
border-top: 0px;*/
}
/* 选项 (固化值)*/
.checkboxOption-wrap {
width: 100%;
}
.checkboxOption-wrap__head {
width: 100%;
padding-bottom: 24px;
border-bottom: 1px solid #DCDFE6;
}
.checkboxOption-wrap__head .checkboxOption-wrap__head__title {
width: 100%;
margin-bottom: 30px;
font-size: 16px;
color: #303133;
font-weight: 500;
}
.checkboxOption-wrap__head .realtime-span {
padding: 3px 4px;
font-size: 11px;
color: #fff;
border-radius: 4px;
background: #1890ff;
}
.checkboxOption-wrap__head .checkboxOption-wrap__head__describe {
width: 100%;
font-size: 14px;
color: #606266;
line-height: 20px;
white-space: pre-wrap;
word-break: break-all;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__title {
width: 100%;
height: 74px;
line-height: 74px;
font-weight: 500;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__checkAll {
width: 100%;
height: 50px;
line-height: 50px;
padding-left: 10px;
background: #F1F3F7;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__options {
padding-left: 10px;
}
.checkboxOption-wrap__body .el-checkbox-group {
line-height: 60px;
}
.add-search-select .el-select span {
display: none;
-webkit-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
}
.city-select-wrap .el-tabs__content {
overflow: unset;
}
.el-date-editor .el-range__close-icon {
line-height: 27px;
}
.manualTagEdit-wrap__form .input-label {
position: absolute;
right: 10px;
top: 2px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__set .input-label {
position: absolute;
right: 60px;
top: 10px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__form .textarea-label {
position: absolute;
right: 10px;
top: 65px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__form .el-textarea__inner {
resize: none;
height: 96px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
}
.memberGroupEdit-wrap__body .el-textarea__inner {
resize: none;
height: 96px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
}
/* 会员信息 */
.singelinfo {
justify-content: flex-start
}
.singelinfo-img {
flex: 0 0 100px;
}
.singelinfo-wrap {
display: flex;
flex-direction: column;
}
.singelinfo-content {
padding: 0 10px;
}
.singelinfo-item {
line-height: 0;
}
.singelinfo-jl {
align-items: center;
justify-content: center;
margin: 20px 0;
}
.singelinfo-jlitem {
text-align: center;
}
.singelinfo-cost {
text-align: center;
}
.lheigth0 {
color: #303133;
margin: 5px 0;
}
.lheigth0 span {
color: #606266;
}
.evl-right {
margin-right: 5px;
}
.singelinfo-costitem p {
margin: 5px 0;
}
/* 暂存架 */
.name-hover:hover {
color: #1890ff;
}
\ No newline at end of file
@base-color: #353944;
@hover-color: #3c92eb;
@hoverbg-color: #20242d;
@main-color: #1890ff;
@navbgcolor: #04143a;
@sidebgcolor: #343c4c;
@userinfobgcolor: #ecf5ff;
@contentbgcolor: #f5f7fa;
@bordercolor: #dcdfe6;
@customnavcolor: #04143a;
@btnbgcolor: #f5f7fa;
@iconbgcolor: #e6e9f2;
.flex1(@width,@height) {
flex: 0 0 @width;
width: @width;
height: @height;
}
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st0" d="M80.9,159.3c0,50.2,40.7,90.9,90.9,90.9s90.9-40.7,90.9-90.9l0,0c0-50.2-40.7-90.9-90.9-90.9
C121.6,68.3,80.9,109,80.9,159.3C80.9,159.2,80.9,159.3,80.9,159.3z"/>
<path class="st1" d="M96.3,264.2c-0.9,0-2,0-2.8-0.1l0.3-2.7c1.6,0.1,3.3,0.1,5.1,0l0.1,2.7C98,264.1,97.1,264.2,96.3,264.2z
M104.3,263.4l-0.4-2.7c1.6-0.3,3.3-0.7,5.1-1.1l0.7,2.5C107.9,262.8,106,263.2,104.3,263.4z M87.8,263c-1.9-0.5-3.6-1.3-5.2-2.3
l1.3-2.3c1.3,0.8,2.9,1.5,4.5,2L87.8,263L87.8,263z M114.8,260.6l-0.8-2.5c1.6-0.5,3.3-1.2,4.9-1.9l0.9,2.5
C118.2,259.6,116.6,260.1,114.8,260.6z M78.2,257.1c-1.2-1.3-2.3-2.9-3.2-4.7l2.4-1.2c0.8,1.5,1.7,2.9,2.8,4.1L78.2,257.1z
M125,256.7l-1.1-2.4c1.6-0.7,3.2-1.5,4.8-2.3l1.2,2.4C128.2,255.3,126.5,255.9,125,256.7z M134.6,251.9l-1.2-2.4
c1.5-0.8,3.1-1.7,4.7-2.5l1.3,2.3C137.7,250.2,136.1,251.1,134.6,251.9z M72.9,247.3c-0.5-1.7-0.9-3.5-1.2-5.5l2.7-0.4
c0.3,1.7,0.7,3.5,1.1,5.1L72.9,247.3L72.9,247.3z M144,246.6l-1.3-2.3c1.5-0.9,2.9-1.9,4.5-2.8l1.5,2.3
C146.9,244.6,145.5,245.6,144,246.6z M153,240.7l-1.5-2.3c1.5-0.9,2.9-2,4.4-3.1l1.6,2.1C155.9,238.7,154.4,239.6,153,240.7z
M71.3,236.4v-1.2c0-1.3,0-2.8,0.1-4.3l2.7,0.1c-0.1,1.3-0.1,2.8-0.1,4.1v1.1L71.3,236.4z M161.8,234.4l-1.6-2.1
c1.5-1.1,2.8-2.1,4.3-3.2l1.6,2.1C164.6,232.3,163.1,233.3,161.8,234.4z M170.2,227.9l-1.6-2.1c1.3-1.1,2.8-2.3,4.1-3.3l1.7,2
C173,225.6,171.7,226.8,170.2,227.9z M74.7,225.9l-2.7-0.4c0.3-1.7,0.5-3.5,0.9-5.3l2.7,0.5C75.3,222.5,75,224.3,74.7,225.9
L74.7,225.9z M178.5,221l-1.7-2c1.3-1.2,2.7-2.3,4-3.5l1.7,2C181.3,218.8,179.8,219.8,178.5,221z M76.9,215.6l-2.5-0.7l1.6-5.2
l2.5,0.8C77.9,212.2,77.4,214,76.9,215.6z M186.6,214l-1.7-2c1.3-1.2,2.7-2.4,3.9-3.6l1.9,2C189.2,211.6,188,212.8,186.6,214z
M194.4,206.6l-1.9-1.9c1.3-1.2,2.5-2.4,3.9-3.7l1.9,1.9C197.1,204.2,195.7,205.4,194.4,206.6z M80.2,205.5l-2.5-0.9
c0.7-1.6,1.3-3.3,2-4.9l2.5,1.1L80.2,205.5z M202.2,199.1l-1.9-1.9c1.2-1.2,2.5-2.5,3.7-3.9l1.9,1.9
C204.6,196.6,203.4,197.8,202.2,199.1z M84.5,195.6l-2.5-0.7c0.1-0.3,0.1-0.7,0.1-1.2c0-0.9-0.1-2-0.4-3.6l2.7-0.4
c0.3,1.7,0.4,3.1,0.4,4C84.6,194.4,84.6,195.1,84.5,195.6z M209.5,191.4l-2-1.9c1.2-1.3,2.4-2.5,3.6-3.9l2,1.7
C212,188.8,210.7,190,209.5,191.4z M80.8,184.9v-0.4c-0.3-1.5-0.5-3.2-0.9-4.9l2.7-0.4c0.3,1.7,0.7,3.3,0.9,4.9v0.4L80.8,184.9z
M215.5,184.8l-2-1.7c1.2-1.3,2.4-2.7,3.5-4l2,1.7C217.9,182.1,216.7,183.5,215.5,184.8z M222.6,176.8l-2-1.7c1.2-1.3,2.3-2.7,3.5-4
l2,1.7C225,174,223.8,175.5,222.6,176.8z M78.9,174.4c-0.3-1.9-0.5-3.6-0.7-5.3l2.7-0.3c0.1,1.7,0.4,3.5,0.7,5.2L78.9,174.4z
M229.6,168.5l-2.1-1.7c1.1-1.3,2.3-2.8,3.3-4.1l2.1,1.6C231.8,165.7,230.6,167.2,229.6,168.5z M77.7,163.6
c-0.1-1.9-0.1-3.6-0.1-5.5h2.7c0,1.7,0,3.5,0.1,5.2L77.7,163.6z M236.3,160.1l-2.1-1.6c1.1-1.5,2.1-2.8,3.2-4.3l2.1,1.6
C238.4,157.3,237.3,158.6,236.3,160.1z M80.4,152.9l-2.7-0.1c0.1-1.9,0.3-3.6,0.5-5.5l2.7,0.3C80.6,149.4,80.5,151.1,80.4,152.9z
M242.5,151.5l-2.1-1.6c1.1-1.5,2.1-2.9,3.1-4.3l2.1,1.5C244.7,148.6,243.6,150,242.5,151.5z M248.8,142.7l-2.3-1.5
c1.1-1.5,2-2.9,2.9-4.4l2.3,1.5C250.8,139.8,249.8,141.2,248.8,142.7z M81.7,142.4l-2.7-0.5c0.4-1.7,0.8-3.6,1.2-5.3l2.5,0.7
C82.4,139.1,82,140.7,81.7,142.4z M254.7,133.7l-2.3-1.5c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.3C256.6,130.7,255.6,132.1,254.7,133.7z
M84.5,132.4l-2.5-0.9c0.7-1.7,1.3-3.3,2.1-5.1l2.4,1.1C85.7,129.2,85,130.8,84.5,132.4z M260.2,124.5l-2.3-1.3
c0.9-1.6,1.7-3.1,2.7-4.7l2.3,1.3C262.1,121.4,261.1,122.9,260.2,124.5z M88.9,122.9l-2.3-1.3l0.9-1.6c0.5-0.9,1.1-2,1.7-2.9
l2.3,1.3c-0.5,1.1-1.2,2-1.7,2.9L88.9,122.9z M265.4,115.2L263,114c0.8-1.6,1.6-3.2,2.4-4.7l2.4,1.2
C267.1,111.9,266.3,113.5,265.4,115.2z M94.3,113.7l-2.3-1.3c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.5L94.3,113.7z M270.2,105.5l-2.4-1.1
c0.8-1.6,1.5-3.2,2.1-4.8l2.4,1.1C271.8,102.2,271,103.8,270.2,105.5z M100,104.9l-2.1-1.6l3.2-4.4l2.1,1.6
C102.1,101.9,101.1,103.3,100,104.9z M106.6,96.4l-2-1.7l3.6-4l1.9,1.9C108.8,93.8,107.6,95.1,106.6,96.4z M274.5,95.6l-2.5-0.9
c0.7-1.6,1.3-3.3,1.9-4.9l2.5,0.9C275.8,92.2,275.2,93.9,274.5,95.6z M113.9,88.9l-1.7-2c1.3-1.2,2.8-2.4,4.1-3.5l1.6,2.1
C116.6,86.7,115.1,87.7,113.9,88.9z M278.1,85.5l-2.5-0.8c0.5-1.7,1.1-3.5,1.5-5.1l2.5,0.7C279.2,81.9,278.8,83.6,278.1,85.5z
M122.1,82.4l-1.5-2.3c1.5-1.1,3.1-2,4.5-2.9l1.3,2.3C125,80.5,123.5,81.5,122.1,82.4z M131.2,77.2l-1.2-2.4
c1.6-0.8,3.3-1.5,4.9-2.3L136,75C134.4,75.7,132.8,76.4,131.2,77.2z M280.9,74.9l-2.7-0.5c0.4-1.7,0.7-3.5,0.8-5.2l2.7,0.4
C281.6,71.3,281.3,73.2,280.9,74.9z M140.9,73.2l-0.8-2.5l5.2-1.6l0.7,2.5C144.3,72.1,142.7,72.6,140.9,73.2z M151.1,70.4l-0.5-2.7
c1.7-0.4,3.6-0.8,5.3-1.1l0.4,2.7C154.6,69.7,152.8,70,151.1,70.4z M187.8,69.2c-1.5-0.1-3.2-0.4-5.2-0.5l0.3-2.7
c2.1,0.1,3.9,0.4,5.3,0.7L187.8,69.2z M194,68.9l-1.6-2.1c1.5-1.1,2.9-2.1,4.3-3.2l1.6,2.1C196.9,66.7,195.5,67.8,194,68.9z
M161.5,68.6l-0.3-2.7c1.7-0.3,3.6-0.4,5.3-0.4l0.1,2.7L161.5,68.6z M177.3,68.1c-1.6-0.1-3.2-0.1-4.8-0.1H172v-2.7h0.5
c1.6,0,3.2,0,4.9,0.1L177.3,68.1z M282.2,64.1l-2.7-0.1v-1.7c0-1.2,0-2.4-0.1-3.5l2.7-0.3c0.1,1.2,0.1,2.4,0.1,3.6V64.1z
M202.7,62.6l-1.5-2.3c1.5-1.1,2.9-2,4.4-2.9l1.5,2.3C205.6,60.6,204.2,61.7,202.7,62.6L202.7,62.6z M211.6,56.9l-1.5-2.3
c1.6-0.9,3.1-1.9,4.7-2.8l1.3,2.3C214.6,55,213.1,55.9,211.6,56.9z M278.6,53.8c-0.4-1.7-1.1-3.3-1.7-4.7l2.4-1.2
c0.8,1.6,1.5,3.3,2,5.3L278.6,53.8L278.6,53.8z M220.7,51.5l-1.3-2.4c1.6-0.9,3.2-1.7,4.8-2.5l1.2,2.4
C223.9,49.8,222.3,50.7,220.7,51.5z M230.2,46.7l-1.1-2.4c1.7-0.8,3.3-1.5,4.9-2.1l0.9,2.5C233.6,45.4,231.8,46,230.2,46.7z
M274.1,45l-0.9-0.9c-0.9-0.8-1.9-1.5-2.9-2.1l1.3-2.3c1.2,0.7,2.4,1.5,3.3,2.4c0.4,0.4,0.8,0.7,1.1,1.1L274.1,45L274.1,45z
M240,42.8l-0.8-2.5c1.7-0.7,3.5-1.2,5.2-1.6l0.7,2.5C243.5,41.7,241.7,42.3,240,42.8z M265.5,40.1c-1.6-0.4-3.2-0.7-5.1-0.8
l0.1-2.7c2,0.1,3.9,0.4,5.5,0.8L265.5,40.1L265.5,40.1z M250.2,40.1l-0.5-2.7c1.9-0.4,3.7-0.5,5.5-0.8l0.3,2.7
C253.8,39.5,252,39.7,250.2,40.1L250.2,40.1z"/>
<path class="st2" d="M92.1,178.4c5.6,5.9,32.8-11.2,60.8-38.2s46.2-53.7,40.6-59.6c0,0,0,0-0.1-0.1c-5.6-5.8-32.9,11.3-60.9,38.4
C104.6,145.9,86.5,172.6,92.1,178.4L92.1,178.4z"/>
<path class="st0" d="M122.1,117.3l5.7-5.7l25.5,25.5l-5.7,5.7L122.1,117.3z M163.8,147.2h148.4c3.7,0,6.7,2.9,6.7,6.7v61.5
c0,3.7-2.9,6.7-6.7,6.7H163.8c-3.7,0-6.7-2.9-6.7-6.7v-61.5C157.1,150.2,160,147.2,163.8,147.2z"/>
<path class="st3" d="M325.8,134.1v-5.6h2v5.6h5.6v2h-5.6v5.7h-2v-5.6h-5.6v-2L325.8,134.1L325.8,134.1z M86.6,202.5l-1.3-2.9
c-0.4-0.9-0.8-1.7-1.3-2.9l-0.8-3.3c-4-10.6-6.3-21.9-6.3-34c0-23.9,9-45.9,23.8-62.3L85.3,80.8c-1.6-1.7-1.6-4.5,0.1-6.2
c1.7-1.7,4.4-1.7,6.2-0.1l16.3,15.4c16.6-15,38.5-24.1,62.7-24.1c17.8,0,34.5,4.9,48.7,13.6c10.7,7.2,13.4,8.7,21,17.6
c5.7,6.7,6,6.4,10.7,14.2c0.8,0.1,7.5,11.8,7.5,15.6c2.4,6.3,4,13,4.9,19.7h48.4c2.7,0,5.1,1.1,7,2.9c1.9,1.9,2.9,4.4,2.9,7v57.8
c0,2.7-1.1,5.1-2.9,7c-1.9,1.9-4.4,2.9-7,2.9h-73.4c-17.1,17.8-41.2,28.9-67.8,28.9c-10.8,0-21.7-1.9-31.8-5.5
c-17.8-7.9-17.1-7.2-26.1-14.2s-10-9.4-22.7-25.9C88.6,205.3,87.7,204.5,86.6,202.5z M91.7,202.6c10.2,18.5,26.7,33,46.7,40.6
c8.6-5.3,23.7-16.8,25.5-19.3c-2.7,0-5.1-1.1-7-2.9s-2.9-4.4-2.9-7v-46.8c-9.6,6.3-20.6,10.8-31.7,13.5c-13.9,3.3-26.7,3.1-30.4-0.5
c-6.3-6.3,9.1-30.2,34.2-56.4l-23-24.2c-14,15.9-22.7,36.8-22.7,59.6c0,10.8,1.9,21.5,5.7,31.6l2,5.5
C88.8,197.4,89.3,198.9,91.7,202.6L91.7,202.6z M110.6,92.3l24.3,22.9l0.1-0.1c27-26.2,51.5-42,57.9-35.6c3.6,3.6,3.7,16.4,0.3,30.5
c-3.2,13-8.8,25.5-16.8,36.4h64.4c5.1-7,9.6-13.6,13.6-20.1c-13.1-33.4-45.7-57-83.7-57C147.5,69.4,126.5,78,110.6,92.3z M137.8,118
l17,16c11-11.4,20.5-22.7,26.7-32.2c6.6-9.9,9.1-16.8,7.5-18.5c-1.6-1.6-8.6,0.9-18.5,7.5C161,97.2,149.5,106.7,137.8,118z
M152.3,136.7L89,77c-0.3-0.3-0.8-0.3-1.1,0s-0.3,0.8,0,1.1l59.6,63.1C149.2,139.8,150.7,138.1,152.3,136.7z M144.9,143.8L129,127
c-10.6,11.1-19.7,21.9-25.7,31.2c-6.6,9.9-9.1,16.8-7.5,18.5c1.6,1.6,8.6-0.9,18.5-7.5C123.3,163,134.1,154.2,144.9,143.8
L144.9,143.8z M192,90.1c-4,11.5-18.7,30.8-38.6,50.7c-20.1,20.1-39.3,34.8-50.9,38.6c5.1,0.1,11.9-0.5,19-2.3
c16.3-3.9,32-11.9,44-23.9c12-11.9,20.2-27.7,24.2-44.1C191.3,102,192,95.2,192,90.1z M157.6,164.8v49.3c0,1.6,0.7,3.2,1.7,4.4
c1.2,1.2,2.7,1.7,4.4,1.7h147.9c3.3,0,6.2-2.8,6.2-6.2v-57.9c0-3.3-2.8-6.2-6.2-6.2H173.3c-0.1,0.3-0.4,0.4-0.5,0.7l3.1,2.8
c3.1,2.9,3.2,7.9,0.1,11c-2.9,3.1-7.9,3.2-11,0.1l-3.1-3.2C160.6,162.6,159.1,163.7,157.6,164.8z M170.3,153.5
c-1.7,2-3.7,3.7-5.6,5.6l2.8,2.9c1.7,1.7,4.3,1.7,5.9,0.1c0.8-0.8,1.2-1.9,1.2-2.9s-0.5-2.1-1.3-2.9
C173.3,156.3,170.3,153.5,170.3,153.5z M233,224h-68.7c-9.8,8-17,13.4-26.1,19.3c9.1,3.3,22.9,6,32.4,6
C194.8,249.1,216.9,239.5,233,224z M259.6,146.3c-0.8-5.3-3.7-15-5.3-20.1c-4.3,7.1-9.1,14.4-13.9,20.1H259.6z M196.5,206.7v-9
h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.2v9h-5.3V206.7z M243.6,207.4c-5.1,0-9-2-11.8-6
s-4.1-9.5-4.1-16.3s1.5-12.2,4.3-16.3c2.8-4,6.7-6.2,11.8-6.2s9,2,11.8,6s4.1,9.5,4.1,16.3s-1.3,12.3-4.1,16.3
C252.6,205.4,248.7,207.4,243.6,207.4z M243.6,202.7c3.3,0,6-1.6,7.8-4.8c1.9-3.2,2.7-7.5,2.7-13c0-5.3-0.9-9.6-2.7-12.8
c-1.9-3.2-4.4-4.8-7.8-4.8c-3.3,0-5.9,1.6-7.8,4.8c-1.9,3.2-2.8,7.5-2.8,12.8s0.9,9.8,2.7,13C237.6,201.1,240.1,202.7,243.6,202.7z
M301.6,206.7v-9h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.3v9h-5.2V206.7z M180.1,192.8
l16.4,0.1v-25.1h-0.1c-4.1,5.9-7.5,10.7-10,14.6C184,186.3,181.8,189.8,180.1,192.8L180.1,192.8z M285.2,192.8l16.4,0.1v-25.1h-0.1
c-4.1,5.9-7.5,10.7-10,14.6C288.9,186.3,286.9,189.8,285.2,192.8L285.2,192.8z M51.5,100.4l4-4l1.3,1.3l-4,4l4,4l-1.3,1.3l-4-4l-4,4
l-1.3-1.3l4-4l-4-4l1.3-1.3L51.5,100.4z M344.6,167.6V158h3.3v9.6h9.6v3.3h-9.6v9.6h-3.3v-9.6H335v-3.3H344.6z"/>
<path class="st4" d="M52.1,248.9c2.5,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7c-2.5,0-4.7,2.1-4.7,4.7S49.6,248.9,52.1,248.9z"/>
<path class="st3" d="M52.1,250.2c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S55.5,250.2,52.1,250.2z M52.1,240.8c-1.9,0-3.3,1.5-3.3,3.3
s1.5,3.3,3.3,3.3c1.9,0,3.3-1.5,3.3-3.3S54,240.8,52.1,240.8z"/>
<path class="st3" d="M276.6,70.1l5.2-6.4l2.8,7.9l6.4,5.2l-7.9,2.8l-5.2,6.4l-2.8-7.9l-6.4-5.2L276.6,70.1z"/>
<path class="st3" d="M277.4,88.7l-3.5-9.8l-8-6.6l9.8-3.5l6.6-8l3.5,9.8l8,6.6l-9.8,3.5L277.4,88.7z M271.4,73.3l4.9,4l2.1,6l4-4.9
l6-2.1l-4.9-4l-2.1-6l-4,4.9L271.4,73.3z"/>
<path class="st3" d="M109.7,274.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4h-60.4c-0.7,0-1.3-0.6-1.3-1.3
C108.3,275.3,108.9,274.7,109.7,274.7"/>
<path class="st3" d="M202.3,274.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C201.6,274.9,201.9,274.7,202.3,274.7"/>
<path class="st3" d="M141.9,284.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H141.9
c-0.7,0-1.3-0.6-1.3-1.3l0,0C140.5,284.8,141.1,284.2,141.9,284.2"/>
<path class="st3" d="M77.5,284.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H77.5c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C76.8,284.3,77.1,284.2,77.5,284.2"/>
<path class="st3" d="M180.8,274.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C180.6,274.7,180.7,274.7,180.8,274.7"/>
<path class="st3" d="M268,266.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3H268c-0.7,0-1.3-0.6-1.3-1.3
C266.7,267.3,267.3,266.6,268,266.6"/>
<path class="st3" d="M82.8,266.6h171.8c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5s-0.7,0.8-1.2,0.8H82.8c-0.7,0-1.3-0.6-1.3-1.3
C81.5,267.3,82.1,266.6,82.8,266.6"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st3" d="M37.7,141.1c-2.4,0-4.4-1.9-4.4-4.4c0-2.4,1.9-4.4,4.4-4.4c2.4,0,4.4,1.9,4.4,4.4
C42,139.2,40.1,141.1,37.7,141.1z"/>
<path class="st3" d="M264.6,80.4c-2.1,0-3.8-1.7-3.8-3.8s1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C268.4,78.7,266.7,80.4,264.6,80.4z
M264.6,74.4c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1C266.7,75.4,265.8,74.4,264.6,74.4z"/>
<path class="st3" d="M98.8,136.7c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S101.4,136.7,98.8,136.7z M98.8,129.4
c-1.5,0-2.6,1.2-2.6,2.6s1.2,2.6,2.6,2.6c1.5,0,2.6-1.2,2.6-2.6S100.2,129.4,98.8,129.4z"/>
<path class="st3" d="M144.3,113.8h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C143.6,113.9,143.9,113.8,144.3,113.8"/>
<path class="st3" d="M148.4,89.1v5.7c0,0.3-0.1,0.5-0.3,0.7c-0.4,0.4-0.9,0.4-1.3,0l0,0c-0.2-0.2-0.3-0.4-0.3-0.7v-5.7
c0-0.2,0.1-0.5,0.3-0.7c0.4-0.4,0.9-0.4,1.3,0l0,0C148.3,88.6,148.4,88.8,148.4,89.1"/>
<g>
<path class="st3" d="M193.5,123.6l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3c-0.4-0.1-0.7-0.4-0.8-0.8C193.1,124.3,193.2,123.9,193.5,123.6"/>
<path class="st3" d="M195.3,118.6l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C194.7,118.2,195,118.4,195.3,118.6"/>
</g>
<g>
<path class="st3" d="M355,85.8l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3s-0.7-0.4-0.8-0.8S354.7,86.1,355,85.8"/>
<path class="st3" d="M356.8,80.8l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C356.2,80.4,356.5,80.5,356.8,80.8"/>
</g>
<path class="st1" d="M87.8,267.9h99.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4H87.8c-1.2,0-2.2-0.6-2.2-1.3
C85.6,268.5,86.6,267.9,87.8,267.9"/>
<path class="st1" d="M240.5,267.9H298c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-57.5c-1.2,0-2.2-0.6-2.2-1.3c0-0.4,0.2-0.7,0.7-1
C239.3,268,239.9,267.9,240.5,267.9"/>
<path class="st1" d="M140.9,277.3h216.8c1.2,0,2.2,0.6,2.2,1.3c0,0.4-0.2,0.7-0.7,1c-0.4,0.3-1,0.4-1.6,0.4H140.9
c-1.2,0-2.2-0.6-2.2-1.3l0,0C138.7,277.9,139.7,277.3,140.9,277.3"/>
<path class="st1" d="M34.7,277.3h57.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4l0,0H34.7c-1.2,0-2.2-0.6-2.2-1.3
c0-0.4,0.2-0.7,0.7-1C33.6,277.5,34.1,277.3,34.7,277.3"/>
<path class="st1" d="M205.1,267.9h13.3c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0.1-2.3-0.5-2.4-1.3s0.8-1.4,2.1-1.4
C204.8,267.9,205,267.9,205.1,267.9"/>
<path class="st1" d="M348.8,259.8h13.3c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0-2.2-0.6-2.2-1.3
C346.6,260.4,347.6,259.8,348.8,259.8"/>
<path class="st1" d="M43.6,259.8h283.1c0.6,0,1.1,0.1,1.6,0.4c0.6,0.4,0.8,1,0.5,1.5s-1.1,0.8-2,0.8H43.6c-1.2,0-2.2-0.6-2.2-1.3
S42.4,259.8,43.6,259.8"/>
<path class="st3" d="M180.3,240h-41.9c-0.6,0-1-0.4-1-1v-11.9c0-0.6,0.4-1,1-1s1,0.4,1,1v11h40v-41c0-0.6,0.4-1,1-1h10.5
c0.6,0,1,0.4,1,1s-0.4,1-1,1h-9.5v41C181.2,239.6,180.9,240,180.3,240L180.3,240z M237.5,240h-22c-0.6,0-1-0.4-1-1v-41H205
c-0.6,0-1-0.4-1-1s0.4-1,1-1h10.5c0.6,0,1,0.4,1,1v41h21c0.6,0,1,0.4,1,1S238,240,237.5,240z M105.9,231l2.7,18.2H95.7l2.7-18.2
H105.9 M107.5,229.1H96.7l-3.2,22h17.2L107.5,229.1z"/>
<path class="st6" d="M157.7,231.2H46.1c-5.1,0-9.2-4.1-9.2-9.2v-10.5h129.9v10.8C166.8,227.2,162.7,231.2,157.7,231.2L157.7,231.2z"
/>
<path class="st2" d="M167.4,210.9h-125v-47c0-3.6,3-6.7,6.7-6.7H163c2.5,0,4.6,2,4.6,4.6L167.4,210.9L167.4,210.9z"/>
<path class="st3" d="M158.8,154.2c3.9,0,7,3.1,7,7v61.9c0,3.9-3.1,7-7,7H45.4c-3.9,0-7-3.1-7-7v-61.9c0-3.9,3.1-7,7-7L158.8,154.2
M158.8,152.3H45.4c-5,0-9,4-9,9v61.9c0,5,4,9,9,9h113.4c5,0,9-4,9-9v-61.9C167.7,156.3,163.7,152.3,158.8,152.3z M116.2,251.8H88.1
c-0.6,0-1-0.4-1-1s0.4-1,1-1h28.1c0.6,0,1,0.4,1,1C117.1,251.4,116.7,251.8,116.2,251.8L116.2,251.8z"/>
<path class="st3" d="M37.6,210.6h129.1v1.9H37.6V210.6z"/>
<path class="st3" d="M101.7,222.9c1.4,0.9,3.3,0.6,4.2-0.8c0.9-1.4,0.6-3.3-0.8-4.2l0,0c-1.4-0.9-3.3-0.6-4.2,0.8
C99.9,220.1,100.3,222,101.7,222.9L101.7,222.9z"/>
<path class="st3" d="M102.1,223.7c-1.8,0-3.3-1.5-3.3-3.3s1.5-3.3,3.3-3.3s3.3,1.5,3.3,3.3S103.9,223.7,102.1,223.7z M102.1,218.1
c-1.3,0-2.4,1-2.4,2.4s1,2.4,2.4,2.4c1.3,0,2.4-1,2.4-2.4S103.4,218.1,102.1,218.1z M348.1,252.4H244.9c-3.5,0-6.5-2.9-6.5-6.5V114
c0-3.5,2.9-6.5,6.5-6.5h103.3c3.5,0,6.5,2.9,6.5,6.5v131.9C354.6,249.5,351.7,252.4,348.1,252.4L348.1,252.4z M244.9,109.5
c-2.5,0-4.6,2-4.6,4.6V246c0,2.5,2,4.6,4.6,4.6h103.3c2.5,0,4.6-2,4.6-4.6V114c0-2.5-2-4.6-4.6-4.6L244.9,109.5z"/>
<path class="st3" d="M238.9,131.9h114.3v1.9H238.9V131.9z M238.9,155.7h114.3v1.9H238.9V155.7z M238.9,179.5h114.3v1.9H238.9V179.5z
M239.8,202.4h114.3v1.9H239.8V202.4z M238.9,227.1h114.3v1.9H238.9V227.1z"/>
<g>
<path class="st3" d="M255,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,119.4,255,120.5
L255,120.5z"/>
<path class="st3" d="M264.6,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,118.6,264.6,119.4,264.6,120.5L264.6,120.5z"/>
<path class="st3" d="M274.1,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,118.6,274.1,119.4,274.1,120.5L274.1,120.5z"/>
<path class="st3" d="M255,145.2c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,144.2,255,145.2
L255,145.2z"/>
<path class="st3" d="M264.6,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,143.3,264.6,144.2,264.6,145.2L264.6,145.2z"/>
<path class="st3" d="M274.1,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,143.3,274.1,144.2,274.1,145.2L274.1,145.2z"/>
<path class="st3" d="M255,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,168,255,169L255,169z"/>
<path class="st3" d="M264.6,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,167.1,264.6,168,264.6,169L264.6,169z"/>
<path class="st3" d="M274.1,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,167.1,274.1,168,274.1,169L274.1,169z"/>
<path class="st3" d="M255,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,190.8,255,191.9
L255,191.9z"/>
<path class="st3" d="M264.6,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,190.8,264.6,191.9
L264.6,191.9z"/>
<path class="st3" d="M274.1,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,190.8,274.1,191.9
L274.1,191.9z"/>
<path class="st3" d="M255,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,214.6,255,215.7
L255,215.7z"/>
<path class="st3" d="M264.6,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,213.8,264.6,214.6,264.6,215.7L264.6,215.7z"/>
<path class="st3" d="M274.1,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,213.8,274.1,214.6,274.1,215.7L274.1,215.7z"/>
<path class="st3" d="M255,239.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,238.5,255,239.5
L255,239.5z"/>
<path class="st3" d="M264.6,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,238.5,264.6,239.5
L264.6,239.5z"/>
<path class="st3" d="M274.1,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,238.5,274.1,239.5
L274.1,239.5z"/>
</g>
<path class="st3" d="M310.3,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C311.2,125.8,310.9,126.2,310.3,126.2z
M319.8,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C320.8,125.8,320.4,126.2,319.8,126.2z M329.3,126.2
c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C330.3,125.8,329.9,126.2,329.3,126.2z M338.9,126.2c-0.6,0-1-0.4-1-1v-9.5
c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C339.8,125.8,339.4,126.2,338.9,126.2z M310.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1
v9.5C311.2,149.6,310.9,150,310.3,150z M319.8,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,149.6,320.4,150,319.8,150z M329.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,149.6,329.9,150,329.3,150z M338.9,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,149.6,339.4,150,338.9,150z M310.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,174.4,310.9,174.7,310.3,174.7L310.3,174.7z M319.8,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,174.4,320.4,174.7,319.8,174.7L319.8,174.7z M329.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,174.4,329.9,174.7,329.3,174.7L329.3,174.7z M338.9,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,174.4,339.4,174.7,338.9,174.7L338.9,174.7z M310.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,197.2,310.9,197.6,310.3,197.6z M319.8,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,197.2,320.4,197.6,319.8,197.6z M329.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,197.2,329.9,197.6,329.3,197.6z M338.9,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,197.2,339.4,197.6,338.9,197.6z M310.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,221,310.9,221.4,310.3,221.4z M319.8,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,221,320.4,221.4,319.8,221.4z M329.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,221,329.9,221.4,329.3,221.4z M338.9,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,221,339.4,221.4,338.9,221.4z M310.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,244.8,310.9,245.2,310.3,245.2z M319.8,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,244.8,320.4,245.2,319.8,245.2z M329.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,244.8,329.9,245.2,329.3,245.2z M338.9,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,244.8,339.4,245.2,338.9,245.2z M353.6,149.9V148c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7S361.2,149.9,353.6,149.9z"/>
<path class="st3" d="M353.6,165.1v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9c7.6,0,13.7,6.2,13.7,13.7
C367.3,158.9,361.2,165.1,353.6,165.1z M353.6,204.2v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7C367.3,198,361.2,204.2,353.6,204.2z"/>
<path class="st3" d="M353.6,219.4v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8V192c7.6,0,13.7,6.2,13.7,13.7
C367.3,213.2,361.2,219.4,353.6,219.4z"/>
<path class="st3" d="M353.6,238.5v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-2c7.6,0,13.7,6.2,13.7,13.7
C367.3,232.3,361.2,238.5,353.6,238.5z M235,231.9h3.8v14.3H235V231.9z"/>
<path class="st3" d="M190.3,193.8h2.9v6.7h-2.9V193.8z M202.7,193.8h2.9v6.7h-2.9V193.8z"/>
<path class="st3" d="M192.2,189.5c-0.2,0-0.3-0.1-0.4-0.2l-2.9-4.8c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2l2.9,4.8
c0.1,0.2,0.1,0.5-0.2,0.7H192.2z M197.4,188c-0.3,0-0.5-0.2-0.5-0.5V182c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5v5.5
C197.9,187.8,197.7,188,197.4,188z M202.6,189.4c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7l3-4.7c0.2-0.2,0.5-0.3,0.7-0.1
s0.3,0.5,0.1,0.7l-3,4.7C202.9,189.3,202.7,189.4,202.6,189.4z"/>
<path class="st3" d="M69.7,190.5l5.7-0.9c0.6,1.9,1.9,2.9,4.2,3c2.4-0.2,3.7-1.2,4-3.3c-0.1-2.2-1.5-3.3-4.2-3.4
c-1.7,0.1-3,0.5-4,1.1h-4.7l1-11.2h16.1v3.6H76.5l-0.6,4.6c1.5-0.8,3.2-1.1,5-1.1c5.3,0.1,8.2,2.2,8.4,6.3c-0.2,4.3-3.4,6.5-9.7,6.7
C74.4,195.6,71.1,193.9,69.7,190.5L69.7,190.5z M111.2,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C107.8,175.2,111.1,178.7,111.2,185.5z M105.1,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C104,192.5,105.2,190.2,105.1,185.6z M133.1,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C129.7,175.2,133,178.7,133.1,185.5z M127,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C125.9,192.5,127.1,190.2,127,185.6z"/>
</svg>
webpackJsonp([0],{"2X9c":function(M,L,j){M.exports=j.p+"static/img/error_500.ed0cba4.svg"},CkW6:function(M,L){M.exports="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg=="},EE2z:function(M,L,j){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var u=j("CkW6"),N=j.n(u),w=j("Minx"),D=j.n(w),C=j("2X9c"),s=j.n(C),y={name:"errpage",data:function(){return{imgSrc:"",message:"",srcList:{403:N.a,404:D.a,500:s.a},msgList:{403:"抱歉,你无权访问该页面",404:"抱歉,你访问的页面不存在",500:"抱歉,服务器出错了"}}},methods:{changeRoute:function(M){this.$router.push(M)}},mounted:function(){var M=this.$route.path.split("/")[1];this.imgSrc=this.srcList[M],this.message=this.msgList[M]}},t={render:function(){var M=this,L=M.$createElement,j=M._self._c||L;return j("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[j("div",{staticClass:"wscn-http404"},[j("div",{staticClass:"pic-404"},[j("img",{staticClass:"pic-404__parent",attrs:{src:M.imgSrc,alt:"404"}})]),M._v(" "),j("div",{staticClass:"bullshit"},[j("div",{staticClass:"bullshit__headline"},[M._v(M._s(M.message))]),M._v(" "),j("a",{staticClass:"bullshit__return-home",on:{click:function(L){M.changeRoute("/myTagLib")}}},[M._v("返回首页")])])])])},staticRenderFns:[]};var i=j("VU/8")(y,t,!1,function(M){j("ST04")},"data-v-1879ebda",null);L.default=i.exports},Minx:function(M,L,j){M.exports=j.p+"static/img/error_404.bf58747.svg"},ST04:function(M,L){}});
\ No newline at end of file
webpackJsonp([1],{"4Qea":function(e,t){},CwSZ:function(e,t,r){"use strict";var o=r("p8xL"),n=r("XgCd"),a={brackets:function(e){return e+"[]"},indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},i=Date.prototype.toISOString,s={delimiter:"&",encode:!0,encoder:o.encode,encodeValuesOnly:!1,serializeDate:function(e){return i.call(e)},skipNulls:!1,strictNullHandling:!1},c=function e(t,r,n,a,i,c,l,u,p,d,f,h){var g=t;if("function"==typeof l)g=l(r,g);else if(g instanceof Date)g=d(g);else if(null===g){if(a)return c&&!h?c(r,s.encoder):r;g=""}if("string"==typeof g||"number"==typeof g||"boolean"==typeof g||o.isBuffer(g))return c?[f(h?r:c(r,s.encoder))+"="+f(c(g,s.encoder))]:[f(r)+"="+f(String(g))];var y,m=[];if(void 0===g)return m;if(Array.isArray(l))y=l;else{var v=Object.keys(g);y=u?v.sort(u):v}for(var b=0;b<y.length;++b){var w=y[b];i&&null===g[w]||(m=Array.isArray(g)?m.concat(e(g[w],n(r,w),n,a,i,c,l,u,p,d,f,h)):m.concat(e(g[w],r+(p?"."+w:"["+w+"]"),n,a,i,c,l,u,p,d,f,h)))}return m};e.exports=function(e,t){var r=e,i=t?o.assign({},t):{};if(null!==i.encoder&&void 0!==i.encoder&&"function"!=typeof i.encoder)throw new TypeError("Encoder has to be a function.");var l=void 0===i.delimiter?s.delimiter:i.delimiter,u="boolean"==typeof i.strictNullHandling?i.strictNullHandling:s.strictNullHandling,p="boolean"==typeof i.skipNulls?i.skipNulls:s.skipNulls,d="boolean"==typeof i.encode?i.encode:s.encode,f="function"==typeof i.encoder?i.encoder:s.encoder,h="function"==typeof i.sort?i.sort:null,g=void 0!==i.allowDots&&i.allowDots,y="function"==typeof i.serializeDate?i.serializeDate:s.serializeDate,m="boolean"==typeof i.encodeValuesOnly?i.encodeValuesOnly:s.encodeValuesOnly;if(void 0===i.format)i.format=n.default;else if(!Object.prototype.hasOwnProperty.call(n.formatters,i.format))throw new TypeError("Unknown format option provided.");var v,b,w=n.formatters[i.format];"function"==typeof i.filter?r=(b=i.filter)("",r):Array.isArray(i.filter)&&(v=b=i.filter);var D,O=[];if("object"!=typeof r||null===r)return"";D=i.arrayFormat in a?i.arrayFormat:"indices"in i?i.indices?"indices":"repeat":"indices";var x=a[D];v||(v=Object.keys(r)),h&&v.sort(h);for(var j=0;j<v.length;++j){var C=v[j];p&&null===r[C]||(O=O.concat(c(r[C],C,x,u,p,d?f:null,b,h,g,y,w,m)))}var k=O.join(l),I=!0===i.addQueryPrefix?"?":"";return k.length>0?I+k:""}},DDCP:function(e,t,r){"use strict";var o=r("p8xL"),n=Object.prototype.hasOwnProperty,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,decoder:o.decode,delimiter:"&",depth:5,parameterLimit:1e3,plainObjects:!1,strictNullHandling:!1},i=function(e,t,r){if(e){var o=r.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,i=/(\[[^[\]]*])/.exec(o),s=i?o.slice(0,i.index):o,c=[];if(s){if(!r.plainObjects&&n.call(Object.prototype,s)&&!r.allowPrototypes)return;c.push(s)}for(var l=0;null!==(i=a.exec(o))&&l<r.depth;){if(l+=1,!r.plainObjects&&n.call(Object.prototype,i[1].slice(1,-1))&&!r.allowPrototypes)return;c.push(i[1])}return i&&c.push("["+o.slice(i.index)+"]"),function(e,t,r){for(var o=t,n=e.length-1;n>=0;--n){var a,i=e[n];if("[]"===i)a=(a=[]).concat(o);else{a=r.plainObjects?Object.create(null):{};var s="["===i.charAt(0)&&"]"===i.charAt(i.length-1)?i.slice(1,-1):i,c=parseInt(s,10);!isNaN(c)&&i!==s&&String(c)===s&&c>=0&&r.parseArrays&&c<=r.arrayLimit?(a=[])[c]=o:a[s]=o}o=a}return o}(c,t,r)}};e.exports=function(e,t){var r=t?o.assign({},t):{};if(null!==r.decoder&&void 0!==r.decoder&&"function"!=typeof r.decoder)throw new TypeError("Decoder has to be a function.");if(r.ignoreQueryPrefix=!0===r.ignoreQueryPrefix,r.delimiter="string"==typeof r.delimiter||o.isRegExp(r.delimiter)?r.delimiter:a.delimiter,r.depth="number"==typeof r.depth?r.depth:a.depth,r.arrayLimit="number"==typeof r.arrayLimit?r.arrayLimit:a.arrayLimit,r.parseArrays=!1!==r.parseArrays,r.decoder="function"==typeof r.decoder?r.decoder:a.decoder,r.allowDots="boolean"==typeof r.allowDots?r.allowDots:a.allowDots,r.plainObjects="boolean"==typeof r.plainObjects?r.plainObjects:a.plainObjects,r.allowPrototypes="boolean"==typeof r.allowPrototypes?r.allowPrototypes:a.allowPrototypes,r.parameterLimit="number"==typeof r.parameterLimit?r.parameterLimit:a.parameterLimit,r.strictNullHandling="boolean"==typeof r.strictNullHandling?r.strictNullHandling:a.strictNullHandling,""===e||null===e||void 0===e)return r.plainObjects?Object.create(null):{};for(var s="string"==typeof e?function(e,t){for(var r={},o=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,i=t.parameterLimit===1/0?void 0:t.parameterLimit,s=o.split(t.delimiter,i),c=0;c<s.length;++c){var l,u,p=s[c],d=p.indexOf("]="),f=-1===d?p.indexOf("="):d+1;-1===f?(l=t.decoder(p,a.decoder),u=t.strictNullHandling?null:""):(l=t.decoder(p.slice(0,f),a.decoder),u=t.decoder(p.slice(f+1),a.decoder)),n.call(r,l)?r[l]=[].concat(r[l]).concat(u):r[l]=u}return r}(e,r):e,c=r.plainObjects?Object.create(null):{},l=Object.keys(s),u=0;u<l.length;++u){var p=l[u],d=i(p,s[p],r);c=o.merge(c,d,r)}return o.compact(c)}},XgCd:function(e,t,r){"use strict";var o=String.prototype.replace,n=/%20/g;e.exports={default:"RFC3986",formatters:{RFC1738:function(e){return o.call(e,n,"+")},RFC3986:function(e){return e}},RFC1738:"RFC1738",RFC3986:"RFC3986"}},YPWR:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=r("mvHQ"),n=r.n(o),a=r("//Fk"),i=r.n(a),s=r("lRwf"),c=r.n(s),l=(r("mw3O"),r("l6IN"));c.a.axios.defaults.timeout=19e3;var u=window.location.origin;-1!=u.indexOf("localhost")&&(u="http://www.gicdev.com"),c.a.axios.interceptors.request.use(function(e){return e},function(e){return l.Message.error({message:"请求超时!"}),i.a.resolve(e)}),c.a.axios.interceptors.response.use(function(e){return e.status&&200==e.status&&"401"==e.data.errorCode?(l.Message.error({message:e.data.message}),void(window.location.href=u+"/gic-web/#/")):e},function(e){return 504==e.response.status||404==e.response.status?l.Message.error({message:"服务异常⊙﹏⊙∥"}):(e.response.status,window.location.href=u+"/gic-web/#/"),i.a.resolve(e)});var p=function(e,t){return t.requestProject="gic-web",c.a.axios({method:"get",url:""+u+e,data:{},params:t,headers:{"content-type":"application/x-www-form-urlencoded"}})},d=function(e){var t=window.location.origin;if(t.indexOf("localhost")&&(t="http://gicdev.demogic.com"),0!=e.errorCode){if(401==e.errorCode)return window.location.href=t+"/gic-web/#/",!1;l.Message.error({duration:1e3,message:e.message})}},f={name:"store-tree-select",props:{brandId:{type:String,default:function(){return""}},activeGroupId:{type:String,default:function(){return""}}},data:function(){return{projectName:"",storeVisible:!1,storeGroupIds:[],storeData:[],defaultProps:{children:"children",label:"storeGroupName"}}},methods:{loadData:function(e,t,r){e.hasOwnProperty("storeId")||e.hasOwnProperty("loaded")||(e.loaded=!0,this.getStoreData(e))},checkStore:function(e){this.storeGroupIds=this.$refs.storeTree.getCheckedNodes(),this.$emit("checkStoreGroupIds",this.$refs.storeTree.getCheckedNodes())},treeData:function(e){return e.filter(function(t){var r=e.filter(function(e){return t.groupId==e.parentId});return r.length>0&&(t.children=r),0==t.groupId})},getStoreData:function(e){var t=this,r={storeGroupId:e.storeGroupId,recursionStr:!0,hasPage:!1};p("/api-admin/store-list",r).then(function(t){var r=t.data;0!=r.errorCode?d(r):r.result&&r.result.list.length&&r.result.list.forEach(function(t){t.storeGroupName=t.storeName,t.storeGroupIds=t.storeId,e.children.push(t)})}).catch(function(e){t.$message.error({duration:1e3,message:e.message})})},getStoreGroup:function(){var e=this;p("/api-admin/store-group-list",{}).then(function(t){var r=t.data;0!=r.errorCode?d(r):r.result&&r.result.length&&(e.storeData=r.result)}).catch(function(t){e.$message.error({duration:1e3,message:t.message})})}},mounted:function(){this.getStoreGroup()}},h={render:function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("el-popover",{staticStyle:{"min-width":"232px"},attrs:{placement:"bottom"},model:{value:e.storeVisible,callback:function(t){e.storeVisible=t},expression:"storeVisible"}},[r("div",{staticClass:"select-tree-wrap"},[r("el-tree",{ref:"storeTree",attrs:{data:e.storeData,"node-key":"groupId","show-checkbox":"",props:e.defaultProps},on:{"node-click":e.loadData,"node-expand":e.loadData,check:e.checkStore}})],1),e._v(" "),r("div",{staticClass:"flex-column item-cell-select inline-block m-l-10",attrs:{slot:"reference"},slot:"reference"},[r("div",{staticClass:"depart-item-wrap"},[r("div",{staticClass:"el-select el-select--large depart-item-content",staticStyle:{width:"350px"}},[e.storeGroupIds.length?e._e():r("span",{staticClass:"font-14 color-c0c4cc p-l-10",staticStyle:{display:"inline-block","line-height":"32px",color:"#c0c4cc"}},[e._v("请选择门店分组")]),e._v(" "),r("div",{staticClass:"el-select__tags",staticStyle:{"max-width":"181px"}},[r("span",[e._l(e.storeGroupIds,function(t,o){return[r("span",{key:o,staticClass:"el-tag el-tag--info el-tag--small"},[r("span",{staticClass:"el-select__tags-text"},[e._v(e._s(t.storeGroupName||t.storeName))])])]})],2)])])])])])},staticRenderFns:[]};var g={name:"index",components:{storeTreeSelect:r("VU/8")(f,h,!1,function(e){r("nxIB")},"data-v-5fee0fb6",null).exports},data:function(){var e=this;return{projectName:"haoban-manage-web",contentHeight:"0px",choiceDate:[],choiceDateCopy:[],pickerOptions:{onPick:function(t){var r=t.maxDate,o=t.minDate;e.choiceDateCopy=[o.getTime()],r&&(e.choiceDateCopy=[])},disabledDate:function(t){if(e.choiceDateCopy.length){var r=e.choiceDateCopy[0]-2592e6,o=e.choiceDateCopy[0]+2592e6;return t.getTime()<r||t.getTime()>o||t.getTime()>Date.now()-864e4}return t.getTime()>Date.now()-864e4}},storeGroupIds:[]}},methods:{exportData:function(){return this.choiceDate.length?this.storeGroupIds.length?void this.postExportData():(this.$message.error({duration:1e3,message:"请选择门店分组"}),!1):(this.$message.error({duration:1e3,message:"请选择日期区间"}),!1)},postExportData:function(){var e=[],t=[];this.storeGroupIds.forEach(function(r){r.hasOwnProperty("storeId")?e.push(r.storeId):t.push(r.storeGroupId)});var r="startDate="+this.choiceDate[0]+"&endDate="+this.choiceDate[1]+"&storeIds="+e.join(",")+"&groupIds="+t.join(",");window.open(window.location.origin+"/haoban-app-sign-web/sign/export-sign-list?"+r)},changeDate:function(e){e?this.choiceDateCopy=JSON.parse(n()(this.choiceDate)):(this.choiceDateCopy=[],this.choiceDate=[])},checkStoreGroupIds:function(e){this.storeGroupIds=e}}},y={render:function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"sign-contain"},[r("div",{staticClass:"sign-content border-box"},[r("div",[r("el-date-picker",{attrs:{"picker-options":e.pickerOptions,editable:!1,"value-format":"yyyy-MM-dd",type:"daterange",align:"right","unlink-panels":"","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期"},on:{change:e.changeDate},model:{value:e.choiceDate,callback:function(t){e.choiceDate=t},expression:"choiceDate"}})],1),e._v(" "),r("div",{staticClass:"m-t-20"},[r("store-tree-select",{on:{checkStoreGroupIds:e.checkStoreGroupIds}})],1),e._v(" "),r("div",{staticClass:"m-t-20"},[r("el-button",{attrs:{type:"primary"},on:{click:e.exportData}},[e._v("导 出")])],1)])])},staticRenderFns:[]};var m=r("VU/8")(g,y,!1,function(e){r("4Qea")},"data-v-5b0f8b35",null);t.default=m.exports},mvHQ:function(e,t,r){e.exports={default:r("qkKv"),__esModule:!0}},mw3O:function(e,t,r){"use strict";var o=r("CwSZ"),n=r("DDCP"),a=r("XgCd");e.exports={formats:a,parse:n,stringify:o}},nxIB:function(e,t){},p8xL:function(e,t,r){"use strict";var o=Object.prototype.hasOwnProperty,n=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}();t.arrayToObject=function(e,t){for(var r=t&&t.plainObjects?Object.create(null):{},o=0;o<e.length;++o)void 0!==e[o]&&(r[o]=e[o]);return r},t.merge=function(e,r,n){if(!r)return e;if("object"!=typeof r){if(Array.isArray(e))e.push(r);else{if("object"!=typeof e)return[e,r];(n.plainObjects||n.allowPrototypes||!o.call(Object.prototype,r))&&(e[r]=!0)}return e}if("object"!=typeof e)return[e].concat(r);var a=e;return Array.isArray(e)&&!Array.isArray(r)&&(a=t.arrayToObject(e,n)),Array.isArray(e)&&Array.isArray(r)?(r.forEach(function(r,a){o.call(e,a)?e[a]&&"object"==typeof e[a]?e[a]=t.merge(e[a],r,n):e.push(r):e[a]=r}),e):Object.keys(r).reduce(function(e,a){var i=r[a];return o.call(e,a)?e[a]=t.merge(e[a],i,n):e[a]=i,e},a)},t.assign=function(e,t){return Object.keys(t).reduce(function(e,r){return e[r]=t[r],e},e)},t.decode=function(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(t){return e}},t.encode=function(e){if(0===e.length)return e;for(var t="string"==typeof e?e:String(e),r="",o=0;o<t.length;++o){var a=t.charCodeAt(o);45===a||46===a||95===a||126===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122?r+=t.charAt(o):a<128?r+=n[a]:a<2048?r+=n[192|a>>6]+n[128|63&a]:a<55296||a>=57344?r+=n[224|a>>12]+n[128|a>>6&63]+n[128|63&a]:(o+=1,a=65536+((1023&a)<<10|1023&t.charCodeAt(o)),r+=n[240|a>>18]+n[128|a>>12&63]+n[128|a>>6&63]+n[128|63&a])}return r},t.compact=function(e){for(var t=[{obj:{o:e},prop:"o"}],r=[],o=0;o<t.length;++o)for(var n=t[o],a=n.obj[n.prop],i=Object.keys(a),s=0;s<i.length;++s){var c=i[s],l=a[c];"object"==typeof l&&null!==l&&-1===r.indexOf(l)&&(t.push({obj:a,prop:c}),r.push(l))}return function(e){for(var t;e.length;){var r=e.pop();if(t=r.obj[r.prop],Array.isArray(t)){for(var o=[],n=0;n<t.length;++n)void 0!==t[n]&&o.push(t[n]);r.obj[r.prop]=o}}return t}(t)},t.isRegExp=function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},t.isBuffer=function(e){return null!==e&&void 0!==e&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))}},qkKv:function(e,t,r){var o=r("FeBl"),n=o.JSON||(o.JSON={stringify:JSON.stringify});e.exports=function(e){return n.stringify.apply(n,arguments)}}});
\ No newline at end of file
webpackJsonp([2],{"/HCr":function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=s("2X9c"),i=s.n(a),n={name:"page500",data:function(){return{img_500:i.a}},methods:{changeRoute:function(t){this.$router.push(t)}},computed:{message:function(){return"抱歉,服务器出错了"}}},c={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[s("div",{staticClass:"wscn-http404"},[s("div",{staticClass:"pic-404"},[s("img",{staticClass:"pic-404__parent",attrs:{src:t.img_500,alt:"500"}})]),t._v(" "),s("div",{staticClass:"bullshit"},[s("div",{staticClass:"bullshit__headline"},[t._v(t._s(t.message))]),t._v(" "),s("a",{staticClass:"bullshit__return-home",on:{click:function(e){t.changeRoute("/myTagLib")}}},[t._v("返回首页")])])])])},staticRenderFns:[]};var r=s("VU/8")(n,c,!1,function(t){s("ixa6")},"data-v-609edd63",null);e.default=r.exports},"2X9c":function(t,e,s){t.exports=s.p+"static/img/error_500.ed0cba4.svg"},ixa6:function(t,e){}});
\ No newline at end of file
webpackJsonp([3],{Minx:function(t,e,s){t.exports=s.p+"static/img/error_404.bf58747.svg"},PRsh:function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=s("Minx"),n=s.n(i),a={name:"page404",data:function(){return{img_404:n.a}},methods:{changeRoute:function(t){this.$router.push(t)}},computed:{message:function(){return"抱歉,你访问的页面不存在"}},mounted:function(){}},c={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[s("div",{staticClass:"wscn-http404"},[s("div",{staticClass:"pic-404"},[s("img",{staticClass:"pic-404__parent",attrs:{src:t.img_404,alt:"404"}})]),t._v(" "),s("div",{staticClass:"bullshit"},[s("div",{staticClass:"bullshit__headline"},[t._v(t._s(t.message))]),t._v(" "),s("a",{staticClass:"bullshit__return-home",on:{click:function(e){t.changeRoute("/myTagLib")}}},[t._v("返回首页")])])])])},staticRenderFns:[]};var r=s("VU/8")(a,c,!1,function(t){s("YVvD")},"data-v-2aaf35c0",null);e.default=r.exports},YVvD:function(t,e){}});
\ No newline at end of file
webpackJsonp([4],{"4KSJ":function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=a("MOmO"),s=a.n(i),r={name:"page401",data:function(){return{errGif:s.a+"?"+ +new Date,ewizardClap:"https://wpimg.wallstcn.com/007ef517-bafd-4066-aae4-6883632d9646",dialogVisible:!1}},methods:{back:function(){this.$route.query.noGoBack?this.$router.push({path:"/myTagLib"}):this.$router.go(-1)}}},n={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"errPage-container"},[a("el-button",{staticClass:"pan-back-btn",attrs:{icon:"arrow-left"},on:{click:t.back}},[t._v("返回")]),t._v(" "),a("el-row",[a("el-col",{attrs:{span:12}},[a("h1",{staticClass:"text-jumbo text-ginormous"},[t._v("你没有权限去该页面!")]),t._v(" "),a("h2"),t._v(" "),a("h6"),t._v(" "),a("ul",{staticClass:"list-unstyled"})]),t._v(" "),a("el-col",{attrs:{span:12}},[a("img",{attrs:{src:t.errGif,width:"313",height:"428",alt:"Girl has dropped her ice cream."}})])],1),t._v(" "),a("el-dialog",{attrs:{title:"随便看",visible:t.dialogVisible},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("img",{staticClass:"pan-img",attrs:{src:t.ewizardClap}})])],1)},staticRenderFns:[]};var l=a("VU/8")(r,n,!1,function(t){a("VhVP")},"data-v-11312fe4",null);e.default=l.exports},MOmO:function(t,e,a){t.exports=a.p+"static/img/401.089007e.gif"},VhVP:function(t,e){}});
\ No newline at end of file
webpackJsonp([5],{CkW6:function(M,L){M.exports="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg=="},PTPp:function(M,L){},"aM+6":function(M,L,j){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var u=j("CkW6"),N=j.n(u),w={name:"page403",data:function(){return{img_403:N.a}},methods:{changeRoute:function(M){this.$router.push(M)}},computed:{message:function(){return"抱歉,你无权访问该页面"}}},D={render:function(){var M=this,L=M.$createElement,j=M._self._c||L;return j("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[j("div",{staticClass:"wscn-http404"},[j("div",{staticClass:"pic-404"},[j("img",{staticClass:"pic-404__parent",attrs:{src:M.img_403,alt:"403"}})]),M._v(" "),j("div",{staticClass:"bullshit"},[j("div",{staticClass:"bullshit__headline"},[M._v(M._s(M.message))]),M._v(" "),j("a",{staticClass:"bullshit__return-home",on:{click:function(L){M.changeRoute("/myTagLib")}}},[M._v("返回首页")])])])])},staticRenderFns:[]};var C=j("VU/8")(w,D,!1,function(M){j("PTPp")},"data-v-0101b5a4",null);L.default=C.exports}});
\ No newline at end of file
webpackJsonp([7],{0:function(e,n,t){t("j1ja"),e.exports=t("NHnr")},"4qCZ":function(e,n){},"5tgt":function(e,n,t){e.exports=function(e,n){return function(r){t("Vna/")("./"+e+"/"+n+".vue").then(function(e){r(e)})}}},NHnr:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=t("//Fk"),o=t.n(r),i=t("hKoQ"),u=t.n(i),a={render:function(){var e=this.$createElement,n=this._self._c||e;return n("div",{attrs:{id:"app"}},[n("transition",{attrs:{name:"fade",mode:"out-in"}},[n("router-view")],1)],1)},staticRenderFns:[]};var c=t("VU/8")({name:"App",data:function(){return{}}},a,!1,function(e){t("a/Gl")},null,null).exports,s=t("pRNm"),p=t.n(s),f=t("5tgt"),d=t.n(f),l=function(e){t.e(0).then(t.bind(null,"EE2z")).then(function(n){e(n)})},m=[{path:"/",name:"好办签到",redirect:"/signExport",component:d()("index","index")},{path:"/signExport",name:"好办签到",component:d()("index","index")},{path:"/403",name:"无权访问",component:l},{path:"/404",name:"error404",component:l},{path:"/500",name:"error500",component:l},{path:"*",redirect:"/404",hidden:!0}],h=new p.a({routes:m,scrollBehavior:function(){return{y:0}}}),x=t("l6IN"),v=t("Rf8U"),g=t.n(v),w=t("mtWM"),V=t.n(w);t("Xcu2"),t("4qCZ");u.a.polyfill(),Vue.config.productionTip=!1,Vue.use(g.a,V.a),Vue.axios.defaults.withCredentials=!0,Vue.axios.interceptors.request.use(function(e){return e},function(e){return o.a.reject(e)}),Vue.axios.interceptors.response.use(function(e){return 200==e.status&&e.data.errorCode,e},function(e){if(e.response)switch(e.response.status){case 401:window.location.href=window.location.origin+"/gic-web/#/";case 500:x.Message.error("服务器500")}return o.a.reject(e.response.data)}),new Vue({el:"#app",router:h,components:{App:c},template:"<App/>"})},"Vna/":function(e,n,t){var r={"./errorPage/401.vue":["4KSJ",4],"./errorPage/403.vue":["aM+6",5],"./errorPage/404.vue":["PRsh",3],"./errorPage/500.vue":["/HCr",2],"./errorPage/index.vue":["EE2z",0],"./index/index.vue":["YPWR",1]};function o(e){var n=r[e];return n?t.e(n[1]).then(function(){return t(n[0])}):Promise.reject(new Error("Cannot find module '"+e+"'."))}o.keys=function(){return Object.keys(r)},o.id="Vna/",e.exports=o},Xcu2:function(e,n){},"a/Gl":function(e,n){},l6IN:function(e,n){e.exports=Element},lRwf:function(e,n){e.exports=Vue},pRNm:function(e,n){e.exports=VueRouter}},[0]);
\ No newline at end of file
export const baseList = [
{
type: 'one',
name: '图片广告',
template: '1',
isSpace: 'Y',
imgList: [
{
imgUrl: '',
imglink: '',
crowd: ''
}
],
linkUrl: ''
},
{
type: 'two',
name: '魔方',
template: '1',
isSpace: 'Y',
imgList: [
{
imgUrl: '',
imglink: '',
crowd: ''
}
],
crowd: {
type: 'Y',
condition: ''
},
linkUrl: ''
},
{
type: 'three',
name: '文本',
content: '',
textcolor: '#333',
bgcolor: '#fff',
showPosition: '',
isSpace: 'Y',
crowd: {
type: 'Y',
condition: ''
}
},
{
type: 'four',
name: '横栏',
template: 'one',
tip: 'true',
textcolor: '#333',
bgcolor: '#fff',
imgList: [
{
label: '',
imgUrl: '',
linkUrl: '',
crowd: {
type: 'Y',
condition: ''
}
}
]
},
{
type: 'five',
name: '辅助线',
color: '#333',
margin: '10px',
style: 'solid'
},
{
type: 'six',
name: '辅助空白',
height: '10'
}
];
export const mainList = [
{
name:"进入积分", id: 1
},
{
name:"数据icon", id: 2
},
{
name:"卡券兑换", id: 3
},
{
name:"礼品兑换", id: 4
},
{
name:"订单分组", id: 5
}
];
export const mallList = [
{
name:"商品", id: 1
},
{
name:"商品分组", id: 2
},
{
name:"商品搜索", id: 3
}
];
export const saleList = [
{
name:"优惠券", id: 1
},
{
name:"拼团", id: 2
},
{
name:"周期购", id: 3
},
{
name:"限时折扣", id: 4
},
{
name:"秒杀", id: 5
},
{
name:"预售", id: 6
}
];
import { Message } from 'element-ui'
export function checkFalse(message) {
if(message) {
Message.warning(message);
return false
}else{
Message.warning('操作失败');
}
return false;
}
export function checkSuccess(message) {
if(message) {
Message.success(message);
}else{
Message.success('操作成功');
}
}
export function checkStatus(err) {
if(err == 'cancel') {
Message.info(err || 'cancel');
return false;
}else if(err.hasOwnProperty('response')){
if(err.response.status == 401) {
Message.error('登录过期');
return false;
}else if(err.response.status == 500){
Message.error('服务器错误500');
return false;
}
}else {
Message.error(err);
return false;
}
}
/*设置cookie*/
export function setCookie(c_name,value,expire) {
var date=new Date();
date.setSeconds(date.getSeconds()+expire);
document.cookie = c_name + "="+ encodeURI(value)+"; expires="+date.toGMTString();
}
/*获取cookie*/
export function getCookie(c_name){
if(document.cookie.length>0){
var name = encodeURI(c_name);
var allcookies = document.cookie;
name += "=";
var pos = allcookies.indexOf(name);
if(pos != -1){
var start = pos + name.length;
var end = allcookies.indexOf(";",start);
if(end == -1){
end = allcookies.length;
}
var value = allcookies.substring(start,end);
return decodeURI(value);
} else{
return "";
}
}
}
/*删除cookie*/
export function delCookie(c_name){
setCookie(c_name, "", -1);
}
(function () {
function CanvasAnimate(Dom,options){
options = options || {};
this.Element = Dom;
this.cvs = Dom.getContext("2d");
this.off_cvs = document.createElement("canvas");
this.off_cvs.width = Dom.width;
this.off_cvs.height = Dom.height;
this.Dom = this.off_cvs.getContext("2d");
this.width = Dom.width;
this.height = Dom.height;
this.length = options.length || 100;
this.RoundColor = options.RoundColor || "#999";
this.RoundDiameter = options.RoundDiameter || 2;
this.LineColor = options.LineColor || "#ccc";
this.LineWeight = options.LineWeight || 1;
this.clicked = options.clicked || false;
this.moveon = options.moveon || false;
this.list = [];
this.paused = true
}
CanvasAnimate.prototype.Run = function(){
if( this.clicked ){
this.Element.addEventListener( "click",this.Clicked.bind(this) )
}
if( this.moveon ){
this.Element.addEventListener( "mousemove",this.moveXY.bind(this) );
this.Element.addEventListener( "mouseout",this.moveoutXY.bind(this) )
}
this.Draw( this.getLength() )
};
CanvasAnimate.prototype.getLength=function(){
let arr = [];
for(let i=0;i< this.length ;i++){
let obj = {};
obj.x = parseInt( Math.random() * this.width );
obj.y = parseInt( Math.random() * this.height );
obj.r = parseInt( Math.random()*2 );
obj.controlX = parseInt( Math.random()*10 ) > 5 ? "left":"right";
obj.controlY = parseInt( Math.random()*10 ) > 5 ? "bottom":"top";
arr.push(obj)
}
return arr
};
CanvasAnimate.prototype.Draw = function(list){
let new_arr = [];
let line_arr = [];
list.map((item,index)=>{
let xy = this.ControlXY(item);
let obj = this.ControlRound(xy);
new_arr.push( obj )
});
new_arr.map((item1,index1)=>{
new_arr.map((item2,index2)=>{
if(item1 !== item2){
let x = item1.x - item2.x;
let y = item1.y - item2.y;
if( Math.abs(x)< 100 && Math.abs(y)<100 ){
let obj = {
x1:item1.x,
y1:item1.y,
x2:item2.x,
y2:item2.y,
};
line_arr.push(obj)
}
}
})
});
this.drawLine(line_arr);
new_arr.map((item)=>{
this.drawRound(item)
});
this.list = new_arr;
this.cvs.drawImage(this.off_cvs,0,0,this.width,this.height);
setTimeout(()=>{
if(this.paused){
this.next()
}
},60)
};
CanvasAnimate.prototype.next = function(){
this.cvs.clearRect( 0,0,this.width,this.height );
this.Dom.clearRect( 0,0,this.width,this.height );
this.Draw( this.list )
};
CanvasAnimate.prototype.drawRound = function(obj){
let {x,y,r} = obj;
this.Dom.beginPath();
this.Dom.arc( x,y,r, 0, 2*Math.PI );
this.Dom.fillStyle = this.RoundColor;
this.Dom.fill();
this.Dom.closePath()
};
CanvasAnimate.prototype.drawLine = function(list){
list.map( (item)=>{
this.Dom.beginPath();
this.Dom.moveTo( item.x1,item.y1 );
this.Dom.lineTo( item.x2,item.y2 );
this.Dom.lineWidth = this.LineWeight;
this.Dom.strokeStyle = this.LineColor;
this.Dom.stroke();
this.Dom.closePath();
})
};
CanvasAnimate.prototype.ControlXY = function(obj){
if(obj.x >= (this.width - obj.r) ){
obj.controlX = 'left'
}else if( obj.x <= parseInt(obj.r/2) ){
obj.controlX = "right"
}
if( obj.y >= (this.height - obj.r) ){
obj.controlY = "bottom"
}else if( obj.y <= parseInt(obj.r/2) ){
obj.controlY = "top"
}
return obj
}
CanvasAnimate.prototype.ControlRound = function(obj){
switch(obj.controlX){
case "right":
obj.x++;
break;
case "left":
obj.x--;
break;
}
switch(obj.controlY){
case "top":
obj.y++;
break;
case "bottom":
obj.y--;
break;
}
return obj
};
CanvasAnimate.prototype.Clicked = function(event){
let obj = {};
obj.x = event.clientX;
obj.y = event.clientY;
obj.r = parseInt( Math.random()*10 );
obj.controlX = parseInt( Math.random()*10 ) > 5 ? 'left' :'right';
obj.controlY = parseInt( Math.random()*10 ) > 5 ? 'bottom' :'top';
this.list.push(obj)
};
CanvasAnimate.prototype.moveXY = function(event){
let obj = {};
obj.x = event.clientX;
obj.y = event.clientY;
obj.r = 0;
obj.move = true;
if( this.list[0]["move"] ){
this.list[0]["x"] = obj.x;
this.list[0]["y"] = obj.y;
this.list[0]["r"] = 1
}else{
this.list.unshift(obj)
}
};
CanvasAnimate.prototype.moveoutXY = function(event){
this.list.shift()
};
CanvasAnimate.prototype.pause = function(){
this.paused = !this.paused;
if( this.paused){
this.Draw(this.list)
}
};
window.LoginAnimate = CanvasAnimate;
})();
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,a){for(var i,u,f,s=0,d=[];s<r.length;s++)u=r[s],t[u]&&d.push(t[u][0]),t[u]=0;for(i in c)Object.prototype.hasOwnProperty.call(c,i)&&(e[i]=c[i]);for(n&&n(r,c,a);d.length;)d.shift()();if(a)for(s=0;s<a.length;s++)f=o(o.s=a[s]);return f};var r={},t={8:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var c=document.getElementsByTagName("head")[0],a=document.createElement("script");a.type="text/javascript",a.charset="utf-8",a.async=!0,a.timeout=12e4,o.nc&&a.setAttribute("nonce",o.nc),a.src=o.p+"static/js/"+e+"."+{0:"8d7157a2c6b002665d6b",1:"8ee983527b1e7b25f3f6",2:"9b606d1755f571164128",3:"5cfebacac84484523343",4:"ec744dafa07ce1b65ba7",5:"219ca1de56cd21c51dd2"}[e]+".js";var i=setTimeout(u,12e4);function u(){a.onerror=a.onload=null,clearTimeout(i);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return a.onerror=a.onload=u,c.appendChild(a),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
File added
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="./favicon.ico"/>
<title>GIC-会员标签</title>
</head>
<body style="background-color: #f0f2f5;min-width: 1400px;">
<div id="app"></div>
<!-- built files will be auto injected -->
<!-- 公共库引用 cdn -->
<script src="//web-1251519181.file.myqcloud.com/lib/vue/2.6.6/vue.min.js"></script>
<script src="//web-1251519181.file.myqcloud.com/lib/vue-router/3.0.2/vue-router.min.js"></script>
<script src="//web-1251519181.file.myqcloud.com/lib/vuex/3.1.0/vuex.min.js"></script>
<script src="//web-1251519181.file.myqcloud.com/lib/elementUI/index.2.5.4.js"></script>
<!-- 公共组件引用 cdn -->
<script src="//web-1251519181.file.myqcloud.com/components/header.2.0.07.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/footer.2.0.02.js"></script>
</body>
</html>
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "haoban-old",
"version": "1.0.1",
"description": "A Vue.js project",
"author": "fairyly",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js",
"format": "onchange 'test/**/*.js' 'src/**/*.js' 'src/**/*.vue' -- prettier --write {{changed}}",
"formater": "onchange \"test/**/*.js\" \"src/**/*.js\" \"src/**/*.vue\" -- prettier --write {{changed}}",
"version": "conventional-changelog -p angular -i changelog.md -s -r 0 && git add changelog.md"
},
"dependencies": {
"@riophae/vue-treeselect": "0.0.29",
"@tinymce/tinymce-vue": "^1.0.8",
"element-ui": "^2.3.9",
"file-saver": "^1.3.8",
"tinymce": "^4.8.3",
"vue-clipboard2": "^0.2.0",
"xlsx": "^0.13.5"
},
"devDependencies": {
"@antv/data-set": "^0.8.9",
"@antv/g2": "^3.1.0",
"autoprefixer": "^7.1.2",
"axios": "^0.18.0",
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"es6-promise": "^4.2.6",
"eslint": "^4.15.0",
"eslint-config-prettier": "^4.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.2.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"node-notifier": "^5.1.2",
"node-sass": "^4.9.0",
"onchange": "^5.2.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.0",
"sass-loader": "^7.0.1",
"script-loader": "^0.7.2",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-axios": "^2.1.1",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"vuedraggable": "^2.16.0",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
<template>
<div id="app">
<transition name="fade" mode="out-in">
<router-view></router-view>
</transition>
</div>
</template>
<script>
export default {
name: 'App',
data() {
return {};
}
};
</script>
<style></style>
import Vue from 'vue';
// import axios from 'axios';
import qs from 'qs';
import { Message } from 'element-ui';
Vue.axios.defaults.timeout = 19000;
let local = window.location.origin;
if (local.indexOf('localhost') != -1) {
local = 'http://www.gicdev.com';
}
Vue.axios.interceptors.request.use(
config => {
return config;
},
err => {
Message.error({ message: '请求超时!' });
return Promise.resolve(err);
}
);
Vue.axios.interceptors.response.use(
data => {
if (data.status && data.status == 200 && data.data.errorCode == '401') {
Message.error({ message: data.data.message });
window.location.href = local + '/gic-web/#/';
return;
}
return data;
},
err => {
// Message.error({message: err.response.message});
if (err.response.status == 504 || err.response.status == 404) {
// window.location.href= local + "/gic-web/#/"
Message.error({ message: '服务异常⊙﹏⊙∥' });
} else if (err.response.status == 403) {
window.location.href = local + '/gic-web/#/';
// Message.error({message: '权限不足,请联系管理员!'});
} else {
window.location.href = local + '/gic-web/#/';
// Message.error({message: '未知错误!'});
}
return Promise.resolve(err);
}
);
// let base = local + '/gicweb/cloudweb/';
// const timeout = 15000;
// let token = ''; //sessionStorage.getItem('user');
/*
*
* 统一 get 请求方法
* @url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const getRequest = (url, params) => {
params.requestProject = 'gic-web';
return Vue.axios({
method: 'get',
url: `${local}${url}`,
data: {},
params: params,
headers: { 'content-type': 'application/x-www-form-urlencoded' } // "token": token
});
};
/*
*
* 统一 post 请求方法
* url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const postRequest = (url, params) => {
params.requestProject = 'gic-web';
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: qs.stringify(params),
headers: { 'content-type': 'application/x-www-form-urlencoded' } //multipart/form-data{"token": token}
});
};
export const postJsonRequest = (url, params) => {
params.requestProject = 'gic-web';
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: '{}',
params: params,
headers: { 'Content-Type': 'application/json;charset=UTF-8' } //multipart/form-data{"token": token}
});
};
/*
* method: 'post'
* 'Content-Type': 'application/json;charset=UTF-8'
* @data: params
* @requestProject: 'gic-web'
*
*/
export const postJson = (url, params) => {
// params.requestProject = "gic-web";
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: params,
params: { requestProject: 'gic-web' },
headers: { 'Content-Type': 'application/json;charset=UTF-8' } //multipart/form-data{"token": token}
});
};
/*
* method: 'post'
* data: params
*
*/
export const postForm = (url, params) => {
params.requestProject = 'gic-web';
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: params,
headers: {} //'content-type': 'application/x-www-form-urlencoded'multipart/form-data{"token": token}
});
};
import * as api from './api';
export default api;
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st5" d="M274.5,241.3c-5.3-5.3-4.4,4.4-6.7,6.7c-3.1,3.1-6.3,6-9.7,8.6H125.2c-3.4-2.7-6.6-5.6-9.7-8.7
c-28.4-28.5-38.6-70.5-26.6-109l-10.5-10.6c-5.3-5.3-5.3-13.8,0-19.2c5.2-5.3,13.7-5.3,19-0.1c0,0,0,0,0.1,0.1l6.6,6.8
c3.1,3.2,8.2,3.2,11.4,0l0,0c3.2-3.2,3.2-8.3,0-11.5L103.1,92c-3.2-3.2-3.2-8.3,0-11.5c3.1-3.2,8.2-3.2,11.4,0l0,0l17.2,17.2
c-0.9,3.7,0.9,7.6,4.4,9.3c3.5,1.7,7.7,0.6,9.9-2.5c2.3-3.1,2.1-7.4-0.5-10.3c-3.3-3.8-6.5-7.2-6.5-7.2l-7.3-7.4
c34.8-21.3,82.6-21.7,117.2,0c34.5,21.7,53.9,61.2,50,101.9l15.4,15.6c3.2,3.2,3.2,8.3,0,11.5c-3.1,3.2-8.2,3.2-11.4,0l0,0
l-15.1-15.3c-3.1-3.2-8.2-3.2-11.4,0l0,0c-3.2,3.2-3.2,8.3,0,11.5l17.1,17.2c5.2,5.3,5.2,13.8,0,19.1
C288.4,246.6,279.9,246.6,274.5,241.3C274.6,241.3,274.6,241.3,274.5,241.3L274.5,241.3z"/>
<path class="st3" d="M86.6,71.4c0,4.7,3.8,8.5,8.5,8.5c1.5,0,3-0.4,4.3-1.1c4.1-2.3,5.5-7.5,3.1-11.6c-1.5-2.6-4.3-4.3-7.4-4.3
C90.4,62.9,86.6,66.7,86.6,71.4"/>
<path class="st3" d="M216.4,145.4h24.3l-7.4,17.9c2.6,1.8,4.5,3.8,5.8,6c1.2,2.2,1.9,4.8,1.9,7.8c0,4.6-1.6,8.4-4.8,11.2
c-3.2,2.9-7.3,4.3-12.3,4.3c-2.5,0-5.1-0.4-7.5-1.1v-13.1c2,0.9,3.9,1.4,5.5,1.4s2.9-0.5,3.7-1.4c0.9-1,1.3-2.3,1.3-4.1
c0-1.9-0.8-3.4-2.4-4.6c-1.6-1.2-3.7-1.7-6.4-1.7l3.4-9.1h-5.1V145.4L216.4,145.4z M207.5,181.6c0,1.5-0.3,3-0.8,4.3
s-1.3,2.5-2.3,3.5s-2.2,1.8-3.4,2.3c-1.3,0.6-2.8,0.9-4.3,0.9h-9.6c-1.5,0-2.9-0.3-4.3-0.9c-1.3-0.6-2.5-1.3-3.4-2.3
c-0.4-0.4-0.8-0.9-1.2-1.4l11.7-17.3v6c0,0.6,0.2,1.1,0.6,1.4c0.4,0.4,0.8,0.6,1.4,0.6c1.1,0,2-0.8,2-1.9v-0.1v-11.9l10.9-16.1
c1.8,2,2.8,4.6,2.7,7.3L207.5,181.6L207.5,181.6L207.5,181.6z M177.1,185.9c-0.6-1.4-0.9-2.8-0.8-4.3V156c0-1.5,0.3-3,0.8-4.3
s1.3-2.5,2.3-3.5s2.2-1.8,3.4-2.3c1.3-0.6,2.8-0.9,4.3-0.9h9.6c1.5,0,2.9,0.3,4.3,0.9c1.3,0.5,2.4,1.3,3.4,2.3l-10.5,15.4v-2.7
c0-0.5-0.2-1.1-0.6-1.4c-0.4-0.4-0.9-0.6-1.4-0.6c-1.1,0-2,0.8-2,1.9v0.1v8.6l-12.1,17.9C177.5,186.9,177.3,186.4,177.1,185.9
L177.1,185.9z M243.8,192.7c3.5-7.4,5.3-15.5,5.3-23.7c0-30.5-24.4-55.2-54.6-55.2s-54.6,24.7-54.6,55.2c0,0.4,0,0.8,0,1.1
l19.6-24.6h11.4L154,171.3h5.5v-6.5l11.7-18.5v46.8h-11.7v-9.8h-17.8c5.1,19.2,20.1,34.3,39.2,39.2c-1.2,3.1-4.8,10.7-10.7,12
c-7.3,1.7,19.9,0.4,39.4-12.5c14.9-4.4,27.2-15,33.9-28.9L243.8,192.7L243.8,192.7z"/>
<path class="st4" d="M238.9,154.3l-24.4,35.4l0.5,0.3l24.4-35.4L238.9,154.3z"/>
<path class="st3" d="M266.2,66.6h8c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.4-0.1,0.7-0.4,1c-0.2,0.3-0.6,0.4-0.9,0.4h-8
c-0.4,0-0.7-0.1-0.9-0.4c-0.5-0.5-0.5-1.4,0-1.9C265.5,66.7,265.8,66.6,266.2,66.6 M116.5,201.9c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
s8-3.6,8-8.1S120.9,201.9,116.5,201.9L116.5,201.9z M121.4,212.1c-0.8,2-2.8,3.3-4.9,3.3c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.1,3.3-5
c2-0.8,4.3-0.4,5.8,1.2C121.8,207.7,122.2,210,121.4,212.1L121.4,212.1z M191.3,78.7c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
c2.1,0,4.2-0.9,5.7-2.4s2.3-3.6,2.3-5.7C199.3,82.4,195.7,78.7,191.3,78.7z M196.3,88.9c-0.8,2-2.8,3.3-4.9,3.3
c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2C196.6,84.6,197.1,86.9,196.3,88.9L196.3,88.9z M270.2,162.6
c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1s8-3.6,8-8.1C278.2,166.3,274.6,162.6,270.2,162.6z M275.1,172.8c-0.8,2-2.8,3.3-4.9,3.3
c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2S275.9,170.8,275.1,172.8z M230.1,31.4c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
c2.1,0,4.2-0.9,5.7-2.4s2.3-3.6,2.3-5.7C238.1,35,234.5,31.4,230.1,31.4z M235,41.6c-0.8,2-2.8,3.3-4.9,3.3c-3,0-5.3-2.4-5.3-5.4
c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2C235.4,37.2,235.8,39.5,235,41.6z"/>
<path class="st3" d="M163.2,45.9h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C162.4,46.1,162.8,45.9,163.2,45.9 M271.7,63.5v8c0,0.4-0.1,0.7-0.4,0.9
c-0.3,0.3-0.6,0.4-1,0.4c-0.7,0-1.4-0.6-1.4-1.3l0,0v-8c0-0.4,0.1-0.7,0.4-0.9c0.5-0.5,1.4-0.5,1.9,0
C271.6,62.8,271.7,63.2,271.7,63.5"/>
<path class="st3" d="M107.4,154.8h8.2c0.4,0,0.7,0.1,1,0.4c0.3,0.2,0.4,0.6,0.4,0.9c0,0.7-0.6,1.3-1.4,1.3h-8.2
c-0.5,0-0.9-0.3-1.2-0.7c-0.2-0.4-0.2-0.9,0-1.3C106.4,155.1,106.9,154.8,107.4,154.8 M169,42.7v8c0,0.4-0.1,0.7-0.4,0.9
c-0.5,0.5-1.4,0.5-2,0c-0.2-0.2-0.4-0.6-0.4-0.9v-8c0-0.4,0.1-0.7,0.4-0.9c0.5-0.5,1.4-0.5,1.9,0C168.8,42,169,42.3,169,42.7"/>
<path class="st3" d="M230.9,110.3h8.1c0.7,0,1.3,0.6,1.3,1.4c0,0.7-0.6,1.3-1.3,1.4h-8.1c-0.8,0-1.4-0.6-1.4-1.4
c0-0.4,0.1-0.7,0.4-1C230.2,110.4,230.6,110.3,230.9,110.3"/>
<path class="st3" d="M114.6,163.8v8.2c0,0.4-0.1,0.7-0.4,1c-0.5,0.5-1.4,0.5-1.9,0c-0.3-0.3-0.4-0.6-0.4-1v-8.2c0-0.4,0.1-0.7,0.4-1
c0.5-0.5,1.4-0.5,1.9,0l0,0C114.4,163.1,114.6,163.4,114.6,163.8"/>
<path class="st1" d="M126,272.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4H126c-0.7,0-1.3-0.6-1.3-1.3
C124.7,273.3,125.3,272.7,126,272.7"/>
<path class="st1" d="M218.6,272.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C217.9,272.9,218.2,272.7,218.6,272.7"/>
<path class="st1" d="M158.2,282.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H158.2
c-0.7,0-1.3-0.6-1.3-1.3l0,0C156.9,282.8,157.5,282.2,158.2,282.2"/>
<path class="st1" d="M93.8,282.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H93.8c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C93.1,282.3,93.5,282.2,93.8,282.2"/>
<path class="st1" d="M197.1,272.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C197,272.7,197.1,272.7,197.1,272.7"/>
<path class="st1" d="M284.4,264.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0-1.3-0.6-1.3-1.3
C283,265.3,283.6,264.6,284.4,264.6"/>
<path class="st1" d="M99.2,264.6h171.7c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5c-0.2,0.5-0.7,0.8-1.2,0.8H99.1
c-0.7,0-1.3-0.6-1.3-1.3C97.8,265.3,98.4,264.6,99.2,264.6"/>
<path class="st3" d="M235,95.8v8.1c0,0.7-0.6,1.3-1.3,1.3s-1.3-0.6-1.3-1.3v-8.1c0-0.7,0.6-1.3,1.3-1.4C234.4,94.4,235,95,235,95.8"
/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st0" d="M80.9,159.3c0,50.2,40.7,90.9,90.9,90.9s90.9-40.7,90.9-90.9l0,0c0-50.2-40.7-90.9-90.9-90.9
C121.6,68.3,80.9,109,80.9,159.3C80.9,159.2,80.9,159.3,80.9,159.3z"/>
<path class="st1" d="M96.3,264.2c-0.9,0-2,0-2.8-0.1l0.3-2.7c1.6,0.1,3.3,0.1,5.1,0l0.1,2.7C98,264.1,97.1,264.2,96.3,264.2z
M104.3,263.4l-0.4-2.7c1.6-0.3,3.3-0.7,5.1-1.1l0.7,2.5C107.9,262.8,106,263.2,104.3,263.4z M87.8,263c-1.9-0.5-3.6-1.3-5.2-2.3
l1.3-2.3c1.3,0.8,2.9,1.5,4.5,2L87.8,263L87.8,263z M114.8,260.6l-0.8-2.5c1.6-0.5,3.3-1.2,4.9-1.9l0.9,2.5
C118.2,259.6,116.6,260.1,114.8,260.6z M78.2,257.1c-1.2-1.3-2.3-2.9-3.2-4.7l2.4-1.2c0.8,1.5,1.7,2.9,2.8,4.1L78.2,257.1z
M125,256.7l-1.1-2.4c1.6-0.7,3.2-1.5,4.8-2.3l1.2,2.4C128.2,255.3,126.5,255.9,125,256.7z M134.6,251.9l-1.2-2.4
c1.5-0.8,3.1-1.7,4.7-2.5l1.3,2.3C137.7,250.2,136.1,251.1,134.6,251.9z M72.9,247.3c-0.5-1.7-0.9-3.5-1.2-5.5l2.7-0.4
c0.3,1.7,0.7,3.5,1.1,5.1L72.9,247.3L72.9,247.3z M144,246.6l-1.3-2.3c1.5-0.9,2.9-1.9,4.5-2.8l1.5,2.3
C146.9,244.6,145.5,245.6,144,246.6z M153,240.7l-1.5-2.3c1.5-0.9,2.9-2,4.4-3.1l1.6,2.1C155.9,238.7,154.4,239.6,153,240.7z
M71.3,236.4v-1.2c0-1.3,0-2.8,0.1-4.3l2.7,0.1c-0.1,1.3-0.1,2.8-0.1,4.1v1.1L71.3,236.4z M161.8,234.4l-1.6-2.1
c1.5-1.1,2.8-2.1,4.3-3.2l1.6,2.1C164.6,232.3,163.1,233.3,161.8,234.4z M170.2,227.9l-1.6-2.1c1.3-1.1,2.8-2.3,4.1-3.3l1.7,2
C173,225.6,171.7,226.8,170.2,227.9z M74.7,225.9l-2.7-0.4c0.3-1.7,0.5-3.5,0.9-5.3l2.7,0.5C75.3,222.5,75,224.3,74.7,225.9
L74.7,225.9z M178.5,221l-1.7-2c1.3-1.2,2.7-2.3,4-3.5l1.7,2C181.3,218.8,179.8,219.8,178.5,221z M76.9,215.6l-2.5-0.7l1.6-5.2
l2.5,0.8C77.9,212.2,77.4,214,76.9,215.6z M186.6,214l-1.7-2c1.3-1.2,2.7-2.4,3.9-3.6l1.9,2C189.2,211.6,188,212.8,186.6,214z
M194.4,206.6l-1.9-1.9c1.3-1.2,2.5-2.4,3.9-3.7l1.9,1.9C197.1,204.2,195.7,205.4,194.4,206.6z M80.2,205.5l-2.5-0.9
c0.7-1.6,1.3-3.3,2-4.9l2.5,1.1L80.2,205.5z M202.2,199.1l-1.9-1.9c1.2-1.2,2.5-2.5,3.7-3.9l1.9,1.9
C204.6,196.6,203.4,197.8,202.2,199.1z M84.5,195.6l-2.5-0.7c0.1-0.3,0.1-0.7,0.1-1.2c0-0.9-0.1-2-0.4-3.6l2.7-0.4
c0.3,1.7,0.4,3.1,0.4,4C84.6,194.4,84.6,195.1,84.5,195.6z M209.5,191.4l-2-1.9c1.2-1.3,2.4-2.5,3.6-3.9l2,1.7
C212,188.8,210.7,190,209.5,191.4z M80.8,184.9v-0.4c-0.3-1.5-0.5-3.2-0.9-4.9l2.7-0.4c0.3,1.7,0.7,3.3,0.9,4.9v0.4L80.8,184.9z
M215.5,184.8l-2-1.7c1.2-1.3,2.4-2.7,3.5-4l2,1.7C217.9,182.1,216.7,183.5,215.5,184.8z M222.6,176.8l-2-1.7c1.2-1.3,2.3-2.7,3.5-4
l2,1.7C225,174,223.8,175.5,222.6,176.8z M78.9,174.4c-0.3-1.9-0.5-3.6-0.7-5.3l2.7-0.3c0.1,1.7,0.4,3.5,0.7,5.2L78.9,174.4z
M229.6,168.5l-2.1-1.7c1.1-1.3,2.3-2.8,3.3-4.1l2.1,1.6C231.8,165.7,230.6,167.2,229.6,168.5z M77.7,163.6
c-0.1-1.9-0.1-3.6-0.1-5.5h2.7c0,1.7,0,3.5,0.1,5.2L77.7,163.6z M236.3,160.1l-2.1-1.6c1.1-1.5,2.1-2.8,3.2-4.3l2.1,1.6
C238.4,157.3,237.3,158.6,236.3,160.1z M80.4,152.9l-2.7-0.1c0.1-1.9,0.3-3.6,0.5-5.5l2.7,0.3C80.6,149.4,80.5,151.1,80.4,152.9z
M242.5,151.5l-2.1-1.6c1.1-1.5,2.1-2.9,3.1-4.3l2.1,1.5C244.7,148.6,243.6,150,242.5,151.5z M248.8,142.7l-2.3-1.5
c1.1-1.5,2-2.9,2.9-4.4l2.3,1.5C250.8,139.8,249.8,141.2,248.8,142.7z M81.7,142.4l-2.7-0.5c0.4-1.7,0.8-3.6,1.2-5.3l2.5,0.7
C82.4,139.1,82,140.7,81.7,142.4z M254.7,133.7l-2.3-1.5c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.3C256.6,130.7,255.6,132.1,254.7,133.7z
M84.5,132.4l-2.5-0.9c0.7-1.7,1.3-3.3,2.1-5.1l2.4,1.1C85.7,129.2,85,130.8,84.5,132.4z M260.2,124.5l-2.3-1.3
c0.9-1.6,1.7-3.1,2.7-4.7l2.3,1.3C262.1,121.4,261.1,122.9,260.2,124.5z M88.9,122.9l-2.3-1.3l0.9-1.6c0.5-0.9,1.1-2,1.7-2.9
l2.3,1.3c-0.5,1.1-1.2,2-1.7,2.9L88.9,122.9z M265.4,115.2L263,114c0.8-1.6,1.6-3.2,2.4-4.7l2.4,1.2
C267.1,111.9,266.3,113.5,265.4,115.2z M94.3,113.7l-2.3-1.3c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.5L94.3,113.7z M270.2,105.5l-2.4-1.1
c0.8-1.6,1.5-3.2,2.1-4.8l2.4,1.1C271.8,102.2,271,103.8,270.2,105.5z M100,104.9l-2.1-1.6l3.2-4.4l2.1,1.6
C102.1,101.9,101.1,103.3,100,104.9z M106.6,96.4l-2-1.7l3.6-4l1.9,1.9C108.8,93.8,107.6,95.1,106.6,96.4z M274.5,95.6l-2.5-0.9
c0.7-1.6,1.3-3.3,1.9-4.9l2.5,0.9C275.8,92.2,275.2,93.9,274.5,95.6z M113.9,88.9l-1.7-2c1.3-1.2,2.8-2.4,4.1-3.5l1.6,2.1
C116.6,86.7,115.1,87.7,113.9,88.9z M278.1,85.5l-2.5-0.8c0.5-1.7,1.1-3.5,1.5-5.1l2.5,0.7C279.2,81.9,278.8,83.6,278.1,85.5z
M122.1,82.4l-1.5-2.3c1.5-1.1,3.1-2,4.5-2.9l1.3,2.3C125,80.5,123.5,81.5,122.1,82.4z M131.2,77.2l-1.2-2.4
c1.6-0.8,3.3-1.5,4.9-2.3L136,75C134.4,75.7,132.8,76.4,131.2,77.2z M280.9,74.9l-2.7-0.5c0.4-1.7,0.7-3.5,0.8-5.2l2.7,0.4
C281.6,71.3,281.3,73.2,280.9,74.9z M140.9,73.2l-0.8-2.5l5.2-1.6l0.7,2.5C144.3,72.1,142.7,72.6,140.9,73.2z M151.1,70.4l-0.5-2.7
c1.7-0.4,3.6-0.8,5.3-1.1l0.4,2.7C154.6,69.7,152.8,70,151.1,70.4z M187.8,69.2c-1.5-0.1-3.2-0.4-5.2-0.5l0.3-2.7
c2.1,0.1,3.9,0.4,5.3,0.7L187.8,69.2z M194,68.9l-1.6-2.1c1.5-1.1,2.9-2.1,4.3-3.2l1.6,2.1C196.9,66.7,195.5,67.8,194,68.9z
M161.5,68.6l-0.3-2.7c1.7-0.3,3.6-0.4,5.3-0.4l0.1,2.7L161.5,68.6z M177.3,68.1c-1.6-0.1-3.2-0.1-4.8-0.1H172v-2.7h0.5
c1.6,0,3.2,0,4.9,0.1L177.3,68.1z M282.2,64.1l-2.7-0.1v-1.7c0-1.2,0-2.4-0.1-3.5l2.7-0.3c0.1,1.2,0.1,2.4,0.1,3.6V64.1z
M202.7,62.6l-1.5-2.3c1.5-1.1,2.9-2,4.4-2.9l1.5,2.3C205.6,60.6,204.2,61.7,202.7,62.6L202.7,62.6z M211.6,56.9l-1.5-2.3
c1.6-0.9,3.1-1.9,4.7-2.8l1.3,2.3C214.6,55,213.1,55.9,211.6,56.9z M278.6,53.8c-0.4-1.7-1.1-3.3-1.7-4.7l2.4-1.2
c0.8,1.6,1.5,3.3,2,5.3L278.6,53.8L278.6,53.8z M220.7,51.5l-1.3-2.4c1.6-0.9,3.2-1.7,4.8-2.5l1.2,2.4
C223.9,49.8,222.3,50.7,220.7,51.5z M230.2,46.7l-1.1-2.4c1.7-0.8,3.3-1.5,4.9-2.1l0.9,2.5C233.6,45.4,231.8,46,230.2,46.7z
M274.1,45l-0.9-0.9c-0.9-0.8-1.9-1.5-2.9-2.1l1.3-2.3c1.2,0.7,2.4,1.5,3.3,2.4c0.4,0.4,0.8,0.7,1.1,1.1L274.1,45L274.1,45z
M240,42.8l-0.8-2.5c1.7-0.7,3.5-1.2,5.2-1.6l0.7,2.5C243.5,41.7,241.7,42.3,240,42.8z M265.5,40.1c-1.6-0.4-3.2-0.7-5.1-0.8
l0.1-2.7c2,0.1,3.9,0.4,5.5,0.8L265.5,40.1L265.5,40.1z M250.2,40.1l-0.5-2.7c1.9-0.4,3.7-0.5,5.5-0.8l0.3,2.7
C253.8,39.5,252,39.7,250.2,40.1L250.2,40.1z"/>
<path class="st2" d="M92.1,178.4c5.6,5.9,32.8-11.2,60.8-38.2s46.2-53.7,40.6-59.6c0,0,0,0-0.1-0.1c-5.6-5.8-32.9,11.3-60.9,38.4
C104.6,145.9,86.5,172.6,92.1,178.4L92.1,178.4z"/>
<path class="st0" d="M122.1,117.3l5.7-5.7l25.5,25.5l-5.7,5.7L122.1,117.3z M163.8,147.2h148.4c3.7,0,6.7,2.9,6.7,6.7v61.5
c0,3.7-2.9,6.7-6.7,6.7H163.8c-3.7,0-6.7-2.9-6.7-6.7v-61.5C157.1,150.2,160,147.2,163.8,147.2z"/>
<path class="st3" d="M325.8,134.1v-5.6h2v5.6h5.6v2h-5.6v5.7h-2v-5.6h-5.6v-2L325.8,134.1L325.8,134.1z M86.6,202.5l-1.3-2.9
c-0.4-0.9-0.8-1.7-1.3-2.9l-0.8-3.3c-4-10.6-6.3-21.9-6.3-34c0-23.9,9-45.9,23.8-62.3L85.3,80.8c-1.6-1.7-1.6-4.5,0.1-6.2
c1.7-1.7,4.4-1.7,6.2-0.1l16.3,15.4c16.6-15,38.5-24.1,62.7-24.1c17.8,0,34.5,4.9,48.7,13.6c10.7,7.2,13.4,8.7,21,17.6
c5.7,6.7,6,6.4,10.7,14.2c0.8,0.1,7.5,11.8,7.5,15.6c2.4,6.3,4,13,4.9,19.7h48.4c2.7,0,5.1,1.1,7,2.9c1.9,1.9,2.9,4.4,2.9,7v57.8
c0,2.7-1.1,5.1-2.9,7c-1.9,1.9-4.4,2.9-7,2.9h-73.4c-17.1,17.8-41.2,28.9-67.8,28.9c-10.8,0-21.7-1.9-31.8-5.5
c-17.8-7.9-17.1-7.2-26.1-14.2s-10-9.4-22.7-25.9C88.6,205.3,87.7,204.5,86.6,202.5z M91.7,202.6c10.2,18.5,26.7,33,46.7,40.6
c8.6-5.3,23.7-16.8,25.5-19.3c-2.7,0-5.1-1.1-7-2.9s-2.9-4.4-2.9-7v-46.8c-9.6,6.3-20.6,10.8-31.7,13.5c-13.9,3.3-26.7,3.1-30.4-0.5
c-6.3-6.3,9.1-30.2,34.2-56.4l-23-24.2c-14,15.9-22.7,36.8-22.7,59.6c0,10.8,1.9,21.5,5.7,31.6l2,5.5
C88.8,197.4,89.3,198.9,91.7,202.6L91.7,202.6z M110.6,92.3l24.3,22.9l0.1-0.1c27-26.2,51.5-42,57.9-35.6c3.6,3.6,3.7,16.4,0.3,30.5
c-3.2,13-8.8,25.5-16.8,36.4h64.4c5.1-7,9.6-13.6,13.6-20.1c-13.1-33.4-45.7-57-83.7-57C147.5,69.4,126.5,78,110.6,92.3z M137.8,118
l17,16c11-11.4,20.5-22.7,26.7-32.2c6.6-9.9,9.1-16.8,7.5-18.5c-1.6-1.6-8.6,0.9-18.5,7.5C161,97.2,149.5,106.7,137.8,118z
M152.3,136.7L89,77c-0.3-0.3-0.8-0.3-1.1,0s-0.3,0.8,0,1.1l59.6,63.1C149.2,139.8,150.7,138.1,152.3,136.7z M144.9,143.8L129,127
c-10.6,11.1-19.7,21.9-25.7,31.2c-6.6,9.9-9.1,16.8-7.5,18.5c1.6,1.6,8.6-0.9,18.5-7.5C123.3,163,134.1,154.2,144.9,143.8
L144.9,143.8z M192,90.1c-4,11.5-18.7,30.8-38.6,50.7c-20.1,20.1-39.3,34.8-50.9,38.6c5.1,0.1,11.9-0.5,19-2.3
c16.3-3.9,32-11.9,44-23.9c12-11.9,20.2-27.7,24.2-44.1C191.3,102,192,95.2,192,90.1z M157.6,164.8v49.3c0,1.6,0.7,3.2,1.7,4.4
c1.2,1.2,2.7,1.7,4.4,1.7h147.9c3.3,0,6.2-2.8,6.2-6.2v-57.9c0-3.3-2.8-6.2-6.2-6.2H173.3c-0.1,0.3-0.4,0.4-0.5,0.7l3.1,2.8
c3.1,2.9,3.2,7.9,0.1,11c-2.9,3.1-7.9,3.2-11,0.1l-3.1-3.2C160.6,162.6,159.1,163.7,157.6,164.8z M170.3,153.5
c-1.7,2-3.7,3.7-5.6,5.6l2.8,2.9c1.7,1.7,4.3,1.7,5.9,0.1c0.8-0.8,1.2-1.9,1.2-2.9s-0.5-2.1-1.3-2.9
C173.3,156.3,170.3,153.5,170.3,153.5z M233,224h-68.7c-9.8,8-17,13.4-26.1,19.3c9.1,3.3,22.9,6,32.4,6
C194.8,249.1,216.9,239.5,233,224z M259.6,146.3c-0.8-5.3-3.7-15-5.3-20.1c-4.3,7.1-9.1,14.4-13.9,20.1H259.6z M196.5,206.7v-9
h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.2v9h-5.3V206.7z M243.6,207.4c-5.1,0-9-2-11.8-6
s-4.1-9.5-4.1-16.3s1.5-12.2,4.3-16.3c2.8-4,6.7-6.2,11.8-6.2s9,2,11.8,6s4.1,9.5,4.1,16.3s-1.3,12.3-4.1,16.3
C252.6,205.4,248.7,207.4,243.6,207.4z M243.6,202.7c3.3,0,6-1.6,7.8-4.8c1.9-3.2,2.7-7.5,2.7-13c0-5.3-0.9-9.6-2.7-12.8
c-1.9-3.2-4.4-4.8-7.8-4.8c-3.3,0-5.9,1.6-7.8,4.8c-1.9,3.2-2.8,7.5-2.8,12.8s0.9,9.8,2.7,13C237.6,201.1,240.1,202.7,243.6,202.7z
M301.6,206.7v-9h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.3v9h-5.2V206.7z M180.1,192.8
l16.4,0.1v-25.1h-0.1c-4.1,5.9-7.5,10.7-10,14.6C184,186.3,181.8,189.8,180.1,192.8L180.1,192.8z M285.2,192.8l16.4,0.1v-25.1h-0.1
c-4.1,5.9-7.5,10.7-10,14.6C288.9,186.3,286.9,189.8,285.2,192.8L285.2,192.8z M51.5,100.4l4-4l1.3,1.3l-4,4l4,4l-1.3,1.3l-4-4l-4,4
l-1.3-1.3l4-4l-4-4l1.3-1.3L51.5,100.4z M344.6,167.6V158h3.3v9.6h9.6v3.3h-9.6v9.6h-3.3v-9.6H335v-3.3H344.6z"/>
<path class="st4" d="M52.1,248.9c2.5,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7c-2.5,0-4.7,2.1-4.7,4.7S49.6,248.9,52.1,248.9z"/>
<path class="st3" d="M52.1,250.2c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S55.5,250.2,52.1,250.2z M52.1,240.8c-1.9,0-3.3,1.5-3.3,3.3
s1.5,3.3,3.3,3.3c1.9,0,3.3-1.5,3.3-3.3S54,240.8,52.1,240.8z"/>
<path class="st3" d="M276.6,70.1l5.2-6.4l2.8,7.9l6.4,5.2l-7.9,2.8l-5.2,6.4l-2.8-7.9l-6.4-5.2L276.6,70.1z"/>
<path class="st3" d="M277.4,88.7l-3.5-9.8l-8-6.6l9.8-3.5l6.6-8l3.5,9.8l8,6.6l-9.8,3.5L277.4,88.7z M271.4,73.3l4.9,4l2.1,6l4-4.9
l6-2.1l-4.9-4l-2.1-6l-4,4.9L271.4,73.3z"/>
<path class="st3" d="M109.7,274.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4h-60.4c-0.7,0-1.3-0.6-1.3-1.3
C108.3,275.3,108.9,274.7,109.7,274.7"/>
<path class="st3" d="M202.3,274.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C201.6,274.9,201.9,274.7,202.3,274.7"/>
<path class="st3" d="M141.9,284.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H141.9
c-0.7,0-1.3-0.6-1.3-1.3l0,0C140.5,284.8,141.1,284.2,141.9,284.2"/>
<path class="st3" d="M77.5,284.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H77.5c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C76.8,284.3,77.1,284.2,77.5,284.2"/>
<path class="st3" d="M180.8,274.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C180.6,274.7,180.7,274.7,180.8,274.7"/>
<path class="st3" d="M268,266.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3H268c-0.7,0-1.3-0.6-1.3-1.3
C266.7,267.3,267.3,266.6,268,266.6"/>
<path class="st3" d="M82.8,266.6h171.8c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5s-0.7,0.8-1.2,0.8H82.8c-0.7,0-1.3-0.6-1.3-1.3
C81.5,267.3,82.1,266.6,82.8,266.6"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st3" d="M37.7,141.1c-2.4,0-4.4-1.9-4.4-4.4c0-2.4,1.9-4.4,4.4-4.4c2.4,0,4.4,1.9,4.4,4.4
C42,139.2,40.1,141.1,37.7,141.1z"/>
<path class="st3" d="M264.6,80.4c-2.1,0-3.8-1.7-3.8-3.8s1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C268.4,78.7,266.7,80.4,264.6,80.4z
M264.6,74.4c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1C266.7,75.4,265.8,74.4,264.6,74.4z"/>
<path class="st3" d="M98.8,136.7c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S101.4,136.7,98.8,136.7z M98.8,129.4
c-1.5,0-2.6,1.2-2.6,2.6s1.2,2.6,2.6,2.6c1.5,0,2.6-1.2,2.6-2.6S100.2,129.4,98.8,129.4z"/>
<path class="st3" d="M144.3,113.8h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C143.6,113.9,143.9,113.8,144.3,113.8"/>
<path class="st3" d="M148.4,89.1v5.7c0,0.3-0.1,0.5-0.3,0.7c-0.4,0.4-0.9,0.4-1.3,0l0,0c-0.2-0.2-0.3-0.4-0.3-0.7v-5.7
c0-0.2,0.1-0.5,0.3-0.7c0.4-0.4,0.9-0.4,1.3,0l0,0C148.3,88.6,148.4,88.8,148.4,89.1"/>
<g>
<path class="st3" d="M193.5,123.6l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3c-0.4-0.1-0.7-0.4-0.8-0.8C193.1,124.3,193.2,123.9,193.5,123.6"/>
<path class="st3" d="M195.3,118.6l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C194.7,118.2,195,118.4,195.3,118.6"/>
</g>
<g>
<path class="st3" d="M355,85.8l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3s-0.7-0.4-0.8-0.8S354.7,86.1,355,85.8"/>
<path class="st3" d="M356.8,80.8l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C356.2,80.4,356.5,80.5,356.8,80.8"/>
</g>
<path class="st1" d="M87.8,267.9h99.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4H87.8c-1.2,0-2.2-0.6-2.2-1.3
C85.6,268.5,86.6,267.9,87.8,267.9"/>
<path class="st1" d="M240.5,267.9H298c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-57.5c-1.2,0-2.2-0.6-2.2-1.3c0-0.4,0.2-0.7,0.7-1
C239.3,268,239.9,267.9,240.5,267.9"/>
<path class="st1" d="M140.9,277.3h216.8c1.2,0,2.2,0.6,2.2,1.3c0,0.4-0.2,0.7-0.7,1c-0.4,0.3-1,0.4-1.6,0.4H140.9
c-1.2,0-2.2-0.6-2.2-1.3l0,0C138.7,277.9,139.7,277.3,140.9,277.3"/>
<path class="st1" d="M34.7,277.3h57.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4l0,0H34.7c-1.2,0-2.2-0.6-2.2-1.3
c0-0.4,0.2-0.7,0.7-1C33.6,277.5,34.1,277.3,34.7,277.3"/>
<path class="st1" d="M205.1,267.9h13.3c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0.1-2.3-0.5-2.4-1.3s0.8-1.4,2.1-1.4
C204.8,267.9,205,267.9,205.1,267.9"/>
<path class="st1" d="M348.8,259.8h13.3c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0-2.2-0.6-2.2-1.3
C346.6,260.4,347.6,259.8,348.8,259.8"/>
<path class="st1" d="M43.6,259.8h283.1c0.6,0,1.1,0.1,1.6,0.4c0.6,0.4,0.8,1,0.5,1.5s-1.1,0.8-2,0.8H43.6c-1.2,0-2.2-0.6-2.2-1.3
S42.4,259.8,43.6,259.8"/>
<path class="st3" d="M180.3,240h-41.9c-0.6,0-1-0.4-1-1v-11.9c0-0.6,0.4-1,1-1s1,0.4,1,1v11h40v-41c0-0.6,0.4-1,1-1h10.5
c0.6,0,1,0.4,1,1s-0.4,1-1,1h-9.5v41C181.2,239.6,180.9,240,180.3,240L180.3,240z M237.5,240h-22c-0.6,0-1-0.4-1-1v-41H205
c-0.6,0-1-0.4-1-1s0.4-1,1-1h10.5c0.6,0,1,0.4,1,1v41h21c0.6,0,1,0.4,1,1S238,240,237.5,240z M105.9,231l2.7,18.2H95.7l2.7-18.2
H105.9 M107.5,229.1H96.7l-3.2,22h17.2L107.5,229.1z"/>
<path class="st6" d="M157.7,231.2H46.1c-5.1,0-9.2-4.1-9.2-9.2v-10.5h129.9v10.8C166.8,227.2,162.7,231.2,157.7,231.2L157.7,231.2z"
/>
<path class="st2" d="M167.4,210.9h-125v-47c0-3.6,3-6.7,6.7-6.7H163c2.5,0,4.6,2,4.6,4.6L167.4,210.9L167.4,210.9z"/>
<path class="st3" d="M158.8,154.2c3.9,0,7,3.1,7,7v61.9c0,3.9-3.1,7-7,7H45.4c-3.9,0-7-3.1-7-7v-61.9c0-3.9,3.1-7,7-7L158.8,154.2
M158.8,152.3H45.4c-5,0-9,4-9,9v61.9c0,5,4,9,9,9h113.4c5,0,9-4,9-9v-61.9C167.7,156.3,163.7,152.3,158.8,152.3z M116.2,251.8H88.1
c-0.6,0-1-0.4-1-1s0.4-1,1-1h28.1c0.6,0,1,0.4,1,1C117.1,251.4,116.7,251.8,116.2,251.8L116.2,251.8z"/>
<path class="st3" d="M37.6,210.6h129.1v1.9H37.6V210.6z"/>
<path class="st3" d="M101.7,222.9c1.4,0.9,3.3,0.6,4.2-0.8c0.9-1.4,0.6-3.3-0.8-4.2l0,0c-1.4-0.9-3.3-0.6-4.2,0.8
C99.9,220.1,100.3,222,101.7,222.9L101.7,222.9z"/>
<path class="st3" d="M102.1,223.7c-1.8,0-3.3-1.5-3.3-3.3s1.5-3.3,3.3-3.3s3.3,1.5,3.3,3.3S103.9,223.7,102.1,223.7z M102.1,218.1
c-1.3,0-2.4,1-2.4,2.4s1,2.4,2.4,2.4c1.3,0,2.4-1,2.4-2.4S103.4,218.1,102.1,218.1z M348.1,252.4H244.9c-3.5,0-6.5-2.9-6.5-6.5V114
c0-3.5,2.9-6.5,6.5-6.5h103.3c3.5,0,6.5,2.9,6.5,6.5v131.9C354.6,249.5,351.7,252.4,348.1,252.4L348.1,252.4z M244.9,109.5
c-2.5,0-4.6,2-4.6,4.6V246c0,2.5,2,4.6,4.6,4.6h103.3c2.5,0,4.6-2,4.6-4.6V114c0-2.5-2-4.6-4.6-4.6L244.9,109.5z"/>
<path class="st3" d="M238.9,131.9h114.3v1.9H238.9V131.9z M238.9,155.7h114.3v1.9H238.9V155.7z M238.9,179.5h114.3v1.9H238.9V179.5z
M239.8,202.4h114.3v1.9H239.8V202.4z M238.9,227.1h114.3v1.9H238.9V227.1z"/>
<g>
<path class="st3" d="M255,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,119.4,255,120.5
L255,120.5z"/>
<path class="st3" d="M264.6,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,118.6,264.6,119.4,264.6,120.5L264.6,120.5z"/>
<path class="st3" d="M274.1,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,118.6,274.1,119.4,274.1,120.5L274.1,120.5z"/>
<path class="st3" d="M255,145.2c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,144.2,255,145.2
L255,145.2z"/>
<path class="st3" d="M264.6,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,143.3,264.6,144.2,264.6,145.2L264.6,145.2z"/>
<path class="st3" d="M274.1,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,143.3,274.1,144.2,274.1,145.2L274.1,145.2z"/>
<path class="st3" d="M255,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,168,255,169L255,169z"/>
<path class="st3" d="M264.6,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,167.1,264.6,168,264.6,169L264.6,169z"/>
<path class="st3" d="M274.1,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,167.1,274.1,168,274.1,169L274.1,169z"/>
<path class="st3" d="M255,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,190.8,255,191.9
L255,191.9z"/>
<path class="st3" d="M264.6,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,190.8,264.6,191.9
L264.6,191.9z"/>
<path class="st3" d="M274.1,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,190.8,274.1,191.9
L274.1,191.9z"/>
<path class="st3" d="M255,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,214.6,255,215.7
L255,215.7z"/>
<path class="st3" d="M264.6,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,213.8,264.6,214.6,264.6,215.7L264.6,215.7z"/>
<path class="st3" d="M274.1,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,213.8,274.1,214.6,274.1,215.7L274.1,215.7z"/>
<path class="st3" d="M255,239.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,238.5,255,239.5
L255,239.5z"/>
<path class="st3" d="M264.6,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,238.5,264.6,239.5
L264.6,239.5z"/>
<path class="st3" d="M274.1,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,238.5,274.1,239.5
L274.1,239.5z"/>
</g>
<path class="st3" d="M310.3,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C311.2,125.8,310.9,126.2,310.3,126.2z
M319.8,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C320.8,125.8,320.4,126.2,319.8,126.2z M329.3,126.2
c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C330.3,125.8,329.9,126.2,329.3,126.2z M338.9,126.2c-0.6,0-1-0.4-1-1v-9.5
c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C339.8,125.8,339.4,126.2,338.9,126.2z M310.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1
v9.5C311.2,149.6,310.9,150,310.3,150z M319.8,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,149.6,320.4,150,319.8,150z M329.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,149.6,329.9,150,329.3,150z M338.9,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,149.6,339.4,150,338.9,150z M310.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,174.4,310.9,174.7,310.3,174.7L310.3,174.7z M319.8,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,174.4,320.4,174.7,319.8,174.7L319.8,174.7z M329.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,174.4,329.9,174.7,329.3,174.7L329.3,174.7z M338.9,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,174.4,339.4,174.7,338.9,174.7L338.9,174.7z M310.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,197.2,310.9,197.6,310.3,197.6z M319.8,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,197.2,320.4,197.6,319.8,197.6z M329.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,197.2,329.9,197.6,329.3,197.6z M338.9,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,197.2,339.4,197.6,338.9,197.6z M310.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,221,310.9,221.4,310.3,221.4z M319.8,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,221,320.4,221.4,319.8,221.4z M329.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,221,329.9,221.4,329.3,221.4z M338.9,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,221,339.4,221.4,338.9,221.4z M310.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,244.8,310.9,245.2,310.3,245.2z M319.8,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,244.8,320.4,245.2,319.8,245.2z M329.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,244.8,329.9,245.2,329.3,245.2z M338.9,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,244.8,339.4,245.2,338.9,245.2z M353.6,149.9V148c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7S361.2,149.9,353.6,149.9z"/>
<path class="st3" d="M353.6,165.1v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9c7.6,0,13.7,6.2,13.7,13.7
C367.3,158.9,361.2,165.1,353.6,165.1z M353.6,204.2v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7C367.3,198,361.2,204.2,353.6,204.2z"/>
<path class="st3" d="M353.6,219.4v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8V192c7.6,0,13.7,6.2,13.7,13.7
C367.3,213.2,361.2,219.4,353.6,219.4z"/>
<path class="st3" d="M353.6,238.5v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-2c7.6,0,13.7,6.2,13.7,13.7
C367.3,232.3,361.2,238.5,353.6,238.5z M235,231.9h3.8v14.3H235V231.9z"/>
<path class="st3" d="M190.3,193.8h2.9v6.7h-2.9V193.8z M202.7,193.8h2.9v6.7h-2.9V193.8z"/>
<path class="st3" d="M192.2,189.5c-0.2,0-0.3-0.1-0.4-0.2l-2.9-4.8c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2l2.9,4.8
c0.1,0.2,0.1,0.5-0.2,0.7H192.2z M197.4,188c-0.3,0-0.5-0.2-0.5-0.5V182c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5v5.5
C197.9,187.8,197.7,188,197.4,188z M202.6,189.4c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7l3-4.7c0.2-0.2,0.5-0.3,0.7-0.1
s0.3,0.5,0.1,0.7l-3,4.7C202.9,189.3,202.7,189.4,202.6,189.4z"/>
<path class="st3" d="M69.7,190.5l5.7-0.9c0.6,1.9,1.9,2.9,4.2,3c2.4-0.2,3.7-1.2,4-3.3c-0.1-2.2-1.5-3.3-4.2-3.4
c-1.7,0.1-3,0.5-4,1.1h-4.7l1-11.2h16.1v3.6H76.5l-0.6,4.6c1.5-0.8,3.2-1.1,5-1.1c5.3,0.1,8.2,2.2,8.4,6.3c-0.2,4.3-3.4,6.5-9.7,6.7
C74.4,195.6,71.1,193.9,69.7,190.5L69.7,190.5z M111.2,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C107.8,175.2,111.1,178.7,111.2,185.5z M105.1,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C104,192.5,105.2,190.2,105.1,185.6z M133.1,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C129.7,175.2,133,178.7,133.1,185.5z M127,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C125.9,192.5,127.1,190.2,127,185.6z"/>
</svg>
/* 后台返回消息提示 */
import { Message } from 'element-ui';
// 后台返回异常提示
export default {
errorMsg: function(response) {
let local = window.location.origin;
if (local.indexOf('localhost')) {
local = 'http://gicdev.demogic.com';
}
if (response.errorCode != 0) {
if (response.errorCode == 401) {
window.location.href = local + '/gic-web/#/';
return false;
}
Message.error({
duration: 1000,
message: response.message
});
}
}
};
// 防抖
export function _debounce(fn, delay) {
var delay = delay || 200;
var timer;
// console.log(fn)
return function() {
var that = this;
var args = arguments;
if (timer) {
clearTimeout(timer);
}
timer = setTimeout(function() {
timer = null;
fn.apply(that, args);
}, delay);
};
}
// 节流
export function _throttle(fn, interval) {
var last;
var timer;
var interval = interval || 200;
return function() {
var that = this;
var args = arguments;
var now = +new Date();
if (last && now - last < interval) {
clearTimeout(timer);
timer = setTimeout(function() {
last = now;
fn.apply(that, args);
}, interval);
} else {
last = now;
fn.apply(that, args);
}
};
}
/* 消息提示 */
import { Message } from 'element-ui';
export default {
showmsg: function(msg, type) {
Message({
duration: 1000,
message: msg,
type: type
});
}
};
/*
* 判断字符长度
* @param: str
*/
export default {
/*
* 一个汉字算两个字符,一个英文字母或数字算一个字符
*/
getByteLen: function(val) {
let len = 0;
for (let i = 0; i < val.length; i++) {
let a = val.charAt(i);
if (a.match(/[^\x00-\xff]/gi) != null) {
len += 2;
} else {
len += 1;
}
}
return len;
},
/*
* 一个汉字算一个字,一个英文字母或数字算半个字
*/
getZhLen: function(val) {
let len = 0;
for (let i = 0; i < val.length; i++) {
let a = val.charAt(i);
if (a.match(/[^\x00-\xff]/gi) != null) {
len += 1;
} else {
len += 0.5;
}
}
return Math.ceil(len);
},
/*暂无用*/
cutStr: function(str, len, type) {
let char_length = 0;
for (let i = 0; i < str.length; i++) {
let son_str = str.charAt(i);
if (type == 1) {
encodeURI(son_str).length > 2 ? (char_length += 1) : (char_length += 0.5);
}
if (type == 2) {
char_length += 1;
}
if (char_length >= len) {
let sub_len = char_length == len ? i + 1 : i;
return str.substr(0, sub_len);
}
}
},
/*
* 限制字数用, 一个汉字算一个字,两个英文/字母算一个字
*/
getByteVal: function(val, max) {
let returnValue = '';
let byteValLen = 0;
for (let i = 0; i < val.length; i++) {
if (val[i].match(/[^\x00-\xff]/gi) != null) byteValLen += 1;
else byteValLen += 0.5;
if (byteValLen > max) break;
returnValue += val[i];
}
return returnValue;
},
/*
* 限制字符数用, 一个汉字算两个字符,一个英文/字母算一个字符
*/
getCharVal: function(val, max) {
let returnValue = '';
let byteValLen = 0;
for (let i = 0; i < val.length; i++) {
if (val[i].match(/[^\x00-\xff]/gi) != null) byteValLen += 2;
else byteValLen += 1;
if (byteValLen > max) break;
returnValue += val[i];
}
return returnValue;
},
/*
* 正则校验,校验非负数字
*/
regPos: function(v) {
let regTest = /^\d+(\.\d+)?$/;
return regTest.test(v);
}
};
/*
* 时间日期转换
* @param: "10:00-22:00"/ new Date()
*/
export default {
/*
* let storeBusinessTime="10:00-22:00" to
*/
timeToDate: function(val) {
let date = new Date();
let y = date.getFullYear();
let m = date.getMonth() + 1;
let day = date.getDate();
let d = [];
let newArr = [];
let dArr = val.split('-');
dArr.forEach(function(ele, index) {
newArr.push(ele.split(':'));
});
d = [new Date(y, m, day, newArr[0][0], newArr[0][1]), new Date(y, m, day, newArr[1][0], newArr[1][1])];
return d;
},
dateToTime(val) {
// (0-9)年月数字的显示
function formatDig(num) {
return num > 9 ? '' + num : '0' + num;
}
let t;
let t1 = formatDig(new Date(val[0]).getHours()) + ':' + formatDig(new Date(val[0]).getMinutes());
let t2 = formatDig(new Date(val[1]).getHours()) + ':' + formatDig(new Date(val[1]).getMinutes());
t = t1 + '-' + t2;
return t;
},
/**
* 时间戳转时间
* @param timestamp
* 调用方法 timeToDateTime(timestamp 参数,年月日连接符(-/.))
*/
timeToDateTime(timestamp, sym) {
//格式化 timestamp 返回年月日时分秒
function formatNumber(n) {
//对于小于 10 的数字返回 0[1-9]
n = n.toString();
return n[1] ? n : '0' + n;
}
if (timestamp != null) {
let date = new Date(timestamp);
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
let h = date.getHours();
let m = date.getMinutes();
let s = date.getSeconds();
// console.log(timestamp);
return [year, month, day].map(formatNumber).join(sym || '-') + ' ' + [h, m, s].map(formatNumber).join(':');
}
return '--';
}
};
var SIGN_REGEXP = /([yMdhsm])(\1*)/g;
var DEFAULT_PATTERN = 'yyyy-MM-dd';
function padding(s, len) {
var len = len - (s + '').length;
for (var i = 0; i < len; i++) { s = '0' + s; }
return s;
};
export default {
getQueryStringByName: function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
var context = "";
if (r != null)
context = r[2];
reg = null;
r = null;
return context == null || context == "" || context == "undefined" ? "" : context;
},
formatDate: {
format: function (date, pattern) {
pattern = pattern || DEFAULT_PATTERN;
return pattern.replace(SIGN_REGEXP, function ($0) {
switch ($0.charAt(0)) {
case 'y': return padding(date.getFullYear(), $0.length);
case 'M': return padding(date.getMonth() + 1, $0.length);
case 'd': return padding(date.getDate(), $0.length);
case 'w': return date.getDay() + 1;
case 'h': return padding(date.getHours(), $0.length);
case 'm': return padding(date.getMinutes(), $0.length);
case 's': return padding(date.getSeconds(), $0.length);
}
});
},
parse: function (dateString, pattern) {
var matchs1 = pattern.match(SIGN_REGEXP);
var matchs2 = dateString.match(/(\d)+/g);
if (matchs1.length == matchs2.length) {
var _date = new Date(1970, 0, 1);
for (var i = 0; i < matchs1.length; i++) {
var _int = parseInt(matchs2[i]);
var sign = matchs1[i];
switch (sign.charAt(0)) {
case 'y': _date.setFullYear(_int); break;
case 'M': _date.setMonth(_int - 1); break;
case 'd': _date.setDate(_int); break;
case 'h': _date.setHours(_int); break;
case 'm': _date.setMinutes(_int); break;
case 's': _date.setSeconds(_int); break;
}
}
return _date;
}
return null;
}
}
};
<!--
门店分组下拉选择:
<store-tree-select
@checkStoreGroupIds="checkStoreGroupIds">
</store-tree-select>
checkStoreGroupIds: function(nodes) {
let that = this;
that.storeGroupIds = nodes;
},
-->
<template>
<el-popover placement="bottom" style="min-width: 232px" v-model="storeVisible">
<div class="select-tree-wrap">
<el-tree :data="storeData" node-key="groupId" ref="storeTree" @node-click="loadData" @node-expand="loadData" show-checkbox :props="defaultProps" @check="checkStore"></el-tree>
</div>
<div class="flex-column item-cell-select inline-block m-l-10" slot="reference">
<div class="depart-item-wrap">
<div style="width: 350px;" class="el-select el-select--large depart-item-content">
<span class="font-14 color-c0c4cc p-l-10" style="display: inline-block;line-height: 32px;color: #c0c4cc;" v-if="!storeGroupIds.length">请选择门店分组</span>
<div class="el-select__tags" style="max-width: 181px;">
<span>
<template v-for="(item, index) in storeGroupIds">
<span class="el-tag el-tag--info el-tag--small" :key="index">
<span class="el-select__tags-text">{{ item.storeGroupName || item.storeName }}</span
><!-- <i class="el-tag__close el-icon-close" @click.stop="delDepart(index, storeGroupIds)"></i> -->
</span>
</template>
</span>
</div>
</div>
</div>
</div>
</el-popover>
</template>
<script>
import { getRequest } from '@/api/api';
import errMsg from '@/common/js/error';
export default {
name: 'store-tree-select',
props: {
brandId: {
type: String,
default() {
return '';
}
},
activeGroupId: {
type: String,
default() {
return '';
}
}
},
data() {
return {
projectName: '', // 当前项目名
storeVisible: false,
storeGroupIds: [],
storeData: [],
defaultProps: {
children: 'children',
label: 'storeGroupName'
}
};
},
methods: {
/**
* 展开节点
*/
loadData(obj, node, data) {
let that = this;
if (!obj.hasOwnProperty('storeId') && !obj.hasOwnProperty('loaded')) {
obj.loaded = true;
that.getStoreData(obj);
}
},
/**
* 选择 tree 节点,获取选择节点信息
*/
checkStore: function(e) {
let that = this;
that.storeGroupIds = that.$refs.storeTree.getCheckedNodes();
that.$emit('checkStoreGroupIds', that.$refs.storeTree.getCheckedNodes());
},
/**
* 简单数组-->父子数组对象
*/
treeData(data) {
let tree = data.filter(father => {
//循环所有项
let branchArr = data.filter(child => {
return father.groupId == child.parentId; //返回每一项的子级数组
});
if (branchArr.length > 0) {
father.children = branchArr; //如果存在子级,则给父级添加一个children属性,并赋值
}
return father.groupId == 0; //返回第一层
});
return tree;
},
/**
* 根据分组 id 获取门店
*/
getStoreData(obj) {
let that = this;
let para = {
storeGroupId: obj.storeGroupId,
recursionStr: true, // 显示子分组
hasPage: false // 是否显示分页
};
getRequest('/api-admin/store-list', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 0) {
if (!!resData.result && !!resData.result.list.length) {
resData.result.list.forEach(ele => {
ele.storeGroupName = ele.storeName;
ele.storeGroupIds = ele.storeId;
obj.children.push(ele);
});
}
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取所有门店分组
*/
getStoreGroup() {
let that = this;
getRequest('/api-admin/store-group-list', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 0) {
if (!!resData.result && !!resData.result.length) {
that.storeData = resData.result;
}
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
mounted() {
const that = this;
that.getStoreGroup();
}
};
</script>
<style lang="less" scoped>
.depart-item-content {
width: 213px;
height: 32px;
overflow: hidden;
white-space: nowrap;
border-radius: 4px;
border: 1px solid #dcdfe6;
cursor: pointer;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background: #fff;
}
.select-tree-wrap {
max-height: 300px;
overflow-y: auto;
/deep/ .el-tree-node__expand-icon.is-leaf {
cursor: pointer;
color: #c0c4cc;
}
}
.item-cell-select {
/deep/ .el-select__tags {
white-space: nowrap;
overflow: hidden;
}
}
</style>
import promise from 'es6-promise';
promise.polyfill();
// import Vue from 'vue';
import App from './App';
import router from './router';
import { Message } from 'element-ui';
import VueAxios from 'vue-axios';
import axios from 'axios';
/* eslint-disable */
// import 'element-ui/lib/theme-chalk/index.css'
import '../theme/index.css';
import '../static/css/index.less';
/* import vueGicHeader from '@gic-test/vue-gic-header';
import vueGicAsideMenu from '@gic-test/vue-gic-aside-menu';
import vueAreaAb from '@gic-test/vue-area-ab';
// 新增公共 footer插件
import vueGicFooter from '@gic-test/vue-gic-footer';
import vueGicImgPreview from '@gic-test/vue-gic-img-preview';
import vueGicStoreNew from '@gic-test/vue-gic-store-new';
Vue.use(vueGicStoreNew);
Vue.use(vueGicImgPreview);
Vue.use(vueGicFooter);
Vue.use(vueAreaAb);
Vue.use(vueGicAsideMenu);
Vue.use(vueGicHeader); */
Vue.config.productionTip = false;
// Vue.use(ElementUI, { size: 'large' });
Vue.use(VueAxios, axios);
Vue.axios.defaults.withCredentials = true; // 跨域cookie访问
Vue.axios.interceptors.request.use(
config => {
return config;
},
err => {
return Promise.reject(err);
}
);
Vue.axios.interceptors.response.use(
response => {
if (response.status == 200 && response.data.errorCode == 1) {
}
return response;
},
error => {
if (error.response) {
switch (error.response.status) {
case 401:
window.location.href = window.location.origin + '/gic-web/#/';
case 500:
Message.error('服务器500');
}
}
return Promise.reject(error.response.data);
}
);
// router.beforeEach((to, from, next) => {
// if (window.location.pathname.slice(-1) !== '/') {
// window.location = window.location.pathname + '/';
// }
// })
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
});
/* eslint-disable */
module.exports = (parantfile, file) => r => {
import('view/' + parantfile + '/' + file + '.vue').then(module => {
r(module);
});
};
// import Vue from 'vue';
import Router from 'vue-router';
import _import from './_import.js';
// Vue.use(Router);
const errorPage = r => {
import('view/errorPage/index.vue').then(module => {
r(module);
});
};
export const constantRouterMap = [
{
path: '/',
name: '好办签到',
redirect: '/signExport',
component: _import('index', 'index')
},
{
path: '/signExport',
name: '好办签到',
component: _import('index', 'index')
},
{
path: '/403',
name: '无权访问',
component: errorPage
},
{
path: '/404',
name: 'error404',
component: errorPage
},
{
path: '/500',
name: 'error500',
component: errorPage
},
{ path: '*', redirect: '/404', hidden: true }
];
export default new Router({
// mode:'history',
routes: constantRouterMap,
scrollBehavior: () => ({ y: 0 })
});
import Vuex from 'vuex';
import Vue from 'vue';
import * as types from './types';
Vue.use(Vuex);
export default new Vuex.Store({
state: {
user: {},
token: null,
title: '',
show: false
},
mutations: {
[types.LOGIN]: (state, data) => {
sessionStorage.token = data;
state.token = data;
},
[types.LOGOUT]: state => {
sessionStorage.removeItem('token');
state.token = null;
},
[types.TITLE]: (state, data) => {
state.title = data;
},
[types.SHOW]: (state, data) => {
state.show = data;
}
}
});
export const LOGIN = 'login';
export const LOGOUT = 'logout';
export const TITLE = 'title';
export const SHOW = 'show';
import Vue from 'vue'
import Clipboard from 'clipboard'
function clipboardSuccess() {
Vue.prototype.$message({
message: 'Copy successfully',
type: 'success',
duration: 1500
})
}
function clipboardError() {
Vue.prototype.$message({
message: 'Copy failed',
type: 'error'
})
}
export default function handleClipboard(text, event) {
const clipboard = new Clipboard(event.target, {
text: () => text
})
clipboard.on('success', () => {
clipboardSuccess()
clipboard.off('error')
clipboard.off('success')
clipboard.destroy()
})
clipboard.on('error', () => {
clipboardError()
clipboard.off('error')
clipboard.off('success')
clipboard.destroy()
})
clipboard.onClick(event)
}
/*设置cookie*/
export function setCookie(c_name,value,expire) {
var date=new Date();
date.setSeconds(date.getSeconds()+expire);
document.cookie = c_name + "="+ encodeURI(value)+"; expires="+date.toGMTString();
}
/*获取cookie*/
export function getCookie(c_name){
if(document.cookie.length>0){
var name = encodeURI(c_name);
var allcookies = document.cookie;
name += "=";
var pos = allcookies.indexOf(name);
if(pos != -1){
var start = pos + name.length;
var end = allcookies.indexOf(";",start);
if(end == -1){
end = allcookies.length;
}
var value = allcookies.substring(start,end);
return decodeURI(value);
} else{
return "";
}
}
}
/*删除cookie*/
export function delCookie(c_name){
setCookie(c_name, "", -1);
}
/**
* Created by jiachenpan on 17/3/8.
*/
export default function createUniqueString() {
const timestamp = +new Date() + ''
const randomNum = parseInt((1 + Math.random()) * 65536) + ''
return (+(randomNum + timestamp)).toString(32)
}
export function fomatBirthday(val) {
if(val) {
let date = new Date(val);
let Y = date.getFullYear() + '-';
let M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
let D = (date.getDate() < 10 ? '0'+ (date.getDate()): date.getDate());
return Y+M+D;
}else {
return ''
}
}
// 解析时间
export function dateformat(time, fmt) {
let o = {
"M+": time.getMonth() + 1, //月份
"d+": time.getDate(), //日
"h+": time.getHours(), //小时
"m+": time.getMinutes(), //分
"s+": time.getSeconds(), //秒
"q+": Math.floor((time.getMonth() + 3) / 3), //季度
"S": time.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (time.getFullYear() + "").substr(4 - RegExp.$1.length));
}
for (var k in o) {
if (new RegExp("(" + k + ")").test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
}
}
return fmt;
}
export const __VERSION = '1.1';
/**
* Created by jiachenpan on 16/11/18.
*/
export function parseTime(time, cFormat) {
if (arguments.length === 0) {
return null
}
const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
} else {
if (('' + time).length === 10) time = parseInt(time) * 1000
date = new Date(time)
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
}
const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
let value = formatObj[key]
if (key === 'a') return ['一', '二', '三', '四', '五', '六', '日'][value - 1]
if (result.length > 0 && value < 10) {
value = '0' + value
}
return value || 0
})
return time_str
}
export function formatTime(time, option) {
time = +time * 1000
const d = new Date(time)
const now = Date.now()
const diff = (now - d) / 1000
if (diff < 30) {
return '刚刚'
} else if (diff < 3600) { // less 1 hour
return Math.ceil(diff / 60) + '分钟前'
} else if (diff < 3600 * 24) {
return Math.ceil(diff / 3600) + '小时前'
} else if (diff < 3600 * 24 * 2) {
return '1天前'
}
if (option) {
return parseTime(time, option)
} else {
return d.getMonth() + 1 + '月' + d.getDate() + '日' + d.getHours() + '时' + d.getMinutes() + '分'
}
}
// 格式化时间
export function getQueryObject(url) {
url = url == null ? window.location.href : url
const search = url.substring(url.lastIndexOf('?') + 1)
const obj = {}
const reg = /([^?&=]+)=([^?&=]*)/g
search.replace(reg, (rs, $1, $2) => {
const name = decodeURIComponent($1)
let val = decodeURIComponent($2)
val = String(val)
obj[name] = val
return rs
})
return obj
}
/**
*get getByteLen
* @param {Sting} val input value
* @returns {number} output value
*/
export function getByteLen(val) {
let len = 0
for (let i = 0; i < val.length; i++) {
if (val[i].match(/[^\x00-\xff]/ig) != null) {
len += 1
} else { len += 0.5 }
}
return Math.floor(len)
}
export function cleanArray(actual) {
const newArray = []
for (let i = 0; i < actual.length; i++) {
if (actual[i]) {
newArray.push(actual[i])
}
}
return newArray
}
export function param(json) {
if (!json) return ''
return cleanArray(Object.keys(json).map(key => {
if (json[key] === undefined) return ''
return encodeURIComponent(key) + '=' +
encodeURIComponent(json[key])
})).join('&')
}
export function param2Obj(url) {
const search = url.split('?')[1]
if (!search) {
return {}
}
return JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}')
}
export function html2Text(val) {
const div = document.createElement('div')
div.innerHTML = val
return div.textContent || div.innerText
}
export function objectMerge(target, source) {
/* Merges two objects,
giving the last one precedence */
if (typeof target !== 'object') {
target = {}
}
if (Array.isArray(source)) {
return source.slice()
}
Object.keys(source).forEach((property) => {
const sourceProperty = source[property]
if (typeof sourceProperty === 'object') {
target[property] = objectMerge(target[property], sourceProperty)
} else {
target[property] = sourceProperty
}
})
return target
}
export function scrollTo(element, to, duration) {
if (duration <= 0) return
const difference = to - element.scrollTop
const perTick = difference / duration * 10
setTimeout(() => {
console.log(new Date())
element.scrollTop = element.scrollTop + perTick
if (element.scrollTop === to) return
scrollTo(element, to, duration - 10)
}, 10)
}
export function toggleClass(element, className) {
if (!element || !className) {
return
}
let classString = element.className
const nameIndex = classString.indexOf(className)
if (nameIndex === -1) {
classString += '' + className
} else {
classString = classString.substr(0, nameIndex) + classString.substr(nameIndex + className.length)
}
element.className = classString
}
export const pickerOptions = [
{
text: '今天',
onClick(picker) {
const end = new Date()
const start = new Date(new Date().toDateString())
end.setTime(start.getTime())
picker.$emit('pick', [start, end])
}
}, {
text: '最近一周',
onClick(picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(end.getTime() - 3600 * 1000 * 24 * 7)
picker.$emit('pick', [start, end])
}
}, {
text: '最近一个月',
onClick(picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
picker.$emit('pick', [start, end])
}
}, {
text: '最近三个月',
onClick(picker) {
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
picker.$emit('pick', [start, end])
}
}]
export function getTime(type) {
if (type === 'start') {
return new Date().getTime() - 3600 * 1000 * 24 * 90
} else {
return new Date(new Date().toDateString())
}
}
export function debounce(func, wait, immediate) {
let timeout, args, context, timestamp, result
const later = function() {
// 据上一次触发时间间隔
const last = +new Date() - timestamp
// 上次被包装函数被调用时间间隔last小于设定时间间隔wait
if (last < wait && last > 0) {
timeout = setTimeout(later, wait - last)
} else {
timeout = null
// 如果设定为immediate===true,因为开始边界已经调用过了此处无需调用
if (!immediate) {
result = func.apply(context, args)
if (!timeout) context = args = null
}
}
}
return function(...args) {
context = this
timestamp = +new Date()
const callNow = immediate && !timeout
// 如果延时不存在,重新设定延时
if (!timeout) timeout = setTimeout(later, wait)
if (callNow) {
result = func.apply(context, args)
context = args = null
}
return result
}
}
export function deepClone(source) {
if (!source && typeof source !== 'object') {
throw new Error('error arguments', 'shallowClone')
}
const targetObj = source.constructor === Array ? [] : {}
Object.keys(source).forEach((keys) => {
if (source[keys] && typeof source[keys] === 'object') {
targetObj[keys] = source[keys].constructor === Array ? [] : {}
targetObj[keys] = deepClone(source[keys])
} else {
targetObj[keys] = source[keys]
}
})
return targetObj
}
/**
*Created by jiachenpan on 16/11/29.
* @param {Sting} url
* @param {Sting} title
* @param {Number} w
* @param {Number} h
*/
export default function openWindow(url, title, w, h) {
// Fixes dual-screen position Most browsers Firefox
const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : screen.left
const dualScreenTop = window.screenTop !== undefined ? window.screenTop : screen.top
const width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width
const height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height
const left = ((width / 2) - (w / 2)) + dualScreenLeft
const top = ((height / 2) - (h / 2)) + dualScreenTop
const newWindow = window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left)
// Puts focus on the newWindow
if (window.focus) {
newWindow.focus()
}
}
import axios from 'axios'
import { Message } from 'element-ui'
import store from '@/store'
import { getToken } from '@/utils/auth'
// create an axios instance
const service = axios.create({
baseURL: process.env.BASE_API, // api的base_url
timeout: 5000 // request timeout
})
// request interceptor
service.interceptors.request.use(config => {
// Do something before request is sent
if (store.getters.token) {
config.headers['X-Token'] = getToken() // 让每个请求携带token-- ['X-Token']为自定义key 请根据实际情况自行修改
}
return config
}, error => {
// Do something with request error
console.log(error) // for debug
Promise.reject(error)
})
// respone interceptor
service.interceptors.response.use(
response => response,
/**
* 下面的注释为通过response自定义code来标示请求状态,当code返回如下情况为权限有问题,登出并返回到登录页
* 如通过xmlhttprequest 状态码标识 逻辑可写在下面error中
*/
// const res = response.data;
// if (res.code !== 20000) {
// Message({
// message: res.message,
// type: 'error',
// duration: 5 * 1000
// });
// // 50008:非法的token; 50012:其他客户端登录了; 50014:Token 过期了;
// if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
// MessageBox.confirm('你已被登出,可以取消继续留在该页面,或者重新登录', '确定登出', {
// confirmButtonText: '重新登录',
// cancelButtonText: '取消',
// type: 'warning'
// }).then(() => {
// store.dispatch('FedLogOut').then(() => {
// location.reload();// 为了重新实例化vue-router对象 避免bug
// });
// })
// }
// return Promise.reject('error');
// } else {
// return response.data;
// }
error => {
console.log('err' + error)// for debug
Message({
message: error.message,
type: 'error',
duration: 5 * 1000
})
return Promise.reject(error)
})
export default service
/*获取url参数*/
/**
* ?name=zhangsan&age=23
* @param {} name url 参数名
* getParamsByName(age) 23
*/
export function getParamsByName(attr) {
let ret = RegExp(`[?&]${attr}=([^&]*)`).exec(window.location.href);
return ret && decodeURIComponent(ret[1].replace(/\+/g, ' '));
}
/**
* 人群筛选器 返回具体筛选条件的个数
* @param {}
* return 筛选条件的个数
*/
export function normalizePeople(jsonStr) {
if (!jsonStr) {
return 0;
}
let ret = 0;
const jsonObj = JSON.parse(jsonStr);
if (jsonObj.list && jsonObj.list.length) {
// 如果是一个对象
jsonObj.list.forEach(ele => {
// 如果list在ele里面 表示里面包含list数组
if ('list' in ele) {
if (ele.list && ele.list.length) {
ret += ele.list.length;
}
} else {
ret += 1;
}
});
}
return ret;
}
/**
* 时间格式转换
* 20181010101010 转换成2018-10-10 10:10:10
* @param { timeStr } 要转换的时间
* @param { type } 要转换的格式
*/
export function formatLongTime(timeStr, type) {
if (!timeStr) {
return '--';
}
timeStr = '' + timeStr;
let regTest = /^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/g;
if (type == 1) {
return timeStr.replace(regTest, function(match, p, p1, p2, p3, p4, p5){
return [p, p1, p2].join('-') + ' ' + [p3, p4, p5].join(':');
});
} else {
return timeStr.replace(/^(\d{4})(\d{2})(\d{2})$/g, function(match, p, p1, p2){
return [p, p1, p2].join('-');
});
}
}
/**
* 生日时间转换
* @param {}
*/
export function paddingBorth(str) {
if (!str) {
return '--';
}
str = '' + str;
// 如果是10月之前补位
if (str.length == 3) {
str = 0 + str;
}
return str.replace(/^(\d{2})(\d{2})$/g, function(match, p , p1) {
return [p, p1].join('-');
});
}
\ No newline at end of file
/**
* Created by jiachenpan on 16/11/18.
*/
export function isvalidUsername(str) {
const valid_map = ['admin', 'editor']
return valid_map.indexOf(str.trim()) >= 0
}
/* 合法uri*/
export function validateURL(textval) {
const urlregex = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
return urlregex.test(textval)
}
/* 小写字母*/
export function validateLowerCase(str) {
const reg = /^[a-z]+$/
return reg.test(str)
}
/* 大写字母*/
export function validateUpperCase(str) {
const reg = /^[A-Z]+$/
return reg.test(str)
}
/* 大小写字母*/
export function validateAlphabets(str) {
const reg = /^[A-Za-z]+$/
return reg.test(str)
}
/**
* validate email
* @param email
* @returns {boolean}
*/
export function validateEmail(email) {
const re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
return re.test(email)
}
/* eslint-disable */
/* Blob.js
* A Blob implementation.
* 2014-05-27
*
* By Eli Grey, http://eligrey.com
* By Devin Samarin, https://github.com/eboyjr
* License: X11/MIT
* See LICENSE.md
*/
/*global self, unescape */
/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true,
plusplus: true */
/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */
(function (view) {
"use strict";
view.URL = view.URL || view.webkitURL;
if (view.Blob && view.URL) {
try {
new Blob;
return;
} catch (e) {}
}
// Internally we use a BlobBuilder implementation to base Blob off of
// in order to support older browsers that only have BlobBuilder
var BlobBuilder = view.BlobBuilder || view.WebKitBlobBuilder || view.MozBlobBuilder || (function(view) {
var
get_class = function(object) {
return Object.prototype.toString.call(object).match(/^\[object\s(.*)\]$/)[1];
}
, FakeBlobBuilder = function BlobBuilder() {
this.data = [];
}
, FakeBlob = function Blob(data, type, encoding) {
this.data = data;
this.size = data.length;
this.type = type;
this.encoding = encoding;
}
, FBB_proto = FakeBlobBuilder.prototype
, FB_proto = FakeBlob.prototype
, FileReaderSync = view.FileReaderSync
, FileException = function(type) {
this.code = this[this.name = type];
}
, file_ex_codes = (
"NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR "
+ "NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR"
).split(" ")
, file_ex_code = file_ex_codes.length
, real_URL = view.URL || view.webkitURL || view
, real_create_object_URL = real_URL.createObjectURL
, real_revoke_object_URL = real_URL.revokeObjectURL
, URL = real_URL
, btoa = view.btoa
, atob = view.atob
, ArrayBuffer = view.ArrayBuffer
, Uint8Array = view.Uint8Array
;
FakeBlob.fake = FB_proto.fake = true;
while (file_ex_code--) {
FileException.prototype[file_ex_codes[file_ex_code]] = file_ex_code + 1;
}
if (!real_URL.createObjectURL) {
URL = view.URL = {};
}
URL.createObjectURL = function(blob) {
var
type = blob.type
, data_URI_header
;
if (type === null) {
type = "application/octet-stream";
}
if (blob instanceof FakeBlob) {
data_URI_header = "data:" + type;
if (blob.encoding === "base64") {
return data_URI_header + ";base64," + blob.data;
} else if (blob.encoding === "URI") {
return data_URI_header + "," + decodeURIComponent(blob.data);
} if (btoa) {
return data_URI_header + ";base64," + btoa(blob.data);
} else {
return data_URI_header + "," + encodeURIComponent(blob.data);
}
} else if (real_create_object_URL) {
return real_create_object_URL.call(real_URL, blob);
}
};
URL.revokeObjectURL = function(object_URL) {
if (object_URL.substring(0, 5) !== "data:" && real_revoke_object_URL) {
real_revoke_object_URL.call(real_URL, object_URL);
}
};
FBB_proto.append = function(data/*, endings*/) {
var bb = this.data;
// decode data to a binary string
if (Uint8Array && (data instanceof ArrayBuffer || data instanceof Uint8Array)) {
var
str = ""
, buf = new Uint8Array(data)
, i = 0
, buf_len = buf.length
;
for (; i < buf_len; i++) {
str += String.fromCharCode(buf[i]);
}
bb.push(str);
} else if (get_class(data) === "Blob" || get_class(data) === "File") {
if (FileReaderSync) {
var fr = new FileReaderSync;
bb.push(fr.readAsBinaryString(data));
} else {
// async FileReader won't work as BlobBuilder is sync
throw new FileException("NOT_READABLE_ERR");
}
} else if (data instanceof FakeBlob) {
if (data.encoding === "base64" && atob) {
bb.push(atob(data.data));
} else if (data.encoding === "URI") {
bb.push(decodeURIComponent(data.data));
} else if (data.encoding === "raw") {
bb.push(data.data);
}
} else {
if (typeof data !== "string") {
data += ""; // convert unsupported types to strings
}
// decode UTF-16 to binary string
bb.push(unescape(encodeURIComponent(data)));
}
};
FBB_proto.getBlob = function(type) {
if (!arguments.length) {
type = null;
}
return new FakeBlob(this.data.join(""), type, "raw");
};
FBB_proto.toString = function() {
return "[object BlobBuilder]";
};
FB_proto.slice = function(start, end, type) {
var args = arguments.length;
if (args < 3) {
type = null;
}
return new FakeBlob(
this.data.slice(start, args > 1 ? end : this.data.length)
, type
, this.encoding
);
};
FB_proto.toString = function() {
return "[object Blob]";
};
FB_proto.close = function() {
this.size = this.data.length = 0;
};
return FakeBlobBuilder;
}(view));
view.Blob = function Blob(blobParts, options) {
var type = options ? (options.type || "") : "";
var builder = new BlobBuilder();
if (blobParts) {
for (var i = 0, len = blobParts.length; i < len; i++) {
builder.append(blobParts[i]);
}
}
return builder.getBlob(type);
};
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this));
/* eslint-disable */
require('script-loader!file-saver');
require('./Blob');
require('script-loader!xlsx/dist/xlsx.core.min');
function generateArray(table) {
var out = [];
var rows = table.querySelectorAll('tr');
var ranges = [];
for (var R = 0; R < rows.length; ++R) {
var outRow = [];
var row = rows[R];
var columns = row.querySelectorAll('td');
for (var C = 0; C < columns.length; ++C) {
var cell = columns[C];
var colspan = cell.getAttribute('colspan');
var rowspan = cell.getAttribute('rowspan');
var cellValue = cell.innerText;
if (cellValue !== "" && cellValue == +cellValue) cellValue = +cellValue;
//Skip ranges
ranges.forEach(function (range) {
if (R >= range.s.r && R <= range.e.r && outRow.length >= range.s.c && outRow.length <= range.e.c) {
for (var i = 0; i <= range.e.c - range.s.c; ++i) outRow.push(null);
}
});
//Handle Row Span
if (rowspan || colspan) {
rowspan = rowspan || 1;
colspan = colspan || 1;
ranges.push({s: {r: R, c: outRow.length}, e: {r: R + rowspan - 1, c: outRow.length + colspan - 1}});
}
;
//Handle Value
outRow.push(cellValue !== "" ? cellValue : null);
//Handle Colspan
if (colspan) for (var k = 0; k < colspan - 1; ++k) outRow.push(null);
}
out.push(outRow);
}
return [out, ranges];
};
function datenum(v, date1904) {
if (date1904) v += 1462;
var epoch = Date.parse(v);
return (epoch - new Date(Date.UTC(1899, 11, 30))) / (24 * 60 * 60 * 1000);
}
function sheet_from_array_of_arrays(data, opts) {
var ws = {};
var range = {s: {c: 10000000, r: 10000000}, e: {c: 0, r: 0}};
for (var R = 0; R != data.length; ++R) {
for (var C = 0; C != data[R].length; ++C) {
if (range.s.r > R) range.s.r = R;
if (range.s.c > C) range.s.c = C;
if (range.e.r < R) range.e.r = R;
if (range.e.c < C) range.e.c = C;
var cell = {v: data[R][C]};
if (cell.v == null) continue;
var cell_ref = XLSX.utils.encode_cell({c: C, r: R});
if (typeof cell.v === 'number') cell.t = 'n';
else if (typeof cell.v === 'boolean') cell.t = 'b';
else if (cell.v instanceof Date) {
cell.t = 'n';
cell.z = XLSX.SSF._table[14];
cell.v = datenum(cell.v);
}
else cell.t = 's';
ws[cell_ref] = cell;
}
}
if (range.s.c < 10000000) ws['!ref'] = XLSX.utils.encode_range(range);
return ws;
}
function Workbook() {
if (!(this instanceof Workbook)) return new Workbook();
this.SheetNames = [];
this.Sheets = {};
}
function s2ab(s) {
var buf = new ArrayBuffer(s.length);
var view = new Uint8Array(buf);
for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;
return buf;
}
export function export_table_to_excel(id) {
var theTable = document.getElementById(id);
console.log('a')
var oo = generateArray(theTable);
var ranges = oo[1];
/* original data */
var data = oo[0];
var ws_name = "SheetJS";
console.log(data);
var wb = new Workbook(), ws = sheet_from_array_of_arrays(data);
/* add ranges to worksheet */
// ws['!cols'] = ['apple', 'banan'];
ws['!merges'] = ranges;
/* add worksheet to workbook */
wb.SheetNames.push(ws_name);
wb.Sheets[ws_name] = ws;
var wbout = XLSX.write(wb, {bookType: 'xlsx', bookSST: false, type: 'binary'});
saveAs(new Blob([s2ab(wbout)], {type: "application/octet-stream"}), "test.xlsx")
}
function formatJson(jsonData) {
console.log(jsonData)
}
export function export_json_to_excel(th, jsonData, defaultTitle) {
/* original data */
var data = jsonData;
data.unshift(th);
var ws_name = "SheetJS";
var wb = new Workbook(), ws = sheet_from_array_of_arrays(data);
/* add worksheet to workbook */
wb.SheetNames.push(ws_name);
wb.Sheets[ws_name] = ws;
var wbout = XLSX.write(wb, {bookType: 'xlsx', bookSST: false, type: 'binary'});
var title = defaultTitle || '列表'
saveAs(new Blob([s2ab(wbout)], {type: "application/octet-stream"}), title + ".xlsx")
}
<template>
<div class="errPage-container">
<el-button @click="back" icon="arrow-left" class="pan-back-btn">返回</el-button>
<el-row>
<el-col :span="12">
<h1 class="text-jumbo text-ginormous">你没有权限去该页面!</h1>
<h2></h2>
<h6></h6>
<ul class="list-unstyled">
<!-- <li>或者你可以去:</li>
<li class="link-type">
<router-link to="#/companyGroup">回首页</router-link>
</li> -->
<!-- <li class="link-type"><a href="https://www.taobao.com/">随便看看</a></li>
<li><a @click.prevent="dialogVisible=true" href="#">点我看图</a></li> -->
</ul>
</el-col>
<el-col :span="12">
<img :src="errGif" width="313" height="428" alt="Girl has dropped her ice cream." />
</el-col>
</el-row>
<el-dialog title="随便看" :visible.sync="dialogVisible">
<img class="pan-img" :src="ewizardClap" />
</el-dialog>
</div>
</template>
<script>
import errGif from '@/assets/401_images/401.gif';
export default {
name: 'page401',
data() {
return {
errGif: errGif + '?' + +new Date(),
ewizardClap: 'https://wpimg.wallstcn.com/007ef517-bafd-4066-aae4-6883632d9646',
dialogVisible: false
};
},
methods: {
back() {
if (this.$route.query.noGoBack) {
this.$router.push({ path: '/myTagLib' });
} else {
this.$router.go(-1);
}
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.errPage-container {
width: 800px;
margin: 100px auto;
.pan-back-btn {
background: #008489;
color: #fff;
}
.pan-gif {
margin: 0 auto;
display: block;
}
.pan-img {
display: block;
margin: 0 auto;
width: 100%;
}
.text-jumbo {
font-size: 60px;
font-weight: 700;
color: #484848;
}
.list-unstyled {
font-size: 14px;
li {
padding-bottom: 5px;
}
a {
color: #008489;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_403" alt="403" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">403</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a @click="changeRoute('/myTagLib')" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_403 from '@/assets/403_images/error_403.svg';
export default {
name: 'page403',
data() {
return {
img_403
};
},
methods: {
/**
* 路由跳转
*/
changeRoute(route) {
this.$router.push(route);
}
},
computed: {
message() {
return '抱歉,你无权访问该页面';
}
}
};
</script>
<style lang="scss" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #1890ff;
color: #fff;
background-color: #1890ff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_404" alt="404" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">404</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a @click="changeRoute('/myTagLib')" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_404 from '@/assets/404_images/error_404.svg';
export default {
name: 'page404',
data() {
return {
img_404
};
},
methods: {
/**
* 路由跳转
*/
changeRoute(route) {
this.$router.push(route);
}
},
computed: {
message() {
return '抱歉,你访问的页面不存在';
}
},
/* eslint-disable */
mounted() {
}
};
</script>
<style lang="scss" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #1890ff;
color: #fff;
background-color: #1890ff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_500" alt="500" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">500</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a @click="changeRoute('/myTagLib')" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_500 from '@/assets/500_images/error_500.svg';
export default {
name: 'page500',
data() {
return {
img_500
};
},
methods: {
/**
* 路由跳转
*/
changeRoute(route) {
this.$router.push(route);
}
},
computed: {
message() {
return '抱歉,服务器出错了';
}
}
};
</script>
<style lang="scss" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #1890ff;
color: #fff;
background-color: #1890ff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="imgSrc" alt="404" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">404</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a @click="changeRoute('/myTagLib')" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_403 from '@/assets/403_images/error_403.svg';
import img_404 from '@/assets/404_images/error_404.svg';
import img_500 from '@/assets/500_images/error_500.svg';
export default {
name: 'errpage',
data() {
return {
imgSrc: '',
message: '',
srcList: {
403: img_403,
404: img_404,
500: img_500
},
msgList: {
403: '抱歉,你无权访问该页面',
404: '抱歉,你访问的页面不存在',
500: '抱歉,服务器出错了'
}
};
},
methods: {
/**
* 路由跳转
*/
changeRoute(route) {
this.$router.push(route);
}
},
mounted() {
var that = this;
var path = that.$route.path.split('/')[1];
that.imgSrc = that.srcList[path];
that.message = that.msgList[path];
}
};
</script>
<style lang="scss" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #1890ff;
color: #fff;
background-color: #1890ff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
&:hover {
color: #fff;
background-color: #40a9ff;
border-color: #40a9ff;
}
&:active {
background: #096dd9;
border-color: #096dd9;
color: #fff;
}
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div class="sign-contain">
<div class="sign-content border-box">
<div>
<el-date-picker
class=""
v-model="choiceDate"
@change="changeDate"
:picker-options="pickerOptions"
:editable="false"
:value-format="'yyyy-MM-dd'"
type="daterange"
align="right"
unlink-panels
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</div>
<div class="m-t-20">
<store-tree-select @checkStoreGroupIds="checkStoreGroupIds"> </store-tree-select>
</div>
<div class="m-t-20">
<el-button type="primary" class="" @click="exportData">导 出</el-button>
</div>
</div>
</div>
</template>
<script>
import storeTreeSelect from '@/components/store-tree-select.vue';
export default {
name: 'index',
components: {
storeTreeSelect
},
data() {
return {
projectName: 'haoban-manage-web', // 当前项目名
contentHeight: '0px', // 页面内容高度
choiceDate: [],
choiceDateCopy: [],
pickerOptions: {
onPick: ({ maxDate, minDate }) => {
this.choiceDateCopy = [minDate.getTime()];
if (maxDate) {
this.choiceDateCopy = [];
}
},
disabledDate: time => {
if (this.choiceDateCopy.length) {
const one = 30 * 24 * 3600 * 1000;
const minTime = this.choiceDateCopy[0] - one;
const maxTime = this.choiceDateCopy[0] + one;
return time.getTime() < minTime || time.getTime() > maxTime || time.getTime() > Date.now() - 8.64e6;
}
return time.getTime() > Date.now() - 8.64e6;
}
},
storeGroupIds: []
};
},
methods: {
/**
* 导出数据
*/
exportData() {
let that = this;
if (!that.choiceDate.length) {
that.$message.error({
duration: 1000,
message: '请选择日期区间'
});
return false;
}
if (!that.storeGroupIds.length) {
that.$message.error({
duration: 1000,
message: '请选择门店分组'
});
return false;
}
that.postExportData();
},
postExportData() {
let that = this;
let storeIds = [];
let groupIds = [];
that.storeGroupIds.forEach(ele => {
if (!!ele.hasOwnProperty('storeId')) {
storeIds.push(ele.storeId);
} else {
groupIds.push(ele.storeGroupId);
}
});
let para = {
startDate: that.choiceDate[0],
endDate: that.choiceDate[1],
storeIds: storeIds.join(','),
groupIds: groupIds.join(',')
};
let urlSource = `startDate=${para.startDate}&endDate=${para.endDate}&storeIds=${para.storeIds}&groupIds=${para.groupIds}`;
window.open(`${window.location.origin}/haoban-app-sign-web/sign/export-sign-list?${urlSource}`);
},
/**
* 日期
*/
changeDate(e) {
let that = this;
if (!e) {
that.choiceDateCopy = [];
that.choiceDate = [];
} else {
that.choiceDateCopy = JSON.parse(JSON.stringify(that.choiceDate));
}
},
/**
* 选择门店分组
*/
checkStoreGroupIds: function(nodes) {
let that = this;
that.storeGroupIds = nodes;
}
}
};
</script>
<style lang="less" scoped>
.sign-contain {
width: 100%;
padding-left: 100px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
.sign-content {
width: 100%;
padding: 20px;
.m-l-10 {
margin-left: 10px;
}
/* .item-cell-select {
&.m-l-10 {
margin-left: 0;
}
} */
}
}
</style>
@import './public.css';
.arrowico{
position: absolute;
transition: all .5s;
.icoposition(0px,25px);
}
.icoposition(@right: right,@top: top){
right: @right;
top: @top;
}
.user-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
/deep/ .el-input {
width: 260px;
}
}
.pass-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
}
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* custom */
a {
color: #7e8c8d;
text-decoration: none;
-webkit-backface-visibility: hidden;
}
a.a-href {
color: #606266;
}
a.a-href:hover {
color: #1890ff;
}
li {
list-style: none;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
/*background: #e4e7ed;*/
/*background-color: rgba(0, 0, 0, 0.1)*/
}
::-webkit-scrollbar-track {
/*background: #f5f7fa;*/
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
/*background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;*/
}
::-webkit-scrollbar-thumb {
background: #c0c4cc;
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.1)
}
@-moz-document url-prefix(http: //),url-prefix(https://) {
/* 滚动条颜色 */
scrollbar {
-moz-appearance: none !important;
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* 滚动条按钮颜色 */
thumb, scrollbarbutton {
-moz-appearance: none !important;
}
/* 鼠标悬停时按钮颜色 */
thumb:hover, scrollbarbutton:hover {
-moz-appearance: none !important;
}
/* 隐藏上下箭头 */
scrollbarbutton {
display: none !important;
}
/* 纵向滚动条宽度 */
scrollbar[orient="vertical"] {
/*min-width: 15px !important;*/
}
}
scrollbar {
/* clear useragent default style*/
-moz-appearance: none !important;
}
/* buttons at two ends */
scrollbarbutton {
-moz-appearance: none !important;
}
/* the sliding part*/
thumb {
-moz-appearance: none !important;
}
scrollcorner {
-moz-appearance: none !important;
resize: both;
}
/* vertical or horizontal */
scrollbar[orient="vertical"] {
color: silver;
}
-moz-scrollbar-track {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-face {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-arrow {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar {
-moz-scrollbar-width: 15px;
-moz-scrollbar-border: 1px solid black;
-moz-scrollbar-background-color: white;
-moz-scrollbar-track-background-color: silver;
-moz-scrollbar-arrow-background-color: silver;
-moz-scrollbar-arrow-color: blue;
}
/*::-webkit-scrollbar-button {
color: #c8cbd3;
}*/
html, body {
width: 100%;
min-height: 100%;
height: 100%;
/*background-color: #ffffff;*/
background-color: #f0f2f5;
}
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:focus {
box-shadow: none;
outline: none;
}
.btn-default {
color: #333;
border: 1px solid #ddd;
background-color: #f7f7f7;
cursor: pointer;
}
.btn {
font-size: 12px;
border-radius: 2px;
padding: 8px 16px;
height: 32px;
line-height: 14px;
}
.btn-new {
color: #333;
border: 1px solid #fede29;
background-color: #fede29;
}
/* 浮动 */
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before, .clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.text-right {
text-align: right;
}
.over-hide {
overflow: hidden;
}
/* 边距 */
.m-l-2 {
margin-left: 2px;
}
.m-l-4 {
margin-left: 4px;
}
.m-l-8 {
margin-left: 8px;
}
.m-l-16 {
margin-left: 16px;
}
.m-l-20 {
margin-left: 20px;
}
.m-l-220 {
margin-left: 220px;
}
.m-t-05 {
margin-top: -5px;
}
.m-t-10 {
margin-top: 10px;
}
.m-t-18 {
margin-top: 18px;
}
.m-t-20 {
margin-top: 20px;
}
.m-r-6 {
margin-right: 6px;
}
.m-r-8 {
margin-right: 8px;
}
.m-r-10 {
margin-right: 10px;
}
.m-r-20 {
margin-right: 20px;
}
.m-b-20 {
margin-bottom: 20px;
}
.m-b-26 {
margin-bottom: 26px;
}
.p-20 {
padding: 20px;
}
.p-lr-4 {
padding: 0 4px;
}
.p-lr-18 {
padding: 0 18px;
}
.p-l-8 {
padding-left: 8px;
}
.p-l-10 {
padding-left: 10px;
}
.p-l-20 {
padding-left: 20px;
}
.p-l-32 {
padding-left: 32px;
}
.p-l-36 {
padding-left: 36px;
}
.p-r-8 {
padding-right: 8px;
}
.p-r-12 {
padding-right: 12px;
}
.p-r-20 {
padding-right: 20px;
}
.w_100 {
width: 100%;
}
.w-86 {
width: 86px;
}
.w-90 {
width: 90px;
}
.w-98 {
width: 98px;
}
.w-180 {
width: 180px;
}
.w-182 {
width: 182px;
}
.w-184 {
width: 184px;
}
.w-200 {
width: 200px;
}
.w200 {
width: 200px;
}
.w-220 {
width: 220px;
}
.w-223 {
width: 223px;
}
.w-243 {
width: 243px;
}
.w-290 {
width: 290px;
}
.w-309 {
width: 309px;
}
.w-329 {
width: 329px;
}
.w-375 {
width: 375px;
}
.w-427 {
width: 427px;
}
.w-485 {
width: 485px;
}
.w-536 {
width: 536px;
}
.w-548 {
width: 548px;
}
.border-box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* border */
.border-l-dcdfe6 {
border-left: 1px solid #dcdfe6;
}
/* display */
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.top {
vertical-align: top;
}
.middle {
vertical-align: middle;
}
/* flex */
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-row {
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
.flex-align-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-pack-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex-wrap {
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
.dialog-footer {
font-size: 0;
/*height: 35px;*/
}
.font-0 .el-form-item__content {
font-size: 0;
}
/* 字号 */
i {
font-style: normal;
font-weight: normal;
}
.font-10 {
font-size: 10px;
}
.font-12 {
font-size: 12px;
}
.font-14 {
font-size: 14px;
}
.font-18 {
font-size: 18px;
}
.pointer {
cursor: pointer;
}
/* 颜色 */
.color-blue {
color: #1890ff;
}
.color-303133 {
color: #303133;
}
.color-909399 {
color: #909399;
}
.color-c0c4cc {
color: #c0c4cc;
}
.color-606266 {
color: #606266;
}
.pagewrap {
margin: 20px 0;
text-align: right;
}
.dialogwrap {
position: relative;
}
.dialogwrap:before {
position: absolute;
left: -20px;
top: -20px;
right: -20px;
content: '';
border-bottom: 1px solid #dedede;
}
.dialogcontent {
padding: 0 10px;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: rgb(250, 255, 189);
/* #FAFFBD; */
background-image: none;
color: rgb(0, 0, 0);
}
.el-table th {
background: #f1f3f7 !important;
}
.slide-fade-enter-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-leave-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to {
opacity: 0;
}
/* 新加*/
#app, #index, #content {
position: relative;
height: 100%;
}
/* table 的表头 -- 背景色 */
.el-table thead tr, .el-table thead th {
background: #f1f3f7;
}
/* 面包屑 */
.breadcrumb {
padding: 24px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 -1px 10px #dfdfdf;
}
.breadcrumb .breadcrumb-title {
margin: 30px 0 10px 0;
font-size: 20px;
}
/*有侧边栏的 右侧 */
.content-wrap {
height: 100%;
display: flex;
}
.content-wrap .right-wrap {
width: 100%;
box-sizing: border-box;
height: 100%;
overflow-y: auto;
}
.content-wrap .right-wrap .right-content {
padding: 24px;
}
.content-wrap .right-wrap .right-content .right-box {
background: #fff;
padding: 24px;
}
/* 无侧边栏的底部 */
.bottom-wrap {
padding: 24px;
color: #606266;
font-size: 14px;
}
.bottom-content-wrap {
/*background: #fff;
padding: 24px;*/
}
/*提示文字*/
.tip-text {
font-size: 12px;
color: #909399;
position: absolute;
bottom: -30px;
}
.el-form .el-form-item.is-success .el-input__inner, .el-form .el-form-item.is-success .el-input__inner:focus, .el-form .el-form-item.is-success .el-textarea__inner, .el-form .el-form-item.is-success .el-textarea__inner:focus {
border-color: #dcdfe6;
}
/* 开卡模板 */
.template-cell-r .el-input.is-disabled .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255, 255, 255, .1);
}
.el-button--text.m-l-10 {
margin-left: 10px;
}
.task-public .el-tabs .el-tabs__header {
margin: 0;
padding-left: 24px;
border-bottom: 1px solid #e4e7ed;
background: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 头部 */
.user-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.user-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
.pass-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.pass-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
/* 左侧菜单 */
.leftBar-wrap .el-menu {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item .el-submenu__title, .leftBar-wrap .cardmenu-item .el-menu-item, .leftBar-wrap .cardmenu-item .el-submenu .el-menu-item {
height: 40px;
line-height: 40px;
}
.leftBar-wrap .el-submenu__title:hover {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu .el-menu-item:hover label {
/*background-color: #1890ff;*/
color: #fff;
cursor: pointer;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title i {
color: #fff;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title span {
color: #fff;
}
.el-menu.el-menu--popup .el-menu-item.is-active label {
color: #fff;
}
/* 百分号 */
.percent-item .el-input-group__append {
padding: 0 12px;
}
/* table lable*/
.table-label .el-form-item__label {
line-height: 48px;
}
.el-table th .cell {
/*color: #909399;*/
font-size: 14px;
}
#index .el-table__empty-block {
height: 256px;
}
.common-wrap__table .el-table__empty-text {
margin-bottom: 40px;
}
.common-wrap__fix__table .el-table__empty-text {
margin-bottom: 40px;
}
/* 会员标签 */
.common-lib__cell__fieldName::before {
content: '';
width: 0px;
height: 10px;
position: absolute;
top: 1px;
right: 0;
border-right: 1px solid #C0C4CC;
}
.common-lib__cell__fieldName:last-child::before {
content: '';
width: 0px;
height: 10px;
position: absolute;
top: 1px;
right: 0;
border-right: 0px solid #C0C4CC;
}
/* 标签库通用 */
.right-box .common-wrap__opt {}
.common-libFields {
min-width: 1104px;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 22px;
overflow: hidden;
}
.common-libFields .common-lib__cell {
position: relative;
margin-bottom: 30px;
min-width: 522px;
max-width: calc(50% - 15px);
border: 1px solid rgba(220, 223, 230, 1);
border-radius: 3px;
}
.common-libFields .common-lib__cell.border-primary-color {
border-color: #1890ff;
}
.common-libFields .common-lib__cell:nth-child(2n+1) {
margin-right: 30px;
}
.common-libFields .common-lib__cell__head {
width: 100%;
height: 46px;
line-height: 46px;
padding: 0 24px;
background: #EBEEF5;
border-radius: 3px 3px 0 0;
}
.common-libFields .common-lib__cell__icon {
padding-right: 8px;
color: #909399;
font-size: 20px;
}
.common-libFields .common-lib__icon__right {
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: #C0C4CC;
}
.common-libFields .common-lib__cell__name {
font-size: 14px;
color: #606266;
}
.common-libFields .common-lib__cell__body {
padding: 17px 20px;
}
.common-libFields .common-lib__cell__fieldRow {
padding: 13px 0;
font-size: 0;
}
.common-libFields .common-lib__cell__fieldChild {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-libFields .common-lib__cell__fieldChild i {
font-weight: normal;
color: #C0C4CC;
font-size: 14px;
padding-left: 6px;
}
.common-libFields .common-lib__cell__fieldChild .common-lib__cell__name {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-libFields .common-lib__cell__fieldChild .common-lib__cell__name:hover {
color: #1890ff;
}
.common-libFields .common-lib__cell__fieldLastChild {
width: calc(100% - 80px);
max-width: 500px;
vertical-align: top;
font-size: 14px;
max-height: 65px;
overflow: hidden;
}
.common-libFields .common-lib__cell__fieldName {
position: relative;
margin-bottom: 10px;
padding: 0px 12px;
height: 12px;
/*line-height: 12px;*/
font-size: 13px;
color: #606266;
}
.common-libFields .common-lib__cell__radio {
position: absolute;
bottom: 0px;
right: 0px;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.common-libFields .common-lib__cell__radio .el-radio {
width: 50px;
height: 50px;
line-height: 50px;
}
.common-libFields .common-lib__cell__radio .el-radio__label {
display: none;
}
/* 通用标签列表 面包屑头部标签 */
.common-wrap__cateTags {
position: relative;
width: 100%;
height: 45px;
margin-bottom: 20px;
border-bottom: 1px solid #EBEEF5;
}
.common-wrap__cateTags .common-wrap__currentTag {
white-space: nowrap;
font-size: 0;
color: #303133;
}
.common-wrap__currentTag .common-wrap__currentTag__name {
font-size: 14px;
color: #303133;
font-weight: 700;
}
.common-wrap__currentTag i {
font-size: 14px;
color: #909399;
}
.common-wrap__cateTags .common-wrap__childTag {
/*max-width: calc(100% - 280px);*/
vertical-align: middle;
margin-left: 8px;
padding-left: 10px;
font-size: 14px;
color: #606266;
border-left: 1px solid #979797;
white-space: nowrap;
/*overflow: hidden;*/
/*text-overflow: ellipsis;*/
}
.common-wrap__childTag .common-wrap__childTag__name {
margin-right: 10px;
padding: 2px 5px;
font-size: 14px;
color: #606266;
background: #F0F2F5;
border-radius: 2px;
}
.common-wrap__moreTag__body {
/*position: absolute;
top: 20px;
right: -10px;
min-width: 500px;
max-width: 1049px;
padding: 24px 12px 14px 22px;
background: #FFFFFF;
border: 1px solid rgba(235,238,245,1);
-webkit-box-shadow: 0px 2px 12px 0px rgba(6,19,33,0.10);
box-shadow: 0px 2px 12px 0px rgba(6,19,33,0.10);
z-index: 1;*/
}
.el-popover .common-wrap__childTag__name {
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
padding: 2px 5px;
font-size: 14px;
color: #606266;
background: #F0F2F5;
border-radius: 2px;
}
/* 分页 */
.common-wrap__page {
padding: 24px 0 30px 0;
}
.common-wrap__page .el-input {
font-size: 12px;
}
.common-wrap__page .el-input__inner {
height: 28px;
line-height: 28px;
}
/* 公共底部固定部分 */
.common-wrap__fix {
position: fixed;
right: 0;
bottom: 0;
width: 706px;
height: 70px;
background: #04143A;
font-size: 16px;
color: #fff;
z-index: 2;
}
.common-wrap__fix__div {
position: relative;
width: 100%;
z-index: 2;
}
.common-wrap__fix__div .common-wrap__fix__showSection {
position: relative;
width: 100%;
line-height: 70px;
background: #04143A;
z-index: 2;
}
.common-wrap__fix__showSection .common-wrap__fix__left {
display: inline-block;
width: 528px;
cursor: pointer;
}
.common-wrap__fix__left i {
vertical-align: top;
padding: 0 15px;
font-size: 27px;
color: rgba(255, 255, 255, 0.70);
}
.common-wrap__fix__left span {
position: relative;
vertical-align: top;
padding-left: 15px;
}
.common-wrap__fix__left span::before {
content: '';
position: absolute;
top: 26px;
left: 0;
width: 0;
height: 20px;
border-left: 1px solid #243969;
}
.common-wrap__fix__left span i {
padding: 0 4px;
font-weight: normal;
font-size: 22px;
color: #fff;
}
.common-wrap__fix__showSection .el-button {
width: 178px;
height: 70px;
padding: 0;
line-height: 70px;
border-radius: 0;
font-size: 16px;
}
.common-wrap__fix__hideList {
position: absolute;
bottom: 70px;
left: 0;
right: 0;
height: 352px;
padding: 24px 22px;
background: #fff;
-webkit-box-shadow: -3px -3px 10px 0px rgba(198, 198, 198, 0.50);
box-shadow: -3px -3px 10px 0px rgba(198, 198, 198, 0.50);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
}
.common-wrap__fix__hideList.hide {
bottom: -404px;
}
.common-wrap__fix__hideList .common-wrap__fix__title {
width: 100%;
margin-bottom: 20px;
font-size: 18px;
color: #303133;
}
.common-wrap__fix__hideList .common-wrap__fix__table {
width: 100%;
height: 333px;
}
/* 分类小版 */
.cate-dialog .el-dialog__body {
padding: 20px 20px 24px 20px;
}
.cate-dialog .el-form-item__label {
color: #606266;
}
.cate-dialog .el-table__body {
color: #606266;
}
.addTag-tab-wrap table tr td {
overflow: hidden;
}
/* 标签详情各个组件 */
.tagShort-dialog .el-dialog__headerbtn {
top: 28px;
}
.tagShort-dialog .el-dialog__body {
/*padding: 0 20px 30px 20px;*/
}
.tagShort-dialog .el-dialog__footer {
/*border-top: none;
border-top: 0px;*/
}
/* 选项 (固化值)*/
.checkboxOption-wrap {
width: 100%;
}
.checkboxOption-wrap__head {
width: 100%;
padding-bottom: 24px;
border-bottom: 1px solid #DCDFE6;
}
.checkboxOption-wrap__head .checkboxOption-wrap__head__title {
width: 100%;
margin-bottom: 30px;
font-size: 16px;
color: #303133;
font-weight: 500;
}
.checkboxOption-wrap__head .realtime-span {
padding: 3px 4px;
font-size: 11px;
color: #fff;
border-radius: 4px;
background: #1890ff;
}
.checkboxOption-wrap__head .checkboxOption-wrap__head__describe {
width: 100%;
font-size: 14px;
color: #606266;
line-height: 20px;
white-space: pre-wrap;
word-break: break-all;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__title {
width: 100%;
height: 74px;
line-height: 74px;
font-weight: 500;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__checkAll {
width: 100%;
height: 50px;
line-height: 50px;
padding-left: 10px;
background: #F1F3F7;
}
.checkboxOption-wrap__body .checkboxOption-wrap__body__options {
padding-left: 10px;
}
.checkboxOption-wrap__body .el-checkbox-group {
line-height: 60px;
}
.add-search-select .el-select span {
display: none;
-webkit-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
}
.city-select-wrap .el-tabs__content {
overflow: unset;
}
.el-date-editor .el-range__close-icon {
line-height: 27px;
}
.manualTagEdit-wrap__form .input-label {
position: absolute;
right: 10px;
top: 2px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__set .input-label {
position: absolute;
right: 60px;
top: 10px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__form .textarea-label {
position: absolute;
right: 10px;
top: 65px;
font-size: 12px;
color: #909399;
}
.manualTagEdit-wrap__form .el-textarea__inner {
resize: none;
height: 96px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
}
.memberGroupEdit-wrap__body .el-textarea__inner {
resize: none;
height: 96px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
}
/* 会员信息 */
.singelinfo {
justify-content: flex-start
}
.singelinfo-img {
flex: 0 0 100px;
}
.singelinfo-wrap {
display: flex;
flex-direction: column;
}
.singelinfo-content {
padding: 0 10px;
}
.singelinfo-item {
line-height: 0;
}
.singelinfo-jl {
align-items: center;
justify-content: center;
margin: 20px 0;
}
.singelinfo-jlitem {
text-align: center;
}
.singelinfo-cost {
text-align: center;
}
.lheigth0 {
color: #303133;
margin: 5px 0;
}
.lheigth0 span {
color: #606266;
}
.evl-right {
margin-right: 5px;
}
.singelinfo-costitem p {
margin: 5px 0;
}
/* 暂存架 */
.name-hover:hover {
color: #1890ff;
}
\ No newline at end of file
@base-color: #353944;
@hover-color: #3c92eb;
@hoverbg-color: #20242d;
@main-color: #1890ff;
@navbgcolor: #04143a;
@sidebgcolor: #343c4c;
@userinfobgcolor: #ecf5ff;
@contentbgcolor: #f5f7fa;
@bordercolor: #dcdfe6;
@customnavcolor: #04143a;
@btnbgcolor: #f5f7fa;
@iconbgcolor: #e6e9f2;
.flex1(@width,@height) {
flex: 0 0 @width;
width: @width;
height: @height;
}
export const baseList = [
{
type: 'one',
name: '图片广告',
template: '1',
isSpace: 'Y',
imgList: [
{
imgUrl: '',
imglink: '',
crowd: ''
}
],
linkUrl: ''
},
{
type: 'two',
name: '魔方',
template: '1',
isSpace: 'Y',
imgList: [
{
imgUrl: '',
imglink: '',
crowd: ''
}
],
crowd: {
type: 'Y',
condition: ''
},
linkUrl: ''
},
{
type: 'three',
name: '文本',
content: '',
textcolor: '#333',
bgcolor: '#fff',
showPosition: '',
isSpace: 'Y',
crowd: {
type: 'Y',
condition: ''
}
},
{
type: 'four',
name: '横栏',
template: 'one',
tip: 'true',
textcolor: '#333',
bgcolor: '#fff',
imgList: [
{
label: '',
imgUrl: '',
linkUrl: '',
crowd: {
type: 'Y',
condition: ''
}
}
]
},
{
type: 'five',
name: '辅助线',
color: '#333',
margin: '10px',
style: 'solid'
},
{
type: 'six',
name: '辅助空白',
height: '10'
}
];
export const mainList = [
{
name:"进入积分", id: 1
},
{
name:"数据icon", id: 2
},
{
name:"卡券兑换", id: 3
},
{
name:"礼品兑换", id: 4
},
{
name:"订单分组", id: 5
}
];
export const mallList = [
{
name:"商品", id: 1
},
{
name:"商品分组", id: 2
},
{
name:"商品搜索", id: 3
}
];
export const saleList = [
{
name:"优惠券", id: 1
},
{
name:"拼团", id: 2
},
{
name:"周期购", id: 3
},
{
name:"限时折扣", id: 4
},
{
name:"秒杀", id: 5
},
{
name:"预售", id: 6
}
];
import { Message } from 'element-ui'
export function checkFalse(message) {
if(message) {
Message.warning(message);
return false
}else{
Message.warning('操作失败');
}
return false;
}
export function checkSuccess(message) {
if(message) {
Message.success(message);
}else{
Message.success('操作成功');
}
}
export function checkStatus(err) {
if(err == 'cancel') {
Message.info(err || 'cancel');
return false;
}else if(err.hasOwnProperty('response')){
if(err.response.status == 401) {
Message.error('登录过期');
return false;
}else if(err.response.status == 500){
Message.error('服务器错误500');
return false;
}
}else {
Message.error(err);
return false;
}
}
/*设置cookie*/
export function setCookie(c_name,value,expire) {
var date=new Date();
date.setSeconds(date.getSeconds()+expire);
document.cookie = c_name + "="+ encodeURI(value)+"; expires="+date.toGMTString();
}
/*获取cookie*/
export function getCookie(c_name){
if(document.cookie.length>0){
var name = encodeURI(c_name);
var allcookies = document.cookie;
name += "=";
var pos = allcookies.indexOf(name);
if(pos != -1){
var start = pos + name.length;
var end = allcookies.indexOf(";",start);
if(end == -1){
end = allcookies.length;
}
var value = allcookies.substring(start,end);
return decodeURI(value);
} else{
return "";
}
}
}
/*删除cookie*/
export function delCookie(c_name){
setCookie(c_name, "", -1);
}
(function () {
function CanvasAnimate(Dom,options){
options = options || {};
this.Element = Dom;
this.cvs = Dom.getContext("2d");
this.off_cvs = document.createElement("canvas");
this.off_cvs.width = Dom.width;
this.off_cvs.height = Dom.height;
this.Dom = this.off_cvs.getContext("2d");
this.width = Dom.width;
this.height = Dom.height;
this.length = options.length || 100;
this.RoundColor = options.RoundColor || "#999";
this.RoundDiameter = options.RoundDiameter || 2;
this.LineColor = options.LineColor || "#ccc";
this.LineWeight = options.LineWeight || 1;
this.clicked = options.clicked || false;
this.moveon = options.moveon || false;
this.list = [];
this.paused = true
}
CanvasAnimate.prototype.Run = function(){
if( this.clicked ){
this.Element.addEventListener( "click",this.Clicked.bind(this) )
}
if( this.moveon ){
this.Element.addEventListener( "mousemove",this.moveXY.bind(this) );
this.Element.addEventListener( "mouseout",this.moveoutXY.bind(this) )
}
this.Draw( this.getLength() )
};
CanvasAnimate.prototype.getLength=function(){
let arr = [];
for(let i=0;i< this.length ;i++){
let obj = {};
obj.x = parseInt( Math.random() * this.width );
obj.y = parseInt( Math.random() * this.height );
obj.r = parseInt( Math.random()*2 );
obj.controlX = parseInt( Math.random()*10 ) > 5 ? "left":"right";
obj.controlY = parseInt( Math.random()*10 ) > 5 ? "bottom":"top";
arr.push(obj)
}
return arr
};
CanvasAnimate.prototype.Draw = function(list){
let new_arr = [];
let line_arr = [];
list.map((item,index)=>{
let xy = this.ControlXY(item);
let obj = this.ControlRound(xy);
new_arr.push( obj )
});
new_arr.map((item1,index1)=>{
new_arr.map((item2,index2)=>{
if(item1 !== item2){
let x = item1.x - item2.x;
let y = item1.y - item2.y;
if( Math.abs(x)< 100 && Math.abs(y)<100 ){
let obj = {
x1:item1.x,
y1:item1.y,
x2:item2.x,
y2:item2.y,
};
line_arr.push(obj)
}
}
})
});
this.drawLine(line_arr);
new_arr.map((item)=>{
this.drawRound(item)
});
this.list = new_arr;
this.cvs.drawImage(this.off_cvs,0,0,this.width,this.height);
setTimeout(()=>{
if(this.paused){
this.next()
}
},60)
};
CanvasAnimate.prototype.next = function(){
this.cvs.clearRect( 0,0,this.width,this.height );
this.Dom.clearRect( 0,0,this.width,this.height );
this.Draw( this.list )
};
CanvasAnimate.prototype.drawRound = function(obj){
let {x,y,r} = obj;
this.Dom.beginPath();
this.Dom.arc( x,y,r, 0, 2*Math.PI );
this.Dom.fillStyle = this.RoundColor;
this.Dom.fill();
this.Dom.closePath()
};
CanvasAnimate.prototype.drawLine = function(list){
list.map( (item)=>{
this.Dom.beginPath();
this.Dom.moveTo( item.x1,item.y1 );
this.Dom.lineTo( item.x2,item.y2 );
this.Dom.lineWidth = this.LineWeight;
this.Dom.strokeStyle = this.LineColor;
this.Dom.stroke();
this.Dom.closePath();
})
};
CanvasAnimate.prototype.ControlXY = function(obj){
if(obj.x >= (this.width - obj.r) ){
obj.controlX = 'left'
}else if( obj.x <= parseInt(obj.r/2) ){
obj.controlX = "right"
}
if( obj.y >= (this.height - obj.r) ){
obj.controlY = "bottom"
}else if( obj.y <= parseInt(obj.r/2) ){
obj.controlY = "top"
}
return obj
}
CanvasAnimate.prototype.ControlRound = function(obj){
switch(obj.controlX){
case "right":
obj.x++;
break;
case "left":
obj.x--;
break;
}
switch(obj.controlY){
case "top":
obj.y++;
break;
case "bottom":
obj.y--;
break;
}
return obj
};
CanvasAnimate.prototype.Clicked = function(event){
let obj = {};
obj.x = event.clientX;
obj.y = event.clientY;
obj.r = parseInt( Math.random()*10 );
obj.controlX = parseInt( Math.random()*10 ) > 5 ? 'left' :'right';
obj.controlY = parseInt( Math.random()*10 ) > 5 ? 'bottom' :'top';
this.list.push(obj)
};
CanvasAnimate.prototype.moveXY = function(event){
let obj = {};
obj.x = event.clientX;
obj.y = event.clientY;
obj.r = 0;
obj.move = true;
if( this.list[0]["move"] ){
this.list[0]["x"] = obj.x;
this.list[0]["y"] = obj.y;
this.list[0]["r"] = 1
}else{
this.list.unshift(obj)
}
};
CanvasAnimate.prototype.moveoutXY = function(event){
this.list.shift()
};
CanvasAnimate.prototype.pause = function(){
this.paused = !this.paused;
if( this.paused){
this.Draw(this.list)
}
};
window.LoginAnimate = CanvasAnimate;
})();
This source diff could not be displayed because it is too large. You can view the blob instead.
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