Full Code of fantasykai/vue-admin-manager for AI

master 985096c77cdf cached
239 files
2.0 MB
545.2k tokens
1269 symbols
1 requests
Download .txt
Showing preview only (2,208K chars total). Download the full file or copy to clipboard to get everything.
Repository: fantasykai/vue-admin-manager
Branch: master
Commit: 985096c77cdf
Files: 239
Total size: 2.0 MB

Directory structure:
gitextract_xwlge5m5/

├── .babelrc
├── .editorconfig
├── .gitignore
├── .postcssrc.js
├── README.md
├── build/
│   ├── build.js
│   ├── check-versions.js
│   ├── dev-client.js
│   ├── dev-server.js
│   ├── utils.js
│   ├── vendor-manifest.json
│   ├── vue-loader.conf.js
│   ├── webpack.base.conf.js
│   ├── webpack.dev.conf.js
│   ├── webpack.dll.conf.js
│   └── webpack.prod.conf.js
├── config/
│   ├── dev.env.js
│   ├── index.js
│   ├── prod.env.js
│   └── sit.env.js
├── index.html
├── package.json
├── src/
│   ├── App.vue
│   ├── api/
│   │   ├── aggregate.js
│   │   ├── index.js
│   │   ├── manage.js
│   │   ├── messages.js
│   │   ├── sts.js
│   │   ├── users.js
│   │   └── userstats.js
│   ├── assets/
│   │   ├── iconfont/
│   │   │   └── iconfont.js
│   │   └── theme/
│   │       ├── theme-darkblue/
│   │       │   ├── alert.css
│   │       │   ├── autocomplete.css
│   │       │   ├── badge.css
│   │       │   ├── base.css
│   │       │   ├── breadcrumb-item.css
│   │       │   ├── breadcrumb.css
│   │       │   ├── button-group.css
│   │       │   ├── button.css
│   │       │   ├── card.css
│   │       │   ├── carousel-item.css
│   │       │   ├── carousel.css
│   │       │   ├── cascader.css
│   │       │   ├── checkbox-group.css
│   │       │   ├── checkbox.css
│   │       │   ├── col.css
│   │       │   ├── collapse-item.css
│   │       │   ├── collapse.css
│   │       │   ├── color-picker.css
│   │       │   ├── date-picker.css
│   │       │   ├── dialog.css
│   │       │   ├── dropdown-item.css
│   │       │   ├── dropdown-menu.css
│   │       │   ├── dropdown.css
│   │       │   ├── form-item.css
│   │       │   ├── form.css
│   │       │   ├── icon.css
│   │       │   ├── index.css
│   │       │   ├── input-number.css
│   │       │   ├── input.css
│   │       │   ├── loading.css
│   │       │   ├── menu-item-group.css
│   │       │   ├── menu-item.css
│   │       │   ├── menu.css
│   │       │   ├── message-box.css
│   │       │   ├── message.css
│   │       │   ├── notification.css
│   │       │   ├── option-group.css
│   │       │   ├── option.css
│   │       │   ├── pagination.css
│   │       │   ├── popover.css
│   │       │   ├── progress.css
│   │       │   ├── radio-button.css
│   │       │   ├── radio-group.css
│   │       │   ├── radio.css
│   │       │   ├── rate.css
│   │       │   ├── reset.css
│   │       │   ├── row.css
│   │       │   ├── scrollbar.css
│   │       │   ├── select-dropdown.css
│   │       │   ├── select.css
│   │       │   ├── slider.css
│   │       │   ├── spinner.css
│   │       │   ├── step.css
│   │       │   ├── steps.css
│   │       │   ├── submenu.css
│   │       │   ├── switch.css
│   │       │   ├── tab-pane.css
│   │       │   ├── table-column.css
│   │       │   ├── table.css
│   │       │   ├── tabs.css
│   │       │   ├── tag.css
│   │       │   ├── time-picker.css
│   │       │   ├── time-select.css
│   │       │   ├── tooltip.css
│   │       │   ├── tree.css
│   │       │   └── upload.css
│   │       └── theme-green/
│   │           ├── alert.css
│   │           ├── autocomplete.css
│   │           ├── badge.css
│   │           ├── base.css
│   │           ├── breadcrumb-item.css
│   │           ├── breadcrumb.css
│   │           ├── button-group.css
│   │           ├── button.css
│   │           ├── card.css
│   │           ├── carousel-item.css
│   │           ├── carousel.css
│   │           ├── cascader.css
│   │           ├── checkbox-group.css
│   │           ├── checkbox.css
│   │           ├── col.css
│   │           ├── collapse-item.css
│   │           ├── collapse.css
│   │           ├── color-picker.css
│   │           ├── date-picker.css
│   │           ├── dialog.css
│   │           ├── dropdown-item.css
│   │           ├── dropdown-menu.css
│   │           ├── dropdown.css
│   │           ├── form-item.css
│   │           ├── form.css
│   │           ├── icon.css
│   │           ├── index.css
│   │           ├── input-number.css
│   │           ├── input.css
│   │           ├── loading.css
│   │           ├── menu-item-group.css
│   │           ├── menu-item.css
│   │           ├── menu.css
│   │           ├── message-box.css
│   │           ├── message.css
│   │           ├── notification.css
│   │           ├── option-group.css
│   │           ├── option.css
│   │           ├── pagination.css
│   │           ├── popover.css
│   │           ├── progress.css
│   │           ├── radio-button.css
│   │           ├── radio-group.css
│   │           ├── radio.css
│   │           ├── rate.css
│   │           ├── reset.css
│   │           ├── row.css
│   │           ├── scrollbar.css
│   │           ├── select-dropdown.css
│   │           ├── select.css
│   │           ├── slider.css
│   │           ├── spinner.css
│   │           ├── step.css
│   │           ├── steps.css
│   │           ├── submenu.css
│   │           ├── switch.css
│   │           ├── tab-pane.css
│   │           ├── table-column.css
│   │           ├── table.css
│   │           ├── tabs.css
│   │           ├── tag.css
│   │           ├── time-picker.css
│   │           ├── time-select.css
│   │           ├── tooltip.css
│   │           ├── tree.css
│   │           └── upload.css
│   ├── components/
│   │   ├── common/
│   │   │   ├── HomeMenu.vue
│   │   │   ├── Icon-svg/
│   │   │   │   └── index.vue
│   │   │   ├── ShowVideo.vue
│   │   │   └── error/
│   │   │       ├── 401.vue
│   │   │       └── 404.vue
│   │   └── page/
│   │       ├── Login.vue
│   │       ├── dashboard/
│   │       │   ├── Dashboard.vue
│   │       │   ├── HelloSys.vue
│   │       │   └── index.vue
│   │       ├── friends/
│   │       │   ├── FriendRows.vue
│   │       │   ├── FriendsInRow.vue
│   │       │   ├── FriendsManage.vue
│   │       │   ├── UserRelationInfo.vue
│   │       │   └── stat/
│   │       │       └── FrisNumCycleCharts.vue
│   │       ├── msg/
│   │       │   └── stat/
│   │       │       └── MsgNumCycleCharts.vue
│   │       ├── operation/
│   │       │   ├── AnchorMsgMass.vue
│   │       │   ├── AutoReplyCfg.vue
│   │       │   ├── AutoReplyCfgList.vue
│   │       │   └── OperatingAccountManage.vue
│   │       ├── uploadOSS/
│   │       │   └── UploadOSS.vue
│   │       ├── userDataStat/
│   │       │   ├── GeoUserNumCityRanked.vue
│   │       │   ├── LoggedUserNumCycleCharts.vue
│   │       │   └── UserNumCycleCharts.vue
│   │       └── userManage/
│   │           └── UserManage.vue
│   ├── config/
│   │   └── index.js
│   ├── filters/
│   │   └── index.js
│   ├── main.js
│   ├── mock/
│   │   ├── data/
│   │   │   ├── dashboard.js
│   │   │   ├── msgData.js
│   │   │   ├── ststoken.js
│   │   │   ├── trendData.js
│   │   │   └── users.js
│   │   ├── index.js
│   │   └── mock.js
│   ├── routes.js
│   ├── store/
│   │   ├── actions.js
│   │   ├── getters.js
│   │   ├── index.js
│   │   ├── modules/
│   │   │   ├── permission.js
│   │   │   └── user.js
│   │   ├── mutations.js
│   │   └── state.js
│   ├── styles/
│   │   └── vars.scss
│   ├── utils/
│   │   ├── fetch.js
│   │   └── index.js
│   └── vendor/
│       ├── Blob.js
│       └── Export2Excel.js
└── static/
    ├── .gitkeep
    ├── channelCode.json
    ├── css/
    │   ├── color-dark.css
    │   ├── datasource.css
    │   ├── main.css
    │   └── theme-green/
    │       ├── color-green.css
    │       └── index.css
    ├── data.json
    ├── errCodeCN.json
    ├── js/
    │   └── vendor.dll.js
    ├── map/
    │   └── china.json
    └── requestList/
        ├── activeAppVersion.json
        ├── activeDevType.json
        ├── activePhoneBrand.json
        ├── activePhoneModel.json
        ├── appVersion.json
        ├── channel.json
        ├── cycleFrisNum.json
        ├── cycleLoggedUserNum.json
        ├── cycleMsgNum.json
        ├── cycleUserNum.json
        ├── devType.json
        ├── formatTest.json
        ├── friendNumsRanked.json
        ├── phoneBrand.json
        ├── phoneModel.json
        ├── sendMsgCount.json
        ├── sendMsgNumsRanked.json
        └── userNumByGeo.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .babelrc
================================================
{
  "presets": [
    ["env", { "modules": false }],
    "stage-2"
  ],
  "plugins": ["transform-runtime"],
  "comments": false,
  "env": {
    "test": {
      "presets": ["env", "stage-2"],
      "plugins": [ "istanbul" ]
    }
  }
}


================================================
FILE: .editorconfig
================================================
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true


================================================
FILE: .gitignore
================================================
.DS_Store
node_modules/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
package-lock.js
package-lock.json


================================================
FILE: .postcssrc.js
================================================
// https://github.com/michael-ciniawsky/postcss-load-config

module.exports = {
  "plugins": {
    // to edit target browsers: use "browserlist" field in package.json
    "autoprefixer": {}
  }
}


================================================
FILE: README.md
================================================
有同学反馈 启动报错,应该是npm 依赖的问题

我的版本信息附上,供参考,但以上版本应该都支持

- npm 5.4.1
- node v8.4.0
- vue  大于 2.4.4
- vue-echarts-v3 的版本要注意下,之前开发时就发现不同的版本,引入的玩法会变
---
更新:

主分支master 更新为动态加载菜单:

根据用户的权限,动态分配加载菜单,主要通过使用addRoutes,meta,等特性实现


---

# DEMO

展示数据通过mock.js 构造

[Demo 地址](https://fantasykai.github.io/vue-admin-manager)

# vue-admin-manager

> 后端研发一枚,初创公司,目前没有web端开发,逐步需要做运维,运营的页面,想要快速开展工作,

> 就去了解了下目前比较火的,react 、vue 、angular,对比之后,感觉目前vue是最合适的,

> 去官网熟悉了一下,写了几个demo,就开始做这个后台,借鉴很多github上的优秀作品,自己也

> 输出一下,也方便自己回顾

# 简介

项目为SPA,前后端分离,前端使用vue-cli构建,认证使用JWT,后端数据库为mongodb,后端提供

restful接口,统计功能非常方便,在前端封装好aggregate,mapReduce,条件,

类似于前端组装好查询条件,后端直接吐对应的结果。

## 项目架构

![](static/img/jiagou.png)

## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# 发布测试环境 包含 webpack ananalyzer
npm run build:sit-preview

# 构建生成环境
npm run build:prod

```

## 目录结构
```shell
├── build                      // 构建相关  
├── config                     // 配置相关
├── src                        // 源代码
│   ├── api                    // 所有请求
│   ├── assets                 // 主题 字体等静态资源
│   ├── components             // 全局公用组件(及页面)
│   ├── config                 // 配置项
│   ├── directive              // 全局指令
│   ├── filtres                // 全局filter
│   ├── mock                   // mock数据
│   ├── router                 // 路由
│   ├── store                  // 全局store管理
│   ├── styles                 // 全局样式
│   ├── utils                  // 全局公用方法
│   ├── App.vue                // 入口页面
│   └── main.js                // 入口 加载组件 初始化等
├── static                     // 第三方不打包资源
├── .babelrc                   // babel-loader 配置
├── .editorconfig              // 代码风格文件,前提是要你的编辑器支持
├── .gitignore                 // 用于Git配置不需要加入版本管理的文件
├── .postcssrc.js              // autoprefixer的配置文件
└── package.json               // 项目依赖管理

```

## 技术栈

- axios
- element-ui
- moment 日期处理
- vue2X、vue-router、vuex

### 工具集

- vue-datasource
- vue-echarts-v3
- vue-quill-editor
- vue-simplemde
- vue-video-player

### UI方案

#### UI

- element-ui
- bootstrap(AdminLTE)

#### 扩展图标

- font-awesome
- ionicons

### 项目模块

- [x] 登录认证(目前基于JWT,)todo 支持Oauth2,支持第三方登录

- [x] 应用概况 Dashboard 各种图标统计

- [x] 数据趋势:注册用户,活跃用户,用户关系,等

- [x] 用户管理 目前只做了查询

- [x] 数据维护 支持视频,图片的查看

### TODO

- [x] 已完成 折叠导航栏

- [x] 已完成 登录获取用户昵称

- [x] 已完成 统计图标抽取

- [x] 已完成 接入阿里云OSS,STS(临时认证服务)

- [x] 已完成 支持视频播放

- [x]  vuex状态管理 (目前只记录了用户token信息)

- []  Dashboard中的echart图标,组件化重构 (第一次使用时,写的,代码比较冗余,后续拆成组件)

- [x]  404页面组件(目前空白),考虑使用自己博客上的腾讯公益

- []  401页面组件

- []  响应式,支持手机


### 备注

Dashboard 页面使用了vue-echarts-v3组件,是刚开始熟悉vue时,硬撸出来的,无美感可言啊。后面逐步熟悉及应用起来组件的思想才,

代码尚需逐步优化,哈哈


- [个人博客 https://aimak.cn](https://aimak.cn)


================================================
FILE: build/build.js
================================================
require('./check-versions')();
var server = require('pushstate-server');
var opn = require('opn')
var ora = require('ora')
var rm = require('rimraf')
var path = require('path')
var chalk = require('chalk')
var webpack = require('webpack')
var config = require('../config')
var webpackConfig = require('./webpack.prod.conf')

console.log(process.env.NODE_ENV)

var spinner = ora('building for ' + process.env.NODE_ENV + '...')
spinner.start()

rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
  if (err) throw err
  webpack(webpackConfig, function (err, stats) {
    spinner.stop()
    if (err) throw err
    process.stdout.write(stats.toString({
      colors: true,
      modules: false,
      children: false,
      chunks: false,
      chunkModules: false
    }) + '\n\n')

        console.log(chalk.cyan('  Build complete.\n'))
        if(process.env.npm_config_preview){
            server.start({
                port: 18086,
                directory: './dist',
                file: '/index.html'
            });
            console.log('> Listening at ' +  'http://localhost:18086' + '\n')
        }
    })
})


================================================
FILE: build/check-versions.js
================================================
var chalk = require('chalk')
var semver = require('semver')
var packageConfig = require('../package.json')
var shell = require('shelljs')
function exec (cmd) {
  return require('child_process').execSync(cmd).toString().trim()
}

var 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 () {
  var warnings = []
  for (var i = 0; i < versionRequirements.length; i++) {
    var 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 (var i = 0; i < warnings.length; i++) {
      var warning = warnings[i]
      console.log('  ' + warning)
    }
    console.log()
    process.exit(1)
  }
}


================================================
FILE: build/dev-client.js
================================================
/* eslint-disable */
require('eventsource-polyfill')
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')

hotClient.subscribe(function (event) {
  if (event.action === 'reload') {
    window.location.reload()
  }
})


================================================
FILE: build/dev-server.js
================================================
//检查NodeJS和npm的版本
require('./check-versions')()

// 获取配置
var config = require('../config')

// 如果Node的环境变量中没有设置当前的环境(NODE_ENV),则使用config中的配置作为当前的环境
if (!process.env.NODE_ENV) {
    process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV)
}

// 一个可以调用默认软件打开网址、图片、文件等内容的插件
// 这里用它来调用默认浏览器打开dev-server监听的端口,例如:localhost:8080
var opn = require('opn')
var path = require('path')
var express = require('express')
var webpack = require('webpack')

// 一个express中间件,用于将http请求代理到其他服务器
// 例:localhost:8080/api/xxx  -->  localhost:3000/api/xxx
// 这里使用该插件可以将前端开发中涉及到的请求代理到API服务器上,方便与服务器对接
var proxyMiddleware = require('http-proxy-middleware')
var webpackConfig = require('./webpack.dev.conf')

var port = process.env.PORT || config.dev.port
// automatically open browser, if not set will be false
var autoOpenBrowser = !!config.dev.autoOpenBrowser
// Define HTTP proxies to your custom API backend
// https://github.com/chimurai/http-proxy-middleware
var proxyTable = config.dev.proxyTable

var app = express()
var compiler = webpack(webpackConfig)

var devMiddleware = require('webpack-dev-middleware')(compiler, {
    publicPath: webpackConfig.output.publicPath,
    quiet: true
})

var hotMiddleware = require('webpack-hot-middleware')(compiler, {
    log: () => {
    }
})
// force page reload when html-webpack-plugin template changes
compiler.plugin('compilation', function (compilation) {
    compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
        hotMiddleware.publish({action: 'reload'})
        cb()
    })
})

// proxy api requests
Object.keys(proxyTable).forEach(function (context) {
    var options = proxyTable[context]
    if (typeof options === 'string') {
        options = {target: options}
    }
    app.use(proxyMiddleware(options.filter || context, options))
})

// handle fallback for HTML5 history API
app.use(require('connect-history-api-fallback')())

// serve webpack bundle output
app.use(devMiddleware)

// enable hot-reload and state-preserving
// compilation error display
app.use(hotMiddleware)

// serve pure static assets
var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory)
app.use(staticPath, express.static('./static'))

var uri = 'http://localhost:' + port

var _resolve
var readyPromise = new Promise(resolve => {
    _resolve = resolve
})

console.log('> Starting dev server...')
devMiddleware.waitUntilValid(() => {
    console.log('> Listening at ' + uri + '\n')
    // when env is testing, don't need open it
    if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') {
        opn(uri)
    }
    _resolve()
})

var server = app.listen(port)

module.exports = {
    ready: readyPromise,
    close: () => {
        server.close()
    }
}


================================================
FILE: build/utils.js
================================================
var path = require('path')
var config = require('../config')
var ExtractTextPlugin = require('extract-text-webpack-plugin')

exports.assetsPath = function (_path) {
  var assetsSubDirectory = process.env.NODE_ENV === 'production'
    ? config.build.assetsSubDirectory
    : config.dev.assetsSubDirectory
  return path.posix.join(assetsSubDirectory, _path)
}

exports.cssLoaders = function (options) {
  options = options || {}

  var cssLoader = {
    loader: 'css-loader',
    options: {
      minimize: process.env.NODE_ENV === 'production',
      sourceMap: options.sourceMap
    }
  }

  // generate loader string to be used with extract text plugin
  function generateLoaders (loader, loaderOptions) {
    var loaders = [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,
        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) {
  var output = []
  var loaders = exports.cssLoaders(options)
  for (var extension in loaders) {
    var loader = loaders[extension]
    output.push({
      test: new RegExp('\\.' + extension + '$'),
      use: loader
    })
  }
  return output
}


================================================
FILE: build/vendor-manifest.json
================================================
{
  "name": "vendor_library",
  "content": {
    "./node_modules/core-js/modules/_export.js": {
      "id": 0,
      "meta": {}
    },
    "./node_modules/core-js/modules/_an-object.js": {
      "id": 1,
      "meta": {}
    },
    "./node_modules/core-js/modules/_global.js": {
      "id": 2,
      "meta": {}
    },
    "./node_modules/core-js/modules/_fails.js": {
      "id": 3,
      "meta": {}
    },
    "./node_modules/core-js/modules/_is-object.js": {
      "id": 4,
      "meta": {}
    },
    "./node_modules/core-js/modules/_wks.js": {
      "id": 5,
      "meta": {}
    },
    "./node_modules/core-js/modules/_descriptors.js": {
      "id": 6,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-dp.js": {
      "id": 7,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-length.js": {
      "id": 8,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-object.js": {
      "id": 9,
      "meta": {}
    },
    "./node_modules/core-js/modules/_has.js": {
      "id": 10,
      "meta": {}
    },
    "./node_modules/core-js/modules/_a-function.js": {
      "id": 11,
      "meta": {}
    },
    "./node_modules/core-js/modules/_hide.js": {
      "id": 12,
      "meta": {}
    },
    "./node_modules/core-js/modules/_redefine.js": {
      "id": 13,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-html.js": {
      "id": 14,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-iobject.js": {
      "id": 15,
      "meta": {}
    },
    "./node_modules/axios/lib/utils.js": {
      "id": 16,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-gopd.js": {
      "id": 17,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-gpo.js": {
      "id": 18,
      "meta": {}
    },
    "./node_modules/core-js/modules/_cof.js": {
      "id": 19,
      "meta": {}
    },
    "./node_modules/core-js/modules/_defined.js": {
      "id": 20,
      "meta": {}
    },
    "./node_modules/core-js/modules/_strict-method.js": {
      "id": 21,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-methods.js": {
      "id": 22,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-sap.js": {
      "id": 23,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-primitive.js": {
      "id": 24,
      "meta": {}
    },
    "./node_modules/core-js/modules/_core.js": {
      "id": 25,
      "meta": {}
    },
    "./node_modules/core-js/modules/_ctx.js": {
      "id": 26,
      "meta": {}
    },
    "./node_modules/core-js/modules/_metadata.js": {
      "id": 27,
      "meta": {}
    },
    "./node_modules/core-js/modules/_typed-array.js": {
      "id": 28,
      "meta": {}
    },
    "./node_modules/core-js/modules/_meta.js": {
      "id": 29,
      "meta": {}
    },
    "./node_modules/core-js/modules/_property-desc.js": {
      "id": 30,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-integer.js": {
      "id": 31,
      "meta": {}
    },
    "./node_modules/core-js/modules/_an-instance.js": {
      "id": 32,
      "meta": {}
    },
    "./node_modules/core-js/modules/_library.js": {
      "id": 33,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-create.js": {
      "id": 34,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-gopn.js": {
      "id": 35,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-keys.js": {
      "id": 36,
      "meta": {}
    },
    "./node_modules/core-js/modules/_redefine-all.js": {
      "id": 37,
      "meta": {}
    },
    "./node_modules/core-js/modules/_set-species.js": {
      "id": 38,
      "meta": {}
    },
    "./node_modules/core-js/modules/_to-index.js": {
      "id": 39,
      "meta": {}
    },
    "./node_modules/core-js/modules/_uid.js": {
      "id": 40,
      "meta": {}
    },
    "./node_modules/core-js/modules/_add-to-unscopables.js": {
      "id": 41,
      "meta": {}
    },
    "./node_modules/core-js/modules/_for-of.js": {
      "id": 42,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iterators.js": {
      "id": 43,
      "meta": {}
    },
    "./node_modules/core-js/modules/_set-to-string-tag.js": {
      "id": 44,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-trim.js": {
      "id": 45,
      "meta": {}
    },
    "./node_modules/core-js/modules/_classof.js": {
      "id": 46,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iobject.js": {
      "id": 47,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-pie.js": {
      "id": 48,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-includes.js": {
      "id": 49,
      "meta": {}
    },
    "./node_modules/core-js/modules/_collection.js": {
      "id": 50,
      "meta": {}
    },
    "./node_modules/core-js/modules/_fix-re-wks.js": {
      "id": 51,
      "meta": {}
    },
    "./node_modules/core-js/modules/_flags.js": {
      "id": 52,
      "meta": {}
    },
    "./node_modules/core-js/modules/_invoke.js": {
      "id": 53,
      "meta": {}
    },
    "./node_modules/core-js/modules/_is-regexp.js": {
      "id": 54,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iter-detect.js": {
      "id": 55,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-forced-pam.js": {
      "id": 56,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-gops.js": {
      "id": 57,
      "meta": {}
    },
    "./node_modules/core-js/modules/_shared.js": {
      "id": 58,
      "meta": {}
    },
    "./node_modules/core-js/modules/_typed.js": {
      "id": 59,
      "meta": {}
    },
    "./node_modules/axios/lib/defaults.js": {
      "id": 60,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-fill.js": {
      "id": 61,
      "meta": {}
    },
    "./node_modules/core-js/modules/_create-property.js": {
      "id": 62,
      "meta": {}
    },
    "./node_modules/core-js/modules/_dom-create.js": {
      "id": 63,
      "meta": {}
    },
    "./node_modules/core-js/modules/_enum-bug-keys.js": {
      "id": 64,
      "meta": {}
    },
    "./node_modules/core-js/modules/_fails-is-regexp.js": {
      "id": 65,
      "meta": {}
    },
    "./node_modules/core-js/modules/_html.js": {
      "id": 66,
      "meta": {}
    },
    "./node_modules/core-js/modules/_inherit-if-required.js": {
      "id": 67,
      "meta": {}
    },
    "./node_modules/core-js/modules/_is-array-iter.js": {
      "id": 68,
      "meta": {}
    },
    "./node_modules/core-js/modules/_is-array.js": {
      "id": 69,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iter-create.js": {
      "id": 70,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iter-define.js": {
      "id": 71,
      "meta": {}
    },
    "./node_modules/core-js/modules/_math-expm1.js": {
      "id": 72,
      "meta": {}
    },
    "./node_modules/core-js/modules/_math-sign.js": {
      "id": 73,
      "meta": {}
    },
    "./node_modules/core-js/modules/_microtask.js": {
      "id": 74,
      "meta": {}
    },
    "./node_modules/core-js/modules/_set-proto.js": {
      "id": 75,
      "meta": {}
    },
    "./node_modules/core-js/modules/_shared-key.js": {
      "id": 76,
      "meta": {}
    },
    "./node_modules/core-js/modules/_species-constructor.js": {
      "id": 77,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-at.js": {
      "id": 78,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-context.js": {
      "id": 79,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-repeat.js": {
      "id": 80,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-ws.js": {
      "id": 81,
      "meta": {}
    },
    "./node_modules/core-js/modules/_task.js": {
      "id": 82,
      "meta": {}
    },
    "./node_modules/core-js/modules/_typed-buffer.js": {
      "id": 83,
      "meta": {}
    },
    "./node_modules/core-js/modules/_wks-define.js": {
      "id": 84,
      "meta": {}
    },
    "./node_modules/core-js/modules/core.get-iterator-method.js": {
      "id": 85,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.iterator.js": {
      "id": 86,
      "meta": {}
    },
    "./node_modules/webpack/buildin/global.js": {
      "id": 87,
      "meta": {}
    },
    "./node_modules/axios/lib/adapters/xhr.js": {
      "id": 88,
      "meta": {}
    },
    "./node_modules/axios/lib/cancel/Cancel.js": {
      "id": 89,
      "meta": {}
    },
    "./node_modules/axios/lib/cancel/isCancel.js": {
      "id": 90,
      "meta": {}
    },
    "./node_modules/axios/lib/core/createError.js": {
      "id": 91,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/bind.js": {
      "id": 92,
      "meta": {}
    },
    "./node_modules/core-js/modules/_a-number-value.js": {
      "id": 93,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-copy-within.js": {
      "id": 94,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-from-iterable.js": {
      "id": 95,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-reduce.js": {
      "id": 96,
      "meta": {}
    },
    "./node_modules/core-js/modules/_bind.js": {
      "id": 97,
      "meta": {}
    },
    "./node_modules/core-js/modules/_collection-strong.js": {
      "id": 98,
      "meta": {}
    },
    "./node_modules/core-js/modules/_collection-to-json.js": {
      "id": 99,
      "meta": {}
    },
    "./node_modules/core-js/modules/_collection-weak.js": {
      "id": 100,
      "meta": {}
    },
    "./node_modules/core-js/modules/_ie8-dom-define.js": {
      "id": 101,
      "meta": {}
    },
    "./node_modules/core-js/modules/_is-integer.js": {
      "id": 102,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iter-call.js": {
      "id": 103,
      "meta": {}
    },
    "./node_modules/core-js/modules/_iter-step.js": {
      "id": 104,
      "meta": {}
    },
    "./node_modules/core-js/modules/_math-log1p.js": {
      "id": 105,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-assign.js": {
      "id": 106,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-dps.js": {
      "id": 107,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-gopn-ext.js": {
      "id": 108,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-keys-internal.js": {
      "id": 109,
      "meta": {}
    },
    "./node_modules/core-js/modules/_object-to-array.js": {
      "id": 110,
      "meta": {}
    },
    "./node_modules/core-js/modules/_own-keys.js": {
      "id": 111,
      "meta": {}
    },
    "./node_modules/core-js/modules/_parse-float.js": {
      "id": 112,
      "meta": {}
    },
    "./node_modules/core-js/modules/_parse-int.js": {
      "id": 113,
      "meta": {}
    },
    "./node_modules/core-js/modules/_same-value.js": {
      "id": 114,
      "meta": {}
    },
    "./node_modules/core-js/modules/_string-pad.js": {
      "id": 115,
      "meta": {}
    },
    "./node_modules/core-js/modules/_wks-ext.js": {
      "id": 116,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.map.js": {
      "id": 117,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.flags.js": {
      "id": 118,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.set.js": {
      "id": 119,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.weak-map.js": {
      "id": 120,
      "meta": {}
    },
    "./node_modules/process/browser.js": {
      "id": 121,
      "meta": {}
    },
    "./node_modules/axios/index.js": {
      "id": 122,
      "meta": {}
    },
    "./node_modules/babel-polyfill/lib/index.js": {
      "id": 123,
      "meta": {}
    },
    "./node_modules/vue-echarts-v3/dist/js/full.js": {
      "id": 124,
      "meta": {}
    },
    "./node_modules/vue-router/dist/vue-router.common.js": {
      "id": 125,
      "meta": {}
    },
    "./node_modules/vue/dist/vue.common.js": {
      "id": 126,
      "meta": {}
    },
    "./node_modules/axios/lib/axios.js": {
      "id": 127,
      "meta": {}
    },
    "./node_modules/axios/lib/cancel/CancelToken.js": {
      "id": 128,
      "meta": {}
    },
    "./node_modules/axios/lib/core/Axios.js": {
      "id": 129,
      "meta": {}
    },
    "./node_modules/axios/lib/core/InterceptorManager.js": {
      "id": 130,
      "meta": {}
    },
    "./node_modules/axios/lib/core/dispatchRequest.js": {
      "id": 131,
      "meta": {}
    },
    "./node_modules/axios/lib/core/enhanceError.js": {
      "id": 132,
      "meta": {}
    },
    "./node_modules/axios/lib/core/settle.js": {
      "id": 133,
      "meta": {}
    },
    "./node_modules/axios/lib/core/transformData.js": {
      "id": 134,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/btoa.js": {
      "id": 135,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/buildURL.js": {
      "id": 136,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/combineURLs.js": {
      "id": 137,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/cookies.js": {
      "id": 138,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/isAbsoluteURL.js": {
      "id": 139,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/isURLSameOrigin.js": {
      "id": 140,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/normalizeHeaderName.js": {
      "id": 141,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/parseHeaders.js": {
      "id": 142,
      "meta": {}
    },
    "./node_modules/axios/lib/helpers/spread.js": {
      "id": 143,
      "meta": {}
    },
    "./node_modules/core-js/fn/regexp/escape.js": {
      "id": 144,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-species-constructor.js": {
      "id": 145,
      "meta": {}
    },
    "./node_modules/core-js/modules/_array-species-create.js": {
      "id": 146,
      "meta": {}
    },
    "./node_modules/core-js/modules/_date-to-primitive.js": {
      "id": 147,
      "meta": {}
    },
    "./node_modules/core-js/modules/_enum-keys.js": {
      "id": 148,
      "meta": {}
    },
    "./node_modules/core-js/modules/_keyof.js": {
      "id": 149,
      "meta": {}
    },
    "./node_modules/core-js/modules/_partial.js": {
      "id": 150,
      "meta": {}
    },
    "./node_modules/core-js/modules/_path.js": {
      "id": 151,
      "meta": {}
    },
    "./node_modules/core-js/modules/_replacer.js": {
      "id": 152,
      "meta": {}
    },
    "./node_modules/core-js/modules/core.regexp.escape.js": {
      "id": 153,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.copy-within.js": {
      "id": 154,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.every.js": {
      "id": 155,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.fill.js": {
      "id": 156,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.filter.js": {
      "id": 157,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.find-index.js": {
      "id": 158,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.find.js": {
      "id": 159,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.for-each.js": {
      "id": 160,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.from.js": {
      "id": 161,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.index-of.js": {
      "id": 162,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.is-array.js": {
      "id": 163,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.join.js": {
      "id": 164,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.last-index-of.js": {
      "id": 165,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.map.js": {
      "id": 166,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.of.js": {
      "id": 167,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.reduce-right.js": {
      "id": 168,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.reduce.js": {
      "id": 169,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.slice.js": {
      "id": 170,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.some.js": {
      "id": 171,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.sort.js": {
      "id": 172,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.array.species.js": {
      "id": 173,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.date.now.js": {
      "id": 174,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.date.to-iso-string.js": {
      "id": 175,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.date.to-json.js": {
      "id": 176,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.date.to-primitive.js": {
      "id": 177,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.date.to-string.js": {
      "id": 178,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.function.bind.js": {
      "id": 179,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.function.has-instance.js": {
      "id": 180,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.function.name.js": {
      "id": 181,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.acosh.js": {
      "id": 182,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.asinh.js": {
      "id": 183,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.atanh.js": {
      "id": 184,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.cbrt.js": {
      "id": 185,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.clz32.js": {
      "id": 186,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.cosh.js": {
      "id": 187,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.expm1.js": {
      "id": 188,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.fround.js": {
      "id": 189,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.hypot.js": {
      "id": 190,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.imul.js": {
      "id": 191,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.log10.js": {
      "id": 192,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.log1p.js": {
      "id": 193,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.log2.js": {
      "id": 194,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.sign.js": {
      "id": 195,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.sinh.js": {
      "id": 196,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.tanh.js": {
      "id": 197,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.math.trunc.js": {
      "id": 198,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.constructor.js": {
      "id": 199,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.epsilon.js": {
      "id": 200,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.is-finite.js": {
      "id": 201,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.is-integer.js": {
      "id": 202,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.is-nan.js": {
      "id": 203,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.is-safe-integer.js": {
      "id": 204,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.max-safe-integer.js": {
      "id": 205,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.min-safe-integer.js": {
      "id": 206,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.parse-float.js": {
      "id": 207,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.parse-int.js": {
      "id": 208,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.to-fixed.js": {
      "id": 209,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.number.to-precision.js": {
      "id": 210,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.assign.js": {
      "id": 211,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.create.js": {
      "id": 212,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.define-properties.js": {
      "id": 213,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.define-property.js": {
      "id": 214,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.freeze.js": {
      "id": 215,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.get-own-property-descriptor.js": {
      "id": 216,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.get-own-property-names.js": {
      "id": 217,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.get-prototype-of.js": {
      "id": 218,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.is-extensible.js": {
      "id": 219,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.is-frozen.js": {
      "id": 220,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.is-sealed.js": {
      "id": 221,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.is.js": {
      "id": 222,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.keys.js": {
      "id": 223,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.prevent-extensions.js": {
      "id": 224,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.seal.js": {
      "id": 225,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.set-prototype-of.js": {
      "id": 226,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.object.to-string.js": {
      "id": 227,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.parse-float.js": {
      "id": 228,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.parse-int.js": {
      "id": 229,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.promise.js": {
      "id": 230,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.apply.js": {
      "id": 231,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.construct.js": {
      "id": 232,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.define-property.js": {
      "id": 233,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.delete-property.js": {
      "id": 234,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.enumerate.js": {
      "id": 235,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js": {
      "id": 236,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.get-prototype-of.js": {
      "id": 237,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.get.js": {
      "id": 238,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.has.js": {
      "id": 239,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.is-extensible.js": {
      "id": 240,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.own-keys.js": {
      "id": 241,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.prevent-extensions.js": {
      "id": 242,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.set-prototype-of.js": {
      "id": 243,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.reflect.set.js": {
      "id": 244,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.constructor.js": {
      "id": 245,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.match.js": {
      "id": 246,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.replace.js": {
      "id": 247,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.search.js": {
      "id": 248,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.split.js": {
      "id": 249,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.regexp.to-string.js": {
      "id": 250,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.anchor.js": {
      "id": 251,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.big.js": {
      "id": 252,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.blink.js": {
      "id": 253,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.bold.js": {
      "id": 254,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.code-point-at.js": {
      "id": 255,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.ends-with.js": {
      "id": 256,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.fixed.js": {
      "id": 257,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.fontcolor.js": {
      "id": 258,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.fontsize.js": {
      "id": 259,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.from-code-point.js": {
      "id": 260,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.includes.js": {
      "id": 261,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.italics.js": {
      "id": 262,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.iterator.js": {
      "id": 263,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.link.js": {
      "id": 264,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.raw.js": {
      "id": 265,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.repeat.js": {
      "id": 266,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.small.js": {
      "id": 267,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.starts-with.js": {
      "id": 268,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.strike.js": {
      "id": 269,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.sub.js": {
      "id": 270,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.sup.js": {
      "id": 271,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.string.trim.js": {
      "id": 272,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.symbol.js": {
      "id": 273,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.array-buffer.js": {
      "id": 274,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.data-view.js": {
      "id": 275,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.float32-array.js": {
      "id": 276,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.float64-array.js": {
      "id": 277,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.int16-array.js": {
      "id": 278,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.int32-array.js": {
      "id": 279,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.int8-array.js": {
      "id": 280,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.uint16-array.js": {
      "id": 281,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.uint32-array.js": {
      "id": 282,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.uint8-array.js": {
      "id": 283,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.typed.uint8-clamped-array.js": {
      "id": 284,
      "meta": {}
    },
    "./node_modules/core-js/modules/es6.weak-set.js": {
      "id": 285,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.array.includes.js": {
      "id": 286,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.asap.js": {
      "id": 287,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.error.is-error.js": {
      "id": 288,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.map.to-json.js": {
      "id": 289,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.math.iaddh.js": {
      "id": 290,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.math.imulh.js": {
      "id": 291,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.math.isubh.js": {
      "id": 292,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.math.umulh.js": {
      "id": 293,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.define-getter.js": {
      "id": 294,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.define-setter.js": {
      "id": 295,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.entries.js": {
      "id": 296,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.get-own-property-descriptors.js": {
      "id": 297,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.lookup-getter.js": {
      "id": 298,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.lookup-setter.js": {
      "id": 299,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.object.values.js": {
      "id": 300,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.observable.js": {
      "id": 301,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.define-metadata.js": {
      "id": 302,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.delete-metadata.js": {
      "id": 303,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.get-metadata-keys.js": {
      "id": 304,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.get-metadata.js": {
      "id": 305,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.get-own-metadata-keys.js": {
      "id": 306,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.get-own-metadata.js": {
      "id": 307,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.has-metadata.js": {
      "id": 308,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.has-own-metadata.js": {
      "id": 309,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.reflect.metadata.js": {
      "id": 310,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.set.to-json.js": {
      "id": 311,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.at.js": {
      "id": 312,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.match-all.js": {
      "id": 313,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.pad-end.js": {
      "id": 314,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.pad-start.js": {
      "id": 315,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.trim-left.js": {
      "id": 316,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.string.trim-right.js": {
      "id": 317,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.symbol.async-iterator.js": {
      "id": 318,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.symbol.observable.js": {
      "id": 319,
      "meta": {}
    },
    "./node_modules/core-js/modules/es7.system.global.js": {
      "id": 320,
      "meta": {}
    },
    "./node_modules/core-js/modules/web.dom.iterable.js": {
      "id": 321,
      "meta": {}
    },
    "./node_modules/core-js/modules/web.immediate.js": {
      "id": 322,
      "meta": {}
    },
    "./node_modules/core-js/modules/web.timers.js": {
      "id": 323,
      "meta": {}
    },
    "./node_modules/core-js/shim.js": {
      "id": 324,
      "meta": {}
    },
    "./node_modules/regenerator-runtime/runtime.js": {
      "id": 325,
      "meta": {}
    }
  }
}

================================================
FILE: build/vue-loader.conf.js
================================================
var utils = require('./utils')
var config = require('../config')
var isProduction = process.env.NODE_ENV === 'production'

module.exports = {
  loaders: utils.cssLoaders({
    sourceMap: isProduction
      ? config.build.productionSourceMap
      : config.dev.cssSourceMap,
    extract: isProduction
  }),
  postcss: [
    require('autoprefixer')({
      browsers: ['last 2 versions']
    })
  ]
}


================================================
FILE: build/webpack.base.conf.js
================================================
var path = require('path');
var utils = require('./utils');
var config = require('../config');
var vueLoaderConfig = require('./vue-loader.conf');

function resolve (dir) {
  return path.join(__dirname, '..', dir)
}
var src = path.resolve(__dirname, '../src');

module.exports = {
  entry: {
    app: './src/main.js'
  },
  output: {
    path: config.build.assetsRoot,
    filename: '[name].js',
    publicPath: process.env.NODE_ENV !== 'development' ?  config.build.assetsPublicPath: config.dev.assetsPublicPath

  },
  resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      'vue$': 'vue/dist/vue.esm.js',
      '@': resolve('src'),
      'src': path.resolve(__dirname, '../src'),
      'scss_vars': '@/styles/vars.scss',
      'assets': path.resolve(__dirname, '../src/assets'),
      'api': path.resolve(__dirname, '../src/api'),
      'utils': path.resolve(__dirname, '../src/utils'),
      'vendor': path.resolve(__dirname, '../src/vendor'),
      'static': path.resolve(__dirname, '../static'),
    }
  },
  module: {
    rules: [
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: vueLoaderConfig
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        include: [resolve('src'), resolve('test')]
      },
      {
        test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('img/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
        }
      }
    ]
  }
}


================================================
FILE: build/webpack.dev.conf.js
================================================
var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')

// add hot-reload related code to entry chunks
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
  baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
})

module.exports = merge(baseWebpackConfig, {
  module: {
    rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
  },
  // cheap-module-eval-source-map is faster for development
  devtool: '#cheap-module-eval-source-map',
  plugins: [
    new webpack.DefinePlugin({
      'process.env': config.dev.env
    }),
    // https://github.com/glenjamin/webpack-hot-middleware#installation--usage
    new webpack.HotModuleReplacementPlugin(),
    new webpack.NoEmitOnErrorsPlugin(),
    // https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      inject: true
    }),
    new FriendlyErrorsPlugin()
  ]
})


================================================
FILE: build/webpack.dll.conf.js
================================================
const path = require('path');
const webpack = require('webpack');

module.exports = {
  entry: {
    vendor: ['vue/dist/vue.common.js','vue-router', 'babel-polyfill','axios','vue-echarts-v3']
  },
  output: {
    path: path.join(__dirname, '../static/js'),
    filename: '[name].dll.js',
    library: '[name]_library'
  },
  plugins: [
    new webpack.DllPlugin({
      path: path.join(__dirname, '.', '[name]-manifest.json'),
      name: '[name]_library'
    }),
    new webpack.optimize.UglifyJsPlugin({
      compress: {
        warnings: false
      }
    }),
    new webpack.DefinePlugin({
      'process.env': {
        NODE_ENV: '"production"'
      }
    })
  ]
};

================================================
FILE: build/webpack.prod.conf.js
================================================
var path = require('path')
var utils = require('./utils')
var webpack = require('webpack')
var config = require('../config')
var merge = require('webpack-merge')
var baseWebpackConfig = require('./webpack.base.conf')
var CopyWebpackPlugin = require('copy-webpack-plugin')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')

var env = process.env.NODE_ENV === 'production' ? config.build.prodEnv : config.build.sitEnv

function resolveApp(relativePath) {
    return path.resolve(relativePath);
}

var webpackConfig = merge(baseWebpackConfig, {
  module: {
    rules: utils.styleLoaders({
      sourceMap: config.build.productionSourceMap,
      extract: true
    })
  },
  devtool: config.build.productionSourceMap ? '#source-map' : 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 webpack.optimize.UglifyJsPlugin({
      compress: {
        warnings: false
      },
      sourceMap: true
    }),
    // extract css into its own file
    new ExtractTextPlugin({
      filename: utils.assetsPath('css/[name].[contenthash].css')
    }),
    // Compress extracted CSS. We are using this plugin so that possible
    // duplicated CSS from different components can be deduped.
    new OptimizeCSSPlugin({
      cssProcessorOptions: {
        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'
    }),
    // split vendor js into its own file
    new webpack.optimize.CommonsChunkPlugin({
      name: 'vendor',
      minChunks: function (module, count) {
        // 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',
      chunks: ['vendor']
    }),
    // copy custom static assets
    new CopyWebpackPlugin([
      {
        from: path.resolve(__dirname, '../static'),
        to: config.build.assetsSubDirectory,
        ignore: ['.*']
      }
    ])
  ]
})

if (config.build.productionGzip) {
  var 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) {
  var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}

module.exports = webpackConfig


================================================
FILE: config/dev.env.js
================================================
module.exports = {
    NODE_ENV: '"development"',
    BASE_API: '""',
};


================================================
FILE: config/index.js
================================================
// see http://vuejs-templates.github.io/webpack for documentation.
var path = require('path');

module.exports = {
    build: {
        sitEnv: require('./sit.env'),
        prodEnv: require('./prod.env'),
        index: path.resolve(__dirname, '../dist/index.html'),
        assetsRoot: path.resolve(__dirname, '../dist'),
        assetsSubDirectory: 'static',
        assetsPublicPath: './',
        productionSourceMap: false,
        // 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
    },
    dev: {
        env: require('./dev.env'),
        port: 18085,
        autoOpenBrowser: true,
        assetsSubDirectory: 'static',
        assetsPublicPath: '/',
        proxyTable: {
            '/charts/v1': {
                target: 'https://api.fantasykai.cc/charts/v1',
                changeOrigin: true,
                pathRewrite: {
                    '/charts/v1': ''
                }
            },
            '/manage/v1': {
                target: 'https://api.fantasykai.cc/manage/v1',
                changeOrigin: true,
                pathRewrite: {
                    '/manage/v1': ''
                }
            },
            '/api': {
                target: 'https://api.fantasykai.cc/api/v1',
                changeOrigin: true,
                pathRewrite: {
                    '/api/v1': ''
                }
            }
        },
        // CSS Sourcemaps off by default because relative paths are "buggy"
        // with this option, according to the CSS-Loader README
        // (https://github.com/webpack/css-loader#sourcemaps)
        // In our experience, they generally work as expected,
        // just be aware of this issue when enabling this option.
        cssSourceMap: false
    }
}


================================================
FILE: config/prod.env.js
================================================
module.exports = {
    NODE_ENV: '"production"',
    BASE_API: '"https://api-prod.com"'
};


================================================
FILE: config/sit.env.js
================================================
module.exports = {
    NODE_ENV: '"production"',
    BASE_API: '"https://api-sit.com"'
};


================================================
FILE: index.html
================================================
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Sys-Admin</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
    <link rel="shortcut icon" type="image/x-icon" href="static/img/favicon.ico"/>
    <link rel="stylesheet" href="./static/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
    <link rel="stylesheet" href="./static/css/AdminLTE.min.css">
    <meta name="keywords" content="vue, vue2, 管理系统, element"/>
    <meta name="description" content="基于Vue2,Element UI的后台管理系统解决方案"/>
</head>
<body>
<script type="text/javascript" src="https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js"></script>
<div id="app"></div>
</body>
</html>


================================================
FILE: package.json
================================================
{
  "name": "vue-admin-manager",
  "version": "1.0.0",
  "description": "后台管理系统",
  "author": "fantasykai <kai.fantasy@gmail.com>",
  "private": true,
  "scripts": {
    "dev": "node build/dev-server.js",
    "build:prod": "cross-env NODE_ENV=production node build/build.js",
    "build:sit": "cross-env NODE_ENV=sit node build/build.js",
    "build:sit-preview": "cross-env NODE_ENV=sit npm_config_preview=true  npm_config_report=true node build/build.js"
  },
  "dependencies": {
    "axios": "^0.16.2",
    "element-ui": "^1.3.7",
    "file-saver": "^1.3.3",
    "moment": "^2.18.1",
    "nprogress": "^0.2.0",
    "uuid": "^3.1.0",
    "vue": "^2.4.4",
    "vue-datasource": "^2.0.1",
    "vue-echarts-v3": "^1.0.4",
    "vue-quill-editor": "^2.3.2",
    "vue-router": "^2.6.0",
    "vue-simplemde": "^0.4.4",
    "vue-video-player": "^4.0.4",
    "vuex": "^2.4.1",
    "vuex-router-sync": "^4.3.2",
    "xlsx": "^0.11.4"
  },
  "devDependencies": {
    "autoprefixer": "^7.1.4",
    "axios-mock-adapter": "^1.9.0",
    "babel-core": "^6.25.0",
    "babel-loader": "^7.0.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-env": "^1.5.2",
    "babel-preset-stage-2": "^6.24.1",
    "babel-register": "^6.24.1",
    "babel-runtime": "^6.23.0",
    "chalk": "^2.1.0",
    "connect-history-api-fallback": "^1.3.0",
    "copy-webpack-plugin": "^4.0.1",
    "cross-env": "^5.0.1",
    "css-loader": "^0.28.7",
    "cssnano": "^3.10.0",
    "del": "^3.0.0",
    "eventsource-polyfill": "^0.9.6",
    "express": "^4.15.5",
    "extract-text-webpack-plugin": "^3.0.0",
    "file-loader": "^0.11.2",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "function-bind": "^1.1.1",
    "gulp": "^3.9.1",
    "gulp-ssh": "^0.6.0",
    "html-webpack-plugin": "^2.28.0",
    "http-proxy-middleware": "^0.17.4",
    "mockjs": "^1.0.1-beta3",
    "node-sass": "^4.5.3",
    "opn": "^5.1.0",
    "optimize-css-assets-webpack-plugin": "^3.2.0",
    "ora": "^1.3.0",
    "pushstate-server": "^3.0.0",
    "rimraf": "^2.6.2",
    "sass-loader": "^6.0.6",
    "script-loader": "^0.7.1",
    "semver": "^5.3.0",
    "shelljs": "^0.7.8",
    "url-loader": "^0.5.9",
    "vue-loader": "^13.0.5",
    "vue-style-loader": "^3.0.3",
    "vue-template-compiler": "^2.4.4",
    "webpack": "^3.6.0",
    "webpack-bundle-analyzer": "^2.8.2",
    "webpack-dev-middleware": "^1.10.2",
    "webpack-hot-middleware": "^2.19.1",
    "webpack-merge": "^4.1.0"
  },
  "engines": {
    "node": ">= 4.0.0",
    "npm": ">= 3.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ]
}


================================================
FILE: src/App.vue
================================================
<template>
	<div id="app">
		<transition name="fade"
		            mode="out-in">
			<router-view></router-view>
		</transition>
	</div>
</template>

<script>
export default {
	name: 'app',
	components: {
	}
}

</script>

<style lang="scss">
body {
	margin: 0px;
	padding: 0px;
	/*background: url(assets/bg1.jpg) center !important;
		background-size: cover;*/
	// background: #1F2D3D;
	font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
}

#app {
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
}

.el-submenu [class^=fa] {
    vertical-align: baseline;
    margin-right: 10px;
}

.el-menu-item [class^=fa] {
	vertical-align: baseline;
	margin-right: 10px;
}

.svg-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.toolbar {
	/*background: #f2f2f2;*/
	padding: 10px;
	//border:1px solid #dfe6ec;
	margin: 10px 0px;
	.el-form-item {
		margin-bottom: 10px;
	}
}

.fade-enter-active,
.fade-leave-active {
	transition: all .2s ease;
}

.fade-enter,
.fade-leave-active {
	opacity: 0;
}
</style>


================================================
FILE: src/api/aggregate.js
================================================
/**
 * Created by kai.fantasy on 2017/6/15 0015.
 */
import fetch from '../utils/fetch';

export function aggregate(data) {
    return fetch({
        url: '/charts/v1/aggregate',
        method: 'post',
        data
    }).then(res => res.data.result);
}



================================================
FILE: src/api/index.js
================================================
/**
 * Created by kai.fantasy on 2017/4/11 0011.
 * 两种封装调用的方式
 * 1. api.request(), 在调用的地方在输入uri
 * 2. 把请求的uri列表放在此js中,方便管理
 */
import axios from 'axios'
import config from '../config'

export default {
    request (method, uri, data = null) {
        if (!method) {
            console.error('API function call requires method argument')
            return
        }

        if (!uri) {
            console.error('API function call requires uri argument');
            return
        }

        var url = config.serverURI + uri
        axios.defaults.headers.common['Access-Control-Allow-Origin'] = '*';
        return axios({method, url, data})
    }
}

/**
 * 登录接口
 * @param params
 * @returns {*}
 */
export const requestLogin = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/tokens`,
        headers: {'deviceid': params.deviceId},
        auth: params.credentials,
    }).get().then(res => res.data);
};

/**
 * 登录接口 POST
 * @param params
 * @returns {*}
 */
export const login = params => {
    return axios.create({
        auth: params.credentials,
        timeout: 2000,
    }).post(`${config.serverURI}/api/v1/tokens`, params.postBody).then(res => res.data);
};

/**
 * 获取token 消息头
 * @returns {{headers: {token: string}}}
 */
function getToken() {

    let axiosConfig = {
        headers: {
            // 'content-type': 'application/json',
            'token': 'Bearer ' + localStorage.getItem('token')
        }
    };

    return axiosConfig;
}

/**
 * 获取OSS临时授权信息,STS
 * @param params
 * @returns {*}
 */
export const getSTSToken = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/ststoken`,
        headers: {'token': 'Bearer ' + localStorage.getItem('token')},
    }).get().then(res => res.data);
};

/**
 * 获取用户昵称
 * @param params
 * @returns {*}
 */
export const getNickname = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/users/` + params + `?projection={"nickname":1,"userId":1,"seqid":1}`,
        headers: {'token': 'Bearer ' + localStorage.getItem('token')},
    }).get().then(res => res.data);
};


/**
 * aggregate 统计通用接口
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const aggregate = params => {
    return axios.post(`${config.serverURI}/charts/v1/aggregate`, params, getToken()).then(res => res.data.result);
};

/**
 * 根据用户userId/seqid 查询用户的uid
 * @param params
 * @returns {AxiosPromise}
 */
export const getBluUid = params => {
    return axios.get(`${config.serverURI}/api/v1/users`, {
        params: params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token')}
    });
};

/**
 * 获取消息记录, 强制不使用缓存
 * @param params
 * @returns {AxiosPromise}
 */
export const getChatRecordPage = params => {
    return axios.get(`${config.serverURI}/api/v1/messages`, {
        params: params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'}
    });
};

/**
 * 获取用户列表
 * @param params
 * @returns {AxiosPromise}
 */
export const getUsersPage = params => {
    return axios.get(`${config.serverURI}/api/v1/users`, {
        params: params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token')}
    });
};

/**
 * 获取好友列表
 * @param params
 * @returns {*}
 */
export const getFriendsPage = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/users/` + params.userId + `/fris`,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'},
        params: params.queryParams
    }).get().then(res => res.data);
};

/**
 * 获取好友分组
 * @param params
 * @returns {*}
 */
export const getFriendRows = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/users/` + params.userId + `/rows`,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'},
        params: params.queryParams
    }).get().then(res => res.data);
};

/**
 * 获取分组内的好友信息
 * @param params
 * @returns {*}
 */
export const getFriendsInRow = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/users/` + params.userId + `/fris`,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'},
        params: params.queryParams
    }).get().then(res => res.data);
};


/**
 * 获取主播数据统计信息, 强制不使用缓存
 * @param params
 * @returns {AxiosPromise}
 */
export const getAnchorDataStatPage = params => {
    return axios.get(`${config.serverURI}/api/v1/userstats`, {
        params: params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'}
    });
};

/**
 * aggregate 设置定时任务
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const setMsgTimingTask = params => {
    return axios.post(`${config.serverURI}/manage/v1/apschedul/sendtousera`, params, getToken()).then(res => res.data);
};

/**
 * aggregate 取消定时任务
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const cancelMsgTimingTask = params => {
    return axios.patch(params.uri, params.patchBody, getToken()).then(res => res.data);
};

/**
 * 获取账号自动回复设置信息
 * @param params
 * @returns {AxiosPromise}
 */
export const getMsgConfigs = params => {
    return axios.get(`${config.serverURI}/api/v1/msgconfigs`, {
        params: params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token'), 'cache-control': 'max-age=0,no-cache'}
    });
};

/**
 * aggregate 设置自动回复配置
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const setMsgConfigs = params => {
    return axios.post(`${config.serverURI}/api/v1/msgconfigs`, params, getToken()).then(res => res.data);
};

/**
 * aggregate 触发消息发送任务
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const sendToUsersSchedul = params => {
    return axios.post(`${config.serverURI}/manage/v1/apschedul/sendtousers`, params, getToken()).then(res => res.data);
};

/**
 * aggregate 更新自动回复配置
 * @param params
 * @returns {Promise.<TResult>|Promise<R>|Promise<R2|R1>}
 */
export const updateMsgConfigs = params => {
    return axios.patch(params.uri, params.patchBody, getToken()).then(res => res.data);
};

/**
 * 删除自动回复配置信息
 * @param params
 * @returns {*}
 */
export const deleteMsgConfigs = params => {
    return axios.create({
        baseURL: `${config.serverURI}/api/v1/msgconfigs/` + params,
        headers: {'token': 'Bearer ' + localStorage.getItem('token')},
    }).delete().then(res => res.data);
};



================================================
FILE: src/api/manage.js
================================================
/**
 * Created by kai.fantasy on 2017/6/19 0019.
 */
import fetch from '../utils/fetch'

/**
 * 设置定时任务
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function setMsgTimingTask(data) {
    return fetch({
        url: '/manage/v1/apschedul/sendtousera',
        method: 'post',
        data
    }).then(res => res.data);
}

/**
 * 取消定时任务
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function cancelMsgTimingTask(params) {
    let data = params.patchBody;
    return fetch({
        url: params.uri,
        method: 'patch',
        data
    }).then(res => res.data);
}

/**
 * 获取账号自动回复设置信息
 * @param params
 * @returns {*}
 */
export function getMsgConfigs(params) {
    return fetch({
        url: '/api/v1/msgconfigs',
        headers: {'cache-control': 'max-age=0,no-cache'},
        params: params,
        method: 'get'
    });
}

/**
 * 设置自动回复配置
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function setMsgConfigs(data) {
    return fetch({
        url: '/api/v1/msgconfigs',
        method: 'post',
        data
    }).then(res => res.data);
}

/**
 * 触发消息发送任务
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function sendToUsersSchedul(data) {
    return fetch({
        url: '/manage/v1/apschedul/sendtousers',
        method: 'post',
        data
    }).then(res => res.data);
}

/**
 * 更新自动回复配置
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function updateMsgConfigs(params) {
    let data = params.patchBody;
    return fetch({
        url: params.uri,
        method: 'patch',
        data
    }).then(res => res.data);
}
/**
 * 删除自动回复配置信息
 * @param params
 * @returns {*}
 */
export function deleteMsgConfigs(params) {
    return fetch({
        url: '/api/v1/msgconfigs/' + params,
        method: 'delete'
    }).then(res => res.data);
}


================================================
FILE: src/api/messages.js
================================================
/**
 * Created by kai.fantasy on 2017/6/15 0015.
 */
import fetch from '../utils/fetch'

/**
 * 获取消息记录,强制不使用缓存
 * @param params
 * @returns {*}
 */
export function getChatRecordPage(params) {
    return fetch({
        url: '/api/v1/messages',
        headers: {'cache-control': 'max-age=0,no-cache'},
        params: params,
        method: 'get'
    });
}


================================================
FILE: src/api/sts.js
================================================
/**
 * Created by kai.fantasy on 2017/6/15 0015.
 */
import fetch from 'utils/fetch';

export function getSTSToken() {
    return fetch({
        url: '/api/v1/ststoken',
        method: 'get'
    }).then(res => res.data);
}



================================================
FILE: src/api/users.js
================================================
/**
 * Created by kai.fantasy on 2017/6/15 0015.
 */
import fetch from '../utils/fetch'
/**
 * 获取用户昵称
 * @returns {*|Promise.<TResult>}
 */
export function getNickname(uid) {
    return fetch({
        url: `/api/v1/users/` + uid + `?projection={"nickname":1,"usertype":1,"manage":1}`,
        method: 'get'
    }).then(res => res.data);
}

/**
 * 获取用户列表
 * @param params
 * @returns {*}
 */
export function getUsersPage(params) {
    return fetch({
        url: '/api/v1/users',
        method: 'get',
        params: params
    });
}

/**
 * 更新用户信息
 * @param data
 * @returns {*|Promise.<TResult>}
 */
export function updateUserInfo(params) {
    let data = params.patchBody;
    return fetch({
        url: params.uri,
        method: 'patch',
        data
    }).then(res => res.data);
}

/**
 * 根据用户userId/seqid/tel 查询用户的uid
 * @param params
 * @returns {*}
 */
export function getBluUid(params) {
    return fetch({
        url: '/api/v1/users',
        method: 'get',
        params: params
    });
}

/**
 * 查询好友列表
 * @param params
 * @returns {Promise.<TResult>|*}
 */
export function getFriendsPage(params) {
    return fetch({
        url: `/api/v1/users/` + params.userId + `/fris`,
        headers: {'cache-control': 'max-age=0,no-cache'},
        method: 'get',
        params: params.queryParams
    }).then(res => res.data);
}

/**
 * 查询好友分组
 * @param params
 * @returns {Promise.<TResult>|*}
 */
export function getFriendRows(params) {
    return fetch({
        url: `/api/v1/users/` + params.userId + `/rows`,
        headers: {'cache-control': 'max-age=0,no-cache'},
        method: 'get',
        params: params.queryParams
    }).then(res => res.data);
}

/**
 * 查询好友分组内的好友
 * @param params
 * @returns {Promise.<TResult>|*}
 */
export function getFriendsInRow(params) {
    return fetch({
        url: `/api/v1/users/` + params.userId + `/fris`,
        headers: {'cache-control': 'max-age=0,no-cache'},
        method: 'get',
        params: params.queryParams
    }).then(res => res.data);
}


================================================
FILE: src/api/userstats.js
================================================
/**
 * Created by kai.fantasy on 2017/6/15 0015.
 */
import fetch from '../utils/fetch'

/**
 * 获取主播数据统计信息
 * @param params
 * @returns {Promise.<TResult>|*}
 */
export function getAnchorDataStatPage(params) {
    return fetch({
        url: '/api/v1/userstats',
        headers: {'cache-control': 'max-age=0,no-cache'},
        method: 'get',
        params: params
    });
}


================================================
FILE: src/assets/iconfont/iconfont.js
================================================
(function(window){var svgSprite="<svg>"+""+'<symbol id="icon-favorfill" viewBox="0 0 1024 1024">'+""+'<path d="M957.216 404.32c-3.808-11.36-13.632-19.68-25.504-21.504l-270.336-41.728-120.8-258.624C535.328 71.232 524.032 64.032 511.648 64c0 0-0.032 0-0.064 0-12.384 0-23.648 7.136-28.928 18.336l-121.856 258.016-270.72 40.8c-11.872 1.792-21.728 10.048-25.568 21.408-3.84 11.36-0.992 23.936 7.36 32.512l196.448 202.08L221.44 921.952c-1.984 12.096 3.104 24.256 13.12 31.328 9.984 7.072 23.168 7.808 33.888 1.92l241.824-133.024 241.312 133.856C756.416 958.656 761.76 960 767.104 960c0.256 0 0.48 0 0.64 0 17.696 0 32-14.304 32-32 0-3.968-0.704-7.776-2.016-11.296l-44.896-278.688 196.928-201.248C958.08 428.224 960.992 415.68 957.216 404.32z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-favor" viewBox="0 0 1024 1024">'+""+'<path d="M767.104 959.936c-5.344 0-10.688-1.344-15.52-4.032l-241.312-133.856-241.824 133.024c-10.72 5.92-23.904 5.152-33.888-1.92-10.016-7.072-15.104-19.264-13.12-31.328l46.88-284.736-196.448-202.08c-8.256-8.512-11.168-20.928-7.456-32.192 3.68-11.296 13.312-19.616 25.024-21.632l155.072-26.592c17.632-2.944 33.984 8.736 36.96 26.144 2.976 17.408-8.704 33.952-26.144 36.96l-95.168 16.32 165.344 170.08c7.072 7.296 10.272 17.504 8.64 27.488l-38.816 235.68 199.616-109.824c9.632-5.312 21.344-5.312 30.944 0.064l199.168 110.464-38.016-235.776c-1.632-10.016 1.632-20.224 8.704-27.456l164.672-168.256-225.664-34.816c-10.56-1.632-19.584-8.416-24.128-18.08l-99.2-212.384-100.064 211.84c-7.552 16-26.624 22.816-42.624 15.264-15.968-7.552-22.816-26.624-15.264-42.624l129.152-273.44c5.312-11.2 16.576-18.336 28.928-18.336 0 0 0.032 0 0.064 0 12.416 0.032 23.68 7.232 28.928 18.464l120.8 258.624 270.336 41.728c11.872 1.824 21.696 10.144 25.504 21.504 3.776 11.36 0.864 23.936-7.488 32.48l-196.928 201.216 45.92 284.864c1.952 12.096-3.2 24.256-13.216 31.296C780 958.016 773.568 959.936 767.104 959.936z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-list" viewBox="0 0 1024 1024">'+""+'<path d="M896 256l-288 0c-17.696 0-32-14.336-32-32s14.304-32 32-32l288 0c17.696 0 32 14.336 32 32S913.696 256 896 256z"  ></path>'+""+'<path d="M896 416l-288 0c-17.696 0-32-14.336-32-32s14.304-32 32-32l288 0c17.696 0 32 14.336 32 32S913.696 416 896 416z"  ></path>'+""+'<path d="M896 672l-288 0c-17.696 0-32-14.304-32-32s14.304-32 32-32l288 0c17.696 0 32 14.304 32 32S913.696 672 896 672z"  ></path>'+""+'<path d="M896 832l-288 0c-17.696 0-32-14.304-32-32s14.304-32 32-32l288 0c17.696 0 32 14.304 32 32S913.696 832 896 832z"  ></path>'+""+'<path d="M384 480 192 480c-52.928 0-96-43.072-96-96L96 192c0-52.928 43.072-96 96-96l192 0c52.928 0 96 43.072 96 96l0 192C480 436.928 436.928 480 384 480zM192 160C174.368 160 160 174.368 160 192l0 192c0 17.632 14.368 32 32 32l192 0c17.632 0 32-14.368 32-32L416 192c0-17.632-14.368-32-32-32L192 160z"  ></path>'+""+'<path d="M384 928 192 928c-52.928 0-96-43.072-96-96l0-192c0-52.928 43.072-96 96-96l192 0c52.928 0 96 43.072 96 96l0 192C480 884.928 436.928 928 384 928zM192 608c-17.632 0-32 14.336-32 32l0 192c0 17.664 14.368 32 32 32l192 0c17.632 0 32-14.336 32-32l0-192c0-17.664-14.368-32-32-32L192 608z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-all" viewBox="0 0 1024 1024">'+""+'<path d="M460.8 486.4 486.4 486.4 486.4 460.8 486.4 243.2C486.4 108.884349 377.51565 0 243.2 0 108.884349 0 0 108.884349 0 243.2 0 377.51565 108.884349 486.4 243.2 486.4L460.8 486.4ZM51.2 243.2C51.2 137.161328 137.161328 51.2 243.2 51.2 349.238671 51.2 435.2 137.161328 435.2 243.2L435.2 460.8 460.8 435.2 243.2 435.2C137.161328 435.2 51.2 349.238671 51.2 243.2Z"  ></path>'+""+'<path d="M460.8 588.8 435.2 563.2 435.2 780.8C435.2 886.838671 349.238671 972.8 243.2 972.8 137.161328 972.8 51.2 886.838671 51.2 780.8 51.2 674.761329 137.161328 588.8 243.2 588.8L460.8 588.8ZM0 780.8C0 915.11565 108.884349 1024 243.2 1024 377.51565 1024 486.4 915.11565 486.4 780.8L486.4 563.2 486.4 537.6 460.8 537.6 243.2 537.6C108.884349 537.6 0 646.48435 0 780.8Z"  ></path>'+""+'<path d="M563.2 435.2 588.8 460.8 588.8 243.2C588.8 137.161328 674.761329 51.2 780.8 51.2 886.838671 51.2 972.8 137.161328 972.8 243.2 972.8 349.238671 886.838671 435.2 780.8 435.2L563.2 435.2ZM1024 243.2C1024 108.884349 915.11565 0 780.8 0 646.48435 0 537.6 108.884349 537.6 243.2L537.6 460.8 537.6 486.4 563.2 486.4 780.8 486.4C915.11565 486.4 1024 377.51565 1024 243.2Z"  ></path>'+""+'<path d="M1024 780.8C1024 646.48435 915.11565 537.6 780.8 537.6L563.2 537.6 537.6 537.6 537.6 563.2 537.6 780.8C537.6 915.11565 646.48435 1024 780.8 1024 818.513163 1024 855.051123 1015.390662 888.179087 999.065099 900.861235 992.815296 906.075682 977.467919 899.825882 964.785773 893.576079 952.103625 878.228702 946.889178 865.546554 953.138978 839.420429 966.014014 810.620764 972.8 780.8 972.8 674.761329 972.8 588.8 886.838671 588.8 780.8L588.8 563.2 563.2 588.8 780.8 588.8C886.838671 588.8 972.8 674.761329 972.8 780.8 972.8 799.469549 970.142607 817.755731 964.968006 835.279443 960.963957 848.839106 968.71031 863.07731 982.269973 867.081361 995.829636 871.085412 1010.06784 863.339057 1014.071891 849.779394 1020.63305 827.560122 1024 804.391296 1024 780.8Z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-paragraphleft" viewBox="0 0 1024 1024">'+""+'<path d="M0 64l1024 0 0 128-1024 0zM0 256l640 0 0 128-640 0zM0 640l640 0 0 128-640 0zM0 448l1024 0 0 128-1024 0zM0 832l1024 0 0 128-1024 0z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-map" viewBox="0 0 1024 1024">'+""+'<path d="M0 192l320-128 0 768-320 128z"  ></path>'+""+'<path d="M384 32l320 192 0 736-320-160z"  ></path>'+""+'<path d="M768 224l256-192 0 768-256 192z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-home" viewBox="0 0 1024 1024">'+""+'<path d="M512 32l-512 512 96 96 96-96 0 416 256 0 0-192 128 0 0 192 256 0 0-416 96 96 96-96-512-512zM512 448c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-calendar" viewBox="0 0 1024 1024">'+""+'<path d="M320 384l128 0 0 128-128 0zM512 384l128 0 0 128-128 0zM704 384l128 0 0 128-128 0zM128 768l128 0 0 128-128 0zM320 768l128 0 0 128-128 0zM512 768l128 0 0 128-128 0zM320 576l128 0 0 128-128 0zM512 576l128 0 0 128-128 0zM704 576l128 0 0 128-128 0zM128 576l128 0 0 128-128 0zM832 0l0 64-128 0 0-64-448 0 0 64-128 0 0-64-128 0 0 1024 960 0 0-1024-128 0zM896 960l-832 0 0-704 832 0 0 704z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-map1" viewBox="0 0 1024 1024">'+""+'<path d="M672 192l-320-128-352 128 0 768 352-128 320 128 352-128 0-768-352 128zM384 145.73l256 102.4 0 630.138-256-102.398 0-630.14zM64 236.828l256-93.09 0 631.8-256 93.088 0-631.798zM960 787.172l-256 93.092 0-631.8 256-93.09 0 631.798z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-userplus" viewBox="0 0 1024 1024">'+""+'<path d="M384 736c0-151.234 95.874-280.486 230.032-330.2 16.28-36.538 25.968-77.164 25.968-117.8 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.06 57.502 198.104 128 237.832l0 52.78c-217.102 17.748-384 124.42-384 253.388l397.306 0c-8.664-30.53-13.306-62.732-13.306-96z"  ></path>'+""+'<path d="M736 448c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.056 0 288-128.942 288-288s-128.942-288-288-288zM896 768l-128 0 0 128-64 0 0-128-128 0 0-64 128 0 0-128 64 0 0 128 128 0 0 64z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-users" viewBox="0 0 1152 1024">'+""+'<path d="M768 770.612l0-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.06 57.502 198.104 128 237.832l0 52.78c-217.102 17.748-384 124.42-384 253.388l896 0c0-128.968-166.898-235.64-384-253.388z"  ></path>'+""+'<path d="M327.196 795.328c55.31-36.15 124.08-63.636 199.788-80.414-15.054-17.784-28.708-37.622-40.492-59.02-30.414-55.234-46.492-116.058-46.492-175.894 0-86.042 0-167.31 30.6-233.762 29.706-64.504 83.128-104.496 159.222-119.488-16.914-76.48-61.94-126.75-181.822-126.75-192 0-192 128.942-192 288 0 99.06 57.502 198.104 128 237.832l0 52.78c-217.102 17.748-384 124.42-384 253.388l279.006 0c14.518-12.91 30.596-25.172 48.19-36.672z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-list1" viewBox="0 0 1024 1024">'+""+'<path d="M384 64l640 0 0 128-640 0 0-128zM384 448l640 0 0 128-640 0 0-128zM384 832l640 0 0 128-640 0 0-128zM0 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 896c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-list2" viewBox="0 0 1024 1024">'+""+'<path d="M0 0l256 0 0 256-256 0zM384 64l640 0 0 128-640 0zM0 384l256 0 0 256-256 0zM384 448l640 0 0 128-640 0zM0 768l256 0 0 256-256 0zM384 832l640 0 0 128-640 0z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-qrcode" viewBox="0 0 1024 1024">'+""+'<path d="M320 64l-256 0 0 256 256 0 0-256zM384 0l0 0 0 384-384 0 0-384 384 0zM128 128l128 0 0 128-128 0zM960 64l-256 0 0 256 256 0 0-256zM1024 0l0 0 0 384-384 0 0-384 384 0zM768 128l128 0 0 128-128 0zM320 704l-256 0 0 256 256 0 0-256zM384 640l0 0 0 384-384 0 0-384 384 0zM128 768l128 0 0 128-128 0zM448 0l64 0 0 64-64 0zM512 64l64 0 0 64-64 0zM448 128l64 0 0 64-64 0zM512 192l64 0 0 64-64 0zM448 256l64 0 0 64-64 0zM512 320l64 0 0 64-64 0zM448 384l64 0 0 64-64 0zM448 512l64 0 0 64-64 0zM512 576l64 0 0 64-64 0zM448 640l64 0 0 64-64 0zM512 704l64 0 0 64-64 0zM448 768l64 0 0 64-64 0zM512 832l64 0 0 64-64 0zM448 896l64 0 0 64-64 0zM512 960l64 0 0 64-64 0zM960 512l64 0 0 64-64 0zM64 512l64 0 0 64-64 0zM128 448l64 0 0 64-64 0zM0 448l64 0 0 64-64 0zM256 448l64 0 0 64-64 0zM320 512l64 0 0 64-64 0zM384 448l64 0 0 64-64 0zM576 512l64 0 0 64-64 0zM640 448l64 0 0 64-64 0zM704 512l64 0 0 64-64 0zM768 448l64 0 0 64-64 0zM832 512l64 0 0 64-64 0zM896 448l64 0 0 64-64 0zM960 640l64 0 0 64-64 0zM576 640l64 0 0 64-64 0zM640 576l64 0 0 64-64 0zM704 640l64 0 0 64-64 0zM832 640l64 0 0 64-64 0zM896 576l64 0 0 64-64 0zM960 768l64 0 0 64-64 0zM576 768l64 0 0 64-64 0zM640 704l64 0 0 64-64 0zM768 704l64 0 0 64-64 0zM832 768l64 0 0 64-64 0zM896 704l64 0 0 64-64 0zM960 896l64 0 0 64-64 0zM640 832l64 0 0 64-64 0zM704 896l64 0 0 64-64 0zM768 832l64 0 0 64-64 0zM832 896l64 0 0 64-64 0zM640 960l64 0 0 64-64 0zM768 960l64 0 0 64-64 0zM896 960l64 0 0 64-64 0z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-statsbars" viewBox="0 0 1024 1024">'+""+'<path d="M0 832l1024 0 0 128-1024 0zM128 576l128 0 0 192-128 0zM320 320l128 0 0 448-128 0zM512 512l128 0 0 256-128 0zM704 128l128 0 0 640-128 0z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-statsdots" viewBox="0 0 1024 1024">'+""+'<path d="M128 896l896 0 0 128-1024 0 0-1024 128 0zM288 832c-53.02 0-96-42.98-96-96s42.98-96 96-96c2.828 0 5.622 0.148 8.388 0.386l103.192-171.986c-9.84-15.07-15.58-33.062-15.58-52.402 0-53.02 42.98-96 96-96s96 42.98 96 96c0 19.342-5.74 37.332-15.58 52.402l103.192 171.986c2.766-0.238 5.56-0.386 8.388-0.386 2.136 0 4.248 0.094 6.35 0.23l170.356-298.122c-10.536-15.408-16.706-34.036-16.706-54.11 0-53.02 42.98-96 96-96s96 42.98 96 96c0 53.02-42.98 96-96 96-2.14 0-4.248-0.094-6.35-0.232l-170.356 298.124c10.536 15.406 16.706 34.036 16.706 54.11 0 53.02-42.98 96-96 96s-96-42.98-96-96c0-19.34 5.74-37.332 15.578-52.402l-103.19-171.984c-2.766 0.238-5.56 0.386-8.388 0.386s-5.622-0.146-8.388-0.386l-103.192 171.986c9.84 15.068 15.58 33.06 15.58 52.4 0 53.02-42.98 96-96 96z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-7" viewBox="0 0 1024 1024">'+""+'<path d="M565.747623 792.837176l260.819261 112.921839 126.910435-845.424882L66.087673 581.973678l232.843092 109.933785 562.612725-511.653099-451.697589 563.616588-5.996574 239.832274L565.747623 792.837176z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-qq1193403easyiconnet" viewBox="0 0 1024 1024">'+""+'<path d="M459.352747 89.050453c-121.173333 26.965333-205.824 126.634667-215.722667 252.928-1.024 15.701333-3.413333 28.330667-5.12 28.330667-5.12 0-16.384 21.845333-16.384 31.744 0 5.12-2.389333 13.312-5.461333 17.749333-4.096 6.485333-5.12 14.336-4.096 33.109333l1.365333 24.917333-21.504 28.330667c-52.565333 68.949333-73.045333 142.336-57.344 203.776 7.168 26.96192 11.605333 31.402667 25.6 25.6 10.922667-4.437333 39.253333-33.792 45.397333-47.104 3.754667-8.192 9.216-10.24 9.216-3.413333 0 8.188587 20.821333 48.46592 36.181333 70.314667 8.533333 11.946667 15.018667 22.186667 14.336 22.528-0.341333 0.682667-7.168 4.440747-14.677333 8.192-27.989333 14.336-40.277333 35.157333-40.618667 70.656-0.341333 12.288 1.706667 20.135253 6.485333 26.96192 3.754667 5.464747 8.533333 12.629333 10.581333 16.042667 11.946667 20.48 33.792 30.72 79.530667 37.546667 34.133333 4.778667 57.685333 2.730667 124.928-10.581333 67.925333-13.312 96.252587-13.312 166.912 0.682667 100.007253 19.797333 160.768 13.308587 192.853333-20.48 23.893333-25.944747 31.061333-47.107413 22.86592-67.242667-2.730667-6.144-4.092587-12.291413-3.072-12.970667 0.68608-1.027413-1.020587-6.485333-3.754667-12.291413-6.485333-11.946667-22.86592-25.255253-40.618667-32.768l-12.288-5.12 18.09408-26.624c9.895253-14.680747 22.186667-37.546667 27.648-51.2l9.557333-24.576 12.629333 19.456c13.312 20.48 31.744 39.594667 41.639253 43.008 14.339413 5.12 26.28608-24.576 29.013333-70.997333 1.365333-24.576 0.344747-36.864-5.461333-59.733333-8.192-33.792-34.812587-88.746667-55.978667-117.077333-14.67392-19.456-15.015253-19.456-11.60192-37.546667 4.096-23.210667-1.36192-50.858667-14.677333-72.021333-8.192-12.629333-10.922667-22.186667-13.653333-45.738667-12.629333-111.274667-90.794667-204.8-199.68-239.616C560.725333 83.58912 494.168747 81.199787 459.352747 89.050453zM606.467413 211.930453c15.018667 9.898667 25.941333 33.450667 27.989333 59.050667 5.464747 79.189333-55.975253 116.394667-88.746667 53.589333-11.264-20.821333-10.922667-65.877333 0.344747-88.405333C559.018667 209.199787 585.987413 198.618453 606.467413 211.930453zM463.107413 215.343787c15.36 10.24 26.282667 33.450667 27.989333 60.757333 1.706667 30.72-3.413333 50.176-18.432 66.56-13.653333 15.36-27.648 19.456-43.349333 12.629333-24.576-10.581333-37.546667-35.498667-37.546667-73.728 0-28.672 8.192-50.176 24.234667-63.829333C427.267413 208.175787 450.47808 207.151787 463.107413 215.343787zM610.563413 380.207787c44.373333 11.264 92.842667 36.181333 92.842667 48.128 0 6.485333-30.040747 25.6-48.469333 30.72-10.922667 3.413333-10.584747 2.389333 3.413333-16.384 12.291413-16.384 7.171413-16.725333-13.653333-1.024-75.776 57.002667-167.253333 58.368-240.981333 3.072-10.24-7.509333-19.114667-12.970667-19.797333-11.946667-1.024 0.682667 1.706667 7.168 5.802667 13.994667 4.096 6.826667 6.485333 13.312 5.461333 14.336-2.389333 2.389333-30.72-9.898667-43.349333-19.114667-5.802667-4.096-10.24-10.24-10.24-13.994667 0-14.336 62.122667-42.325333 115.712-52.565333C494.168747 368.26112 573.016747 370.991787 610.563413 380.207787L610.563413 380.207787zM390.06208 499.674453c28.330667 9.898667 78.506667 17.408 114.346667 17.408 21.504 0 31.744 1.36192 31.744 4.096 0 5.12-67.242667 1.36192-104.448-5.802667-29.354667-5.461333-59.392-14.677333-64.170667-19.114667C362.072747 491.482453 369.240747 492.506453 390.06208 499.674453L390.06208 499.674453zM585.64608 517.082453c-5.461333 1.36192-18.773333 2.389333-29.013333 2.389333l-18.773333 0 20.48-2.389333c11.264-1.365333 24.234667-2.389333 29.013333-2.389333C594.858667 514.351787 594.520747 514.69312 585.64608 517.082453zM309.848747 567.599787c2.730667 1.706667 2.048 13.653333-2.730667 46.762667-8.192 54.954667-6.485333 76.117333 7.850667 92.16 12.970667 15.015253 35.498667 23.210667 63.829333 23.548587 47.104 0.682667 51.541333-5.461333 51.541333-71.68l0-43.34592 28.330667 3.068587c103.082667 10.922667 202.410667-9.895253 275.11808-58.368 10.24-6.826667 19.79392-10.922667 21.159253-9.557333 12.629333 12.62592 17.408 95.573333 8.192 132.437333-27.306667 105.468587-121.173333 179.882667-233.813333 185.002667-79.189333 3.754667-144.042667-20.48-197.973333-74.069333-40.96-40.96-64.512-89.429333-69.973333-145.411413-2.389333-26.279253 2.730667-70.652587 10.581333-89.42592l4.778667-11.267413 14.336 8.87808C299.267413 561.114453 307.459413 566.234453 309.848747 567.599787L309.848747 567.599787zM280.49408 795.610453c2.730667 3.072 10.24 9.216 16.725333 13.312 6.485333 4.437333 18.090667 13.653333 25.941333 20.821333 7.509333 7.509333 24.917333 22.186667 38.229333 33.109333 17.749333 14.336 24.576 22.186667 24.576 27.648 0 10.24-6.826667 12.291413-47.104 12.291413-56.32 0-99.669333-15.704747-110.592-39.59808-3.754667-7.850667-3.072-11.264 4.778667-25.6 8.192-15.701333 8.533333-16.72192 2.389333-18.428587-8.533333-2.730667-4.778667-9.216 10.581333-20.48C260.01408 789.12512 274.008747 787.759787 280.49408 795.610453L280.49408 795.610453zM774.403413 794.927787c19.11808 9.898667 26.624 25.944747 11.946667 25.944747-4.775253 0-4.775253 1.024 0.682667 6.826667 3.413333 3.754667 6.826667 13.994667 7.850667 23.210667 1.36192 15.36 0.682667 17.066667-10.922667 27.306667-19.114667 16.725333-44.373333 22.869333-93.525333 22.186667-31.399253 0-43.687253-1.365333-47.100587-5.12-7.171413-6.826667 1.020587-16.725333 25.255253-30.378667 30.375253-17.408 42.32192-26.624 46.424747-34.474667 2.048-4.096 8.533333-8.533333 14.332587-10.24 6.826667-1.706667 13.994667-7.509333 20.138667-16.384C760.067413 788.442453 761.432747 788.10112 774.403413 794.927787zM562.432 260.399787c-8.188587 8.874667-13.308587 24.917333-10.919253 34.133333 2.730667 11.264 9.212587 7.850667 13.653333-8.192 4.437333-16.725333 17.408-20.821333 20.48-6.826667l3.413333 17.749333c3.413333 15.36 10.24 7.168 10.24-12.288-0.341333-14.677333-1.706667-19.114667-8.192-24.234667C581.205333 252.54912 569.603413 252.54912 562.432 260.399787L562.432 260.399787zM446.040747 257.327787c-13.312 14.677333-12.288 43.008 2.048 53.248 10.581333 7.168 15.36 6.485333 24.917333-3.413333 6.485333-6.144 8.533333-11.946667 8.533333-23.893333C481.539413 257.66912 460.035413 241.967787 446.040747 257.327787L446.040747 257.327787zM469.592747 278.490453c0 9.557333-9.898667 12.970667-13.312 4.437333-2.389333-6.485333 3.754667-16.042667 9.557333-13.994667C467.88608 269.615787 469.592747 273.711787 469.592747 278.490453L469.592747 278.490453z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-unie67e" viewBox="0 0 1024 1024">'+""+'<path d="M544 288q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM416 288q0-12.992 9.504-22.496t22.496-9.504 22.496 9.504 9.504 22.496-9.504 22.496-22.496 9.504-22.496-9.504-9.504-22.496zM304 448q-32.992 0-56.512 23.488t-23.488 56.512 23.488 56.512 56.512 23.488 56.512-23.488 23.488-56.512-23.488-56.512-56.512-23.488zM304 544q-7.008 0-11.488-4.512t-4.512-11.488 4.512-11.488 11.488-4.512 11.488 4.512 4.512 11.488-4.512 11.488-11.488 4.512zM576 736q0-26.016 19.008-44.992t44.992-19.008 44.992 19.008 19.008 44.992-19.008 44.992-44.992 19.008-44.992-19.008-19.008-44.992zM888 268.992q64-98.016 64-148.992 0-28-16.992-44.992-42.016-42.016-160.992 26.016-11.008 6.016-14.496 19.008t3.008 24.512 19.008 15.008 24.512-3.488q56-32 82.016-32.992-0.992 39.008-86.016 158.016t-244 275.008q-154.016 152-278.496 238.496t-163.488 87.488q0.992-8 4.512-19.488t17.504-38.496 36-60.992l4-6.016 2.016-6.016 0-2.016q16-18.016 4-36.992-28-44.992-42.016-96t-14.016-104q0-159.008 112.512-271.488t271.488-112.512q88.992 0 168.992 39.008 6.016 3.008 12.512 3.488t12-1.504 10.496-6.496 8-10.496q6.016-11.008 1.504-24t-16.512-18.016q-92.992-46.016-196.992-46.016-184.992 0-316.512 131.488t-131.488 316.512q0 115.008 56 216.992l0 0.992-0.992 0q-100 150.016-50.016 199.008 16 15.008 43.008 15.008 52.992 0 150.016-60.992 112.992 76.992 250.016 76.992 184.992 0 316.512-131.488t131.488-316.512q0-132-72-243.008zM512 896q-103.008 0-192-52 136-96.992 283.008-242.016t244.992-276q15.008 28 26.016 58.496t16.512 62.496 5.504 64.992q0 159.008-112.512 271.488t-271.488 112.512z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-accountbalance" viewBox="0 0 1024 1024">'+""+'<path d="M489.984 41.984l406.016 214.016 0 86.016-809.984 0 0-86.016zM681.984 425.984l128 0 0 299.989333-128 0 0-299.989333zM86.016 937.984l0-128 809.984 0 0 128-809.984 0zM425.984 425.984l128 0 0 299.989333-128 0 0-299.989333zM169.984 425.984l128 0 0 299.989333-128 0 0-299.989333z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-addalert" viewBox="0 0 1024 1024">'+""+'<path d="M681.984 555.989333l0-86.016-128 0 0-128-84.010667 0 0 128-128 0 0 86.016 128 0 0 128 84.010667 0 0-128 128 0zM806.016 717.994667l89.984 89.984 0 45.994667-768 0 0-45.994667 89.984-89.984 0-248.021333q0-102.016 64-182.997333t162.005333-102.997333l0-29.994667q0-27.989333 20.010667-48t48-20.010667 48 20.010667 20.010667 48l0 29.994667q98.005333 22.016 162.005333 102.997333t64 182.997333l0 248.021333zM427.989333 896l168.021333 0q0 34.005333-25.002667 59.989333t-59.008 25.984-59.008-25.984-25.002667-59.989333z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-android" viewBox="0 0 1024 1024">'+""+'<path d="M639.872128 214.825175l0-43.945388-41.942058 0 0 43.945388 41.942058 0zM426.06993 214.825175l0-43.945388-41.942058 0 0 43.945388 41.942058 0zM661.866134 92.920413q105.878122 75.91342 105.878122 205.788878l-511.488511 0q0-131.878788 103.917416-205.788878l-55.965368-55.965368q-15.984016-15.984016 0-29.964702t29.964702 0l63.936064 63.936064q51.958708-27.961372 113.891442-27.961372 59.929404 0 111.888112 27.961372l63.936064-63.936064q15.984016-13.980686 29.964702 0t0 29.964702zM873.622378 342.697303q25.958042 0 44.968365 18.967699t18.967699 44.968365l0 297.686314q0 27.961372-18.967699 45.948718t-44.968365 17.987346-44.968365-17.987346-18.967699-45.948718l0-297.686314q0-25.958042 18.967699-44.968365t44.968365-18.967699zM150.377622 342.697303q25.958042 0 44.968365 18.967699t18.967699 44.968365l0 297.686314q0 27.961372-18.967699 45.948718t-44.968365 17.987346-44.968365-17.987346-18.967699-45.948718l0-297.686314q0-25.958042 18.967699-44.968365t44.968365-18.967699zM256.255744 768.255744l0-425.558442 511.488511 0 0 425.558442q0 17.987346-11.977356 29.964702t-29.964702 11.977356l-43.945388 0 0 149.866134q0 27.961372-18.967699 45.948718t-44.968365 17.987346-44.968365-17.987346-18.967699-45.948718l0-149.866134-83.92674 0 0 149.866134q0 27.961372-18.967699 45.948718t-44.968365 17.987346-44.968365-17.987346-18.967699-45.948718l0-149.866134-43.945388 0q-17.987346 0-29.964702-11.977356t-11.977356-29.964702z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-beachaccess" viewBox="0 0 1024 1024">'+""+'<path d="M742.016 376.021333q-100.010667-100.010667-230.997333-132.010667t-255.018667 9.984q96-11.989333 210.986667 36.992t212.992 146.986667l-244.010667 244.010667q-98.005333-98.005333-146.986667-212.992t-36.992-210.986667q-41.984 123.989333-9.984 255.018667t132.010667 230.997333l-121.984 121.984q-125.994667-125.994667-125.994667-304.981333t125.994667-304.981333q0-2.005333 2.005333-2.005333 139.989333-139.989333 336-123.989333 162.005333 11.989333 274.005333 123.989333zM557.994667 621.994667l61.994667-61.994667 274.005333 276.010667-61.994667 59.989333z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-extension" viewBox="0 0 1024 1024">'+""+'<path d="M873.984 470.016q43.989333 0 75.989333 31.018667t32 75.008-32 75.008-75.989333 31.018667l-64 0 0 171.989333q0 34.005333-25.002667 59.008t-59.008 25.002667l-162.005333 0 0-64q0-48-34.005333-80.981333t-82.005333-32.981333-82.005333 32.981333-34.005333 80.981333l0 64-162.005333 0q-34.005333 0-59.008-25.002667t-25.002667-59.008l0-162.005333 64 0q48 0 80.981333-34.005333t32.981333-82.005333-32.981333-82.005333-80.981333-34.005333l-64 0 0-162.005333q0-34.005333 25.002667-59.008t59.008-25.002667l171.989333 0 0-64q0-43.989333 31.018667-75.989333t75.008-32 75.008 32 31.018667 75.989333l0 64 171.989333 0q34.005333 0 59.008 25.002667t25.002667 59.008l0 171.989333 64 0z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-wxbbaobiao" viewBox="0 0 1024 1024">'+""+'<path d="M941.590594 896.266827 125.566322 896.266827 125.566322 80.177064c0-12.017708-9.710153-21.665439-21.664416-21.665439-11.997242 0-21.665439 9.648754-21.665439 21.665439l0 837.751109c0 11.932774 9.66922 21.666462 21.665439 21.666462l837.688687 0c11.974729 0 21.666462-9.733689 21.666462-21.666462C963.257056 905.912511 953.566346 896.266827 941.590594 896.266827"  ></path>'+""+'<path d="M204.97079 704.83182c6.368034 0 12.695137-2.792603 16.989953-8.207939L387.391493 488.178455l204.846458 204.889437c4.487198 4.486174 10.749832 6.941086 16.926508 6.347568 6.262634-0.50756 12.017708-3.640923 15.741519-8.632611l258.204713-344.868515c7.193843-9.56382 5.248537-23.104207-4.358261-30.29805-9.562796-7.193843-23.146163-5.246491-30.336936 4.315282L605.270778 644.744303 400.889925 440.361403c-4.40124-4.315282-10.156314-6.770194-16.587793-6.262634-6.1777 0.338714-11.932774 3.302209-15.741519 8.125051L188.024839 669.709905c-7.448646 9.309016-5.882987 23.019273 3.469008 30.464849C195.534883 703.307094 200.252325 704.83182 204.97079 704.83182"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-wxbbiaowang" viewBox="0 0 1024 1024">'+""+'<path d="M900.75249 282.353716c-36.104289 0-65.428152 29.606295-65.428152 66.23247 0 11.192923 3.052522 21.620413 7.884574 30.905894-32.695656 23.393803-71.771627 36.760229-112.574938 36.760229-91.393523 0-167.723979-64.032362-189.120288-149.97985 21.396309-10.901281 36.238342-33.082466 36.238342-58.988486 0-36.557614-29.328979-66.231447-65.389266-66.231447-36.193317 0-65.433268 29.674856-65.433268 66.231447 0 25.904996 14.750959 48.087205 36.19434 58.988486-21.352307 85.947488-97.729835 149.97985-189.123358 149.97985-37.611619 0-73.806983-11.818163-105.016799-31.983435 6.512321-10.339486 10.432607-22.562878 10.432607-35.682687 0-36.626175-29.262464-66.23247-65.434292-66.23247-36.105313 0-65.410756 29.606295-65.410756 66.23247 0 34.719756 26.5374 62.934355 60.162218 65.693188l173.152619 429.800883L722.352357 844.080258l175.169555-429.621804c1.063215 0.089028 2.125407 0.361227 3.230578 0.361227 36.153408 0 65.435315-29.674856 65.435315-66.23247C966.188828 311.960011 936.905898 282.353716 900.75249 282.353716M693.20041 798.144042 331.16798 798.144042 188.780039 437.289438c32.540114 16.014742 68.423369 24.89704 105.216343 24.89704 96.887654 0 180.087565-58.539254 218.364333-142.221142C550.549479 403.648246 633.747343 462.186478 730.633974 462.186478c37.702694 0 74.16514-9.151427 107.081831-25.727964L693.20041 798.144042z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-wxbgongju" viewBox="0 0 1024 1024">'+""+'<path d="M944.140673 718.412117 621.322359 452.362738c17.037025-37.017078 26.009374-77.727269 26.009374-118.662587 0-156.206668-127.07007-283.313577-283.313577-283.313577-28.04473 0-55.711859 3.996011-82.250282 12.062733l-30.853705 9.348925 175.299515 175.355797c7.463995 7.388271 11.496845 17.265222 11.496845 27.819602s-4.03285 20.430308-11.496845 27.894304l-92.992951 93.030813c-14.815427 14.776542-40.879036 14.852266-55.712883 0L102.189915 220.615607l-9.329483 30.758538c-8.066723 26.612101-12.156878 54.281277-12.156878 82.324984 0 156.131967 127.10691 283.239899 283.314601 283.239899 41.011043 0 81.684394-8.894577 118.662587-25.934672L623.357715 763.344468c0.678452 2.712785 1.811252 5.276167 3.618411 7.537673 1.88493 2.411933 4.297886 4.222161 6.935969 5.429663l113.687272 139.242298c14.175861 16.512069 34.529421 26.086122 55.789631 26.086122 19.525706 0 38.035268-7.841595 52.169173-21.937638l93.02979-93.030813c14.927991-14.927991 22.691815-34.45472 21.86396-54.958706C969.696722 751.207034 960.462406 732.358757 944.140673 718.412117M921.297408 799.380196l-93.030813 93.030813c-14.399965 14.32424-38.373982 13.269211-51.076282-1.658779l-53.714366-65.739237 64.685231-52.16815c8.329712-6.710842 9.572006-18.922978 2.938935-27.215852-6.710842-8.292873-18.847254-9.574053-27.140127-2.939959l-64.910359 52.393277-28.271904-34.6778 58.126862-46.89403c8.292873-6.708795 9.612938-18.845207 2.865257-27.139104-6.634094-8.367575-18.810415-9.650801-27.102265-2.939959l-58.31208 47.043433L492.783845 542.377868l-13.94664 7.388271c-35.132148 18.771529-74.786287 28.572756-114.818025 28.572756-134.947482 0-244.714468-109.692285-244.714468-244.639766 0-12.966313 0.998747-25.7822 2.996241-38.44766l127.917368 127.935788c29.345352 29.40061 80.930217 29.40061 110.295012 0l92.992951-93.030813c14.737656-14.70184 22.806425-34.302247 22.806425-55.184857 0-20.806885-8.068769-40.48404-22.806425-55.110155L325.607334 91.925642c12.664438-1.960655 25.51921-2.940982 38.410821-2.940982 134.947482 0 244.714468 109.691261 244.714468 244.713444 0 39.957037-9.874905 79.687924-28.572756 114.742301l-7.388271 13.947663L919.336754 747.9652c7.728008 6.634094 12.215206 15.60542 12.552897 25.25622C932.30409 782.870174 928.497391 792.145421 921.297408 799.380196"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-wxbpinpaibao" viewBox="0 0 1024 1024">'+""+'<path d="M920.325267 491.365031c-2.373047-7.238868-8.725732-12.588713-16.32992-13.674441l-248.359484-35.716456-111.046119-222.497467c-3.420913-6.835685-10.459213-11.17962-18.22099-11.17962s-14.762215 4.343935-18.22099 11.17962l-111.047142 222.497467-248.298086 35.716456c-7.66047 1.086751-14.016225 6.435573-16.409738 13.674441-2.39249 7.237845-0.402159 15.243169 5.148253 20.591991l179.681312 173.147502-42.431392 244.576321c-1.286296 7.52437 1.830695 15.123442 8.084119 19.630083 6.275937 4.503571 14.540158 5.066389 21.376866 1.52575l222.115774-115.472941 222.134193 115.472941c2.935865 1.529843 6.194072 2.293229 9.411347 2.293229 4.222161 0 8.40646-1.326205 11.945053-3.817955 6.233981-4.505617 9.370415-12.106736 8.084119-19.631106l-42.432415-244.576321 179.743734-173.147502C920.726403 506.607176 922.7372 498.602875 920.325267 491.365031L920.325267 491.365031zM698.49295 663.747099c-4.745071 4.584412-6.91755 11.263531-5.791913 17.736966L730.968595 896.380414 535.822057 792.897551c-5.91164-3.134387-12.94994-3.134387-18.904559 0L321.770959 896.380414l39.290865-214.896348c1.125637-6.473435-1.044796-13.152555-5.831822-17.736966L195.340455 511.553838l219.196281-30.30726c6.636141-0.962931 12.347213-5.068436 15.284101-10.979052l96.550986-196.492186 96.550986 196.492186c2.935865 5.910617 8.646937 10.016121 15.285125 10.979052l219.216747 30.30726L698.49295 663.747099 698.49295 663.747099z"  ></path>'+""+'<path d="M199.5575 420.552242c11.913331 0 21.605064-9.709129 21.605064-21.623483L221.162564 102.769618l609.439216 0 0 296.15914c0 11.914354 9.637498 21.623483 21.588691 21.623483 11.952216 0 21.586644-9.709129 21.586644-21.623483L873.777115 81.146135c0-11.914354-9.634428-21.586644-21.586644-21.586644L199.5575 59.559491c-11.933797 0-21.606087 9.67229-21.606087 21.586644l0 317.782623C177.951413 410.843112 187.623703 420.552242 199.5575 420.552242L199.5575 420.552242z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-iconfont-shanzi" viewBox="0 0 1024 1024">'+""+'<path d="M1017.69901 473.833651c-13.058633-55.777177-35.499128-108.649591-66.698962-157.151039-30.600861-47.568688-68.755947-89.611468-113.407586-124.958037-45.032524-35.649639-95.343178-63.424576-149.532309-82.551778-56.050554-19.784536-114.92908-29.816565-175.002479-29.816565-60.882269 0-120.509255 10.297215-177.224311 30.60598-54.824964 19.631977-105.598413 48.107252-150.909434 84.635385-44.956757 36.241445-83.145632 79.278417-113.50588 127.915018-30.99608 49.653319-52.88982 103.670437-65.074056 160.552386-8.402003 39.226071 12.373654 79.121762 49.402467 94.863999l361.065993 153.49884-60.120498 23.10602c-22.345273 8.589374-34.666709 31.268434-29.297455 53.927016 8.941591 37.738365 32.205289 71.886989 65.505111 96.155119 32.945558 24.010111 74.431344 37.232566 116.817125 37.232566 42.392948 0 82.33881-12.550786 115.518838-36.295711 33.000848-23.616939 56.44987-56.988433 66.025245-93.965028 5.848433-22.580767-6.523173-46.168013-28.776297-54.866943l-65.128322-25.456861 371.859792-160.786855c37.417889-16.179436 57.807542-56.822564 48.483018-96.643512zM666.931256 169.034252c47.568688 16.790695 91.731934 41.171453 131.260051 72.463436a457.835442 457.835442 0 0 1 18.409458 15.404355L655.034732 412.333979c-34.905275-19.731294-72.157294-32.187883-110.298047-36.868063l-1.44163-231.654055c42.355064 2.721487 83.821396 11.168541 123.636201 25.222391z m-442.164878 74.984242c39.772825-32.062969 84.34153-57.058057 132.468236-74.292095 39.469755-14.132689 80.572608-22.724111 122.578527-25.695426l1.436511 230.857471c-38.557474 4.025917-76.256931 15.986945-111.631145 35.374215L209.866799 256.576447a449.73139 449.73139 0 0 1 14.899579-12.557953zM80.583871 519.508151c-9.094149-3.866191-14.209481-13.601293-12.164782-23.146975 15.350089-71.665829 48.96834-138.639192 96.873886-194.579168l150.776329 145.050763c-40.505927 33.644872-75.541235 77.692418-102.776585 129.093509L80.583871 519.508151z m507.70992 334.421425c-22.021726 15.759643-49.926696 24.438095-78.575008 24.438095-52.351257 0-98.607324-28.726127-115.860815-70.110548l114.009631-43.816148 116.881629 45.686787c-7.508151 16.882845-20.092726 32.091638-36.455437 43.801814z m-72.715312-156.465036a20.757227 20.757227 0 0 1-16.284896 0.049146l-227.334282-96.645559c24.858912-45.528085 56.590142-83.799894 92.964692-111.848209 44.271778-34.138385 94.602908-52.182316 145.54837-52.182316 50.422257 0 100.296735 17.694786 144.23063 51.172765 35.957829 27.400195 67.478138 64.816037 92.35548 109.365287l-231.479994 100.088886z m428.444814-185.255667l-138.442606 59.861455c-26.222727-48.431824-59.426304-90.182796-97.576271-122.607196l153.175292-147.3586a448.10546 448.10546 0 0 1 36.432911 48.923289c27.268114 42.388852 46.875518 88.576319 58.277505 137.277425 2.312957 9.877422-2.67746 19.930952-11.866831 23.903627z" fill="#333333" ></path>'+""+"</symbol>"+""+'<symbol id="icon-accessory" viewBox="0 0 1024 1024">'+""+'<path d="M842.72 259.904a159.04 159.04 0 0 0-113.056-46.912h-0.16a158.592 158.592 0 0 0-112.768 46.656l-0.096 0.064-294.528 294.528a95.968 95.968 0 0 0 68.128 163.712c24.512 0 49.024-9.28 67.648-27.968l294.496-294.496a31.968 31.968 0 1 0-45.248-45.248l-294.496 294.496a31.872 31.872 0 0 1-45.088-0.16 31.552 31.552 0 0 1-0.192-45.088l294.496-294.496a95.04 95.04 0 0 1 67.648-28h0.096a95.52 95.52 0 0 1 67.872 28.16c18.112 18.112 28.096 42.24 28.128 67.84a95.136 95.136 0 0 1-27.968 67.776l-79.52 79.52-0.512 0.48-220.416 220.48a160.32 160.32 0 0 1-226.432 0.096A158.912 158.912 0 0 1 224 628.224c0-42.816 16.672-83.04 46.912-113.28l300.288-300.32a31.968 31.968 0 1 0-45.248-45.248l-300.288 300.288A222.848 222.848 0 0 0 160 628.224c0 59.872 23.264 116.16 65.504 158.4a223.168 223.168 0 0 0 158.336 65.44 223.68 223.68 0 0 0 158.592-65.6l311.456-311.424a31.68 31.68 0 0 0 7.104-11.072c18.496-26.56 28.64-57.92 28.608-91.04a159.104 159.104 0 0 0-46.88-113.024"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-activity" viewBox="0 0 1024 1024">'+""+'<path d="M800 845.088c0 1.76-0.736 2.784-0.096 2.88l-574.656 0.416C224.992 848.192 224 847.04 224 845.088v-477.12h576v477.12zM224 210.88c0-1.728 0.64-2.752 0.096-2.912H352V224a32 32 0 1 0 64 0v-16h192V224a32 32 0 1 0 64 0v-16h127.008a4.736 4.736 0 0 1 0.992 2.88V304H224V210.88zM799.84 144H672V128a32 32 0 0 0-64 0v16h-192V128a32 32 0 0 0-64 0v16H223.712C188.576 144 160 174.016 160 210.88V845.12c0 36.896 28.608 66.88 63.744 66.88h576.512c35.136 0 63.744-29.984 63.744-66.88V210.88c0-36.896-28.768-66.912-64.16-66.912z"  ></path>'+""+'<path d="M384 560h256a32 32 0 0 0 0-64h-256a32 32 0 0 0 0 64M384 720h256a32 32 0 0 0 0-64h-256a32 32 0 0 0 0 64"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-activity_fill" viewBox="0 0 1024 1024">'+""+'<path d="M799.84 144H672V128a32 32 0 0 0-64 0v16h-192V128a32 32 0 0 0-64 0v16H223.712C188.576 144 160 174.016 160 210.912V304h704V210.912c0-36.896-28.768-66.912-64.16-66.912M640 496a32 32 0 0 1 0 64h-256a32 32 0 0 1 0-64h256z m-288 192a32 32 0 0 1 32-32h256a32 32 0 0 1 0 64h-256a32 32 0 0 1-32-32z m480-320H160v477.12c0 36.864 28.608 66.88 63.744 66.88h576.512c35.136 0 63.744-30.016 63.744-66.88V368h-32z"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-add" viewBox="0 0 1024 1024">'+""+'<path d="M512 832a32 32 0 0 0 32-32v-256h256a32 32 0 0 0 0-64h-256V224a32 32 0 0 0-64 0v256H224a32 32 0 0 0 0 64h256v256a32 32 0 0 0 32 32"  ></path>'+""+"</symbol>"+""+'<symbol id="icon-mine_fill" viewBox="0 0 1024 1024">'+""+'<path d="M512 832a318.432 318.432 0 0 1-215.648-84.256C351.264 729.984 443.008 704 509.952 704c68.064 0 162.048 26.976 216.608 44.704A318.24 318.24 0 0 1 512 832z m-160-324.672v-91.264A160.224 160.224 0 0 1 512 256c88.224 0 160 71.808 160 160.064v95.104c0 10.24-1.184 20.192-3.008 29.888l-0.928 4.576a159.296 159.296 0 0 1-22.528 53.28l-1.984 2.944a163.2 163.2 0 0 1-41.056 40.96l-2.016 1.376a159.136 159.136 0 0 1-88.48 26.816 159.232 159.232 0 0 1-88.672-26.88l-1.792-1.248a162.144 162.144 0 0 1-41.12-41.024l-2.048-3.04a159.264 159.264 0 0 1-22.432-53.184l-0.928-4.608a160.896 160.896 0 0 1-3.008-29.856v-3.84zM512 128C300.256 128 128 300.256 128 512s172.256 384 384 384 384-172.256 384-384S723.744 128 512 128z"  ></path>'+""+"</symbol>"+""+"</svg>";var script=function(){var scripts=document.getElementsByTagName("script");return scripts[scripts.length-1]}();var shouldInjectCss=script.getAttribute("data-injectcss");var ready=function(fn){if(document.addEventListener){if(~["complete","loaded","interactive"].indexOf(document.readyState)){setTimeout(fn,0)}else{var loadFn=function(){document.removeEventListener("DOMContentLoaded",loadFn,false);fn()};document.addEventListener("DOMContentLoaded",loadFn,false)}}else if(document.attachEvent){IEContentLoaded(window,fn)}function IEContentLoaded(w,fn){var d=w.document,done=false,init=function(){if(!done){done=true;fn()}};var polling=function(){try{d.documentElement.doScroll("left")}catch(e){setTimeout(polling,50);return}init()};polling();d.onreadystatechange=function(){if(d.readyState=="complete"){d.onreadystatechange=null;init()}}}};var before=function(el,target){target.parentNode.insertBefore(el,target)};var prepend=function(el,target){if(target.firstChild){before(el,target.firstChild)}else{target.appendChild(el)}};function appendSvg(){var div,svg;div=document.createElement("div");div.innerHTML=svgSprite;svgSprite=null;svg=div.getElementsByTagName("svg")[0];if(svg){svg.setAttribute("aria-hidden","true");svg.style.position="absolute";svg.style.width=0;svg.style.height=0;svg.style.overflow="hidden";prepend(svg,document.body)}}if(shouldInjectCss&&!window.__iconfont__svg__cssinject__){window.__iconfont__svg__cssinject__=true;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(e){console&&console.log(e)}}ready(appendSvg)})(window)

================================================
FILE: src/assets/theme/theme-darkblue/alert.css
================================================
@charset "UTF-8";.el-alert{width:100%;padding:8px 16px;margin:0;box-sizing:border-box;border-radius:4px;position:relative;background-color:#fff;overflow:hidden;color:#fff;opacity:1;display:table;transition:opacity .2s}.el-alert .el-alert__description{color:#fff;font-size:12px;margin:5px 0 0}.el-alert--success{background-color:#13ce66}.el-alert--info{background-color:#50bfff}.el-alert--warning{background-color:#f7ba2a}.el-alert--error{background-color:#ff4949}.el-alert__content{display:table-cell;padding:0 8px}.el-alert__icon{font-size:16px;width:16px;display:table-cell;color:#fff;vertical-align:middle}.el-alert__icon.is-big{font-size:28px;width:28px}.el-alert__title{font-size:13px;line-height:18px}.el-alert__title.is-bold{font-weight:700}.el-alert__closebtn{font-size:12px;color:#fff;opacity:1;top:12px;right:15px;position:absolute;cursor:pointer}.el-alert__closebtn.is-customed{font-style:normal;font-size:13px;top:9px}.el-alert-fade-enter,.el-alert-fade-leave-active{opacity:0}

================================================
FILE: src/assets/theme/theme-darkblue/autocomplete.css
================================================
@charset "UTF-8";.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-input__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::placeholder{color:rgb(191, 203, 217)}.el-input.is-active .el-input__inner{outline:0;border-color:#1d8ce0}.el-input__inner{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-radius:4px;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61);display:block;font-size:inherit;height:36px;line-height:1;outline:0;padding:3px 10px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-input__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::placeholder{color:rgb(151, 168, 190)}.el-input__inner:hover{border-color:rgb(131, 145, 165)}.el-input__inner:focus{outline:0;border-color:#1d8ce0}.el-input__icon{position:absolute;width:35px;height:100%;right:0;top:0;text-align:center;color:rgb(191, 203, 217);transition:all .3s}.el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__icon+.el-input__inner{padding-right:35px}.el-input__icon.is-clickable:hover{cursor:pointer;color:rgb(131, 145, 165)}.el-input__icon.is-clickable:hover+.el-input__inner{border-color:rgb(131, 145, 165)}.el-input--large{font-size:16px}.el-input--large .el-input__inner{height:42px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:30px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:22px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:rgb(250, 253, 254);color:rgb(151, 168, 190);vertical-align:middle;display:table-cell;position:relative;border:1px solid rgb(191, 203, 217);border-radius:4px;padding:0 10px;width:1%;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:block;margin:-10px}.el-input-group__append .el-button,.el-input-group__append .el-select .el-input__inner,.el-input-group__append .el-select:hover .el-input__inner,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select .el-input__inner,.el-input-group__prepend .el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-textarea{display:inline-block;width:100%;vertical-align:bottom}.el-textarea.is-disabled .el-textarea__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:rgb(191, 203, 217)}.el-textarea__inner{display:block;resize:vertical;padding:5px 7px;line-height:1.5;width:100%;font-size:14px;color:rgb(31, 45, 61);background-color:#fff;border:1px solid rgb(191, 203, 217);border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:hover{border-color:rgb(131, 145, 165)}.el-textarea__inner:focus{outline:0;border-color:#1d8ce0}.el-autocomplete{position:relative;display:inline-block}.el-autocomplete-suggestion{margin:5px 0;box-shadow:0 0 6px 0 rgba(0,0,0,.04),0 2px 4px 0 rgba(0,0,0,.12)}.el-autocomplete-suggestion li{list-style:none;line-height:36px;padding:0 10px;margin:0;cursor:pointer;color:rgb(72, 87, 106);font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-autocomplete-suggestion li:hover{background-color:rgb(228, 232, 241)}.el-autocomplete-suggestion li.highlighted{background-color:#1d8ce0;color:#fff}.el-autocomplete-suggestion li:active{background-color:#0082e6}.el-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid rgb(209, 219, 229)}.el-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.el-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:#999}.el-autocomplete-suggestion.is-loading li:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-autocomplete-suggestion.is-loading li:hover{background-color:#fff}.el-autocomplete-suggestion.is-loading .el-icon-loading{vertical-align:middle}.el-autocomplete-suggestion__wrap{max-height:280px;overflow:auto;background-color:#fff;border:1px solid rgb(209, 219, 229);padding:6px 0;border-radius:2px;box-sizing:border-box}.el-autocomplete-suggestion__list{margin:0;padding:0}

================================================
FILE: src/assets/theme/theme-darkblue/badge.css
================================================
@charset "UTF-8";.el-badge{position:relative;vertical-align:middle;display:inline-block}.el-badge__content{background-color:#ff4949;border-radius:10px;color:#fff;display:inline-block;font-size:12px;height:18px;line-height:18px;padding:0 6px;text-align:center;white-space:nowrap;border:1px solid #fff}.el-badge__content.is-dot{width:8px;height:8px;padding:0;right:0;border-radius:50%}.el-badge__content.is-fixed{top:0;right:10px;position:absolute;-ms-transform:translateY(-50%) translateX(100%);transform:translateY(-50%) translateX(100%)}.el-badge__content.is-fixed.is-dot{right:5px}

================================================
FILE: src/assets/theme/theme-darkblue/base.css
================================================
@charset "UTF-8";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-leave-active{opacity:0}.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:opacity .2s linear}.el-fade-in-enter-active,.el-fade-in-leave-active,.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter,.el-zoom-in-center-leave-active{opacity:0;-ms-transform:scaleX(0);transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;-ms-transform:scaleY(1);transform:scaleY(1);transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;-ms-transform-origin:center top;transform-origin:center top}.el-zoom-in-top-enter,.el-zoom-in-top-leave-active{opacity:0;-ms-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;-ms-transform:scaleY(1);transform:scaleY(1);transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;-ms-transform-origin:center bottom;transform-origin:center bottom}.el-zoom-in-bottom-enter,.el-zoom-in-bottom-leave-active{opacity:0;-ms-transform:scaleY(0);transform:scaleY(0)}.collapse-transition{transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.list-enter-active,.list-leave-active{transition:all 1s}.list-enter,.list-leave-active{opacity:0;-ms-transform:translateY(-30px);transform:translateY(-30px)}@font-face{font-family:element-icons;src:url(fonts/element-icons.woff?t=1472440741) format('woff'),url(fonts/element-icons.ttf?t=1472440741) format('truetype');font-weight:400;font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-arrow-down:before{content:"\e600"}.el-icon-arrow-left:before{content:"\e601"}.el-icon-arrow-right:before{content:"\e602"}.el-icon-arrow-up:before{content:"\e603"}.el-icon-caret-bottom:before{content:"\e604"}.el-icon-caret-left:before{content:"\e605"}.el-icon-caret-right:before{content:"\e606"}.el-icon-caret-top:before{content:"\e607"}.el-icon-check:before{content:"\e608"}.el-icon-circle-check:before{content:"\e609"}.el-icon-circle-close:before{content:"\e60a"}.el-icon-circle-cross:before{content:"\e60b"}.el-icon-close:before{content:"\e60c"}.el-icon-upload:before{content:"\e60d"}.el-icon-d-arrow-left:before{content:"\e60e"}.el-icon-d-arrow-right:before{content:"\e60f"}.el-icon-d-caret:before{content:"\e610"}.el-icon-date:before{content:"\e611"}.el-icon-delete:before{content:"\e612"}.el-icon-document:before{content:"\e613"}.el-icon-edit:before{content:"\e614"}.el-icon-information:before{content:"\e615"}.el-icon-loading:before{content:"\e616"}.el-icon-menu:before{content:"\e617"}.el-icon-message:before{content:"\e618"}.el-icon-minus:before{content:"\e619"}.el-icon-more:before{content:"\e61a"}.el-icon-picture:before{content:"\e61b"}.el-icon-plus:before{content:"\e61c"}.el-icon-search:before{content:"\e61d"}.el-icon-setting:before{content:"\e61e"}.el-icon-share:before{content:"\e61f"}.el-icon-star-off:before{content:"\e620"}.el-icon-star-on:before{content:"\e621"}.el-icon-time:before{content:"\e622"}.el-icon-warning:before{content:"\e623"}.el-icon-delete2:before{content:"\e624"}.el-icon-upload2:before{content:"\e627"}.el-icon-view:before{content:"\e626"}.el-icon-loading{animation:rotating 1s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@keyframes rotating{0%{transform:rotateZ(0)}100%{transform:rotateZ(360deg)}}

================================================
FILE: src/assets/theme/theme-darkblue/breadcrumb-item.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/breadcrumb.css
================================================
@charset "UTF-8";.el-breadcrumb{font-size:13px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;content:""}.el-breadcrumb:after{clear:both}.el-breadcrumb__separator{margin:0 8px;color:rgb(191, 203, 217)}.el-breadcrumb__item{float:left}.el-breadcrumb__item:last-child .el-breadcrumb__item__inner,.el-breadcrumb__item:last-child .el-breadcrumb__item__inner a,.el-breadcrumb__item:last-child .el-breadcrumb__item__inner a:hover,.el-breadcrumb__item:last-child .el-breadcrumb__item__inner:hover{color:rgb(151, 168, 190);cursor:text}.el-breadcrumb__item:last-child .el-breadcrumb__separator{display:none}.el-breadcrumb__item__inner,.el-breadcrumb__item__inner a{transition:color .15s linear;color:rgb(72, 87, 106)}.el-breadcrumb__item__inner a:hover,.el-breadcrumb__item__inner:hover{color:#1d8ce0;cursor:pointer}

================================================
FILE: src/assets/theme/theme-darkblue/button-group.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/button.css
================================================
@charset "UTF-8";.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61);-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:10px 15px;font-size:14px;border-radius:4px}.el-button+.el-button{margin-left:10px}.el-button:focus,.el-button:hover{color:#1d8ce0;border-color:#1d8ce0}.el-button:active{color:rgb(26, 126, 202);border-color:rgb(26, 126, 202);outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:'';position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:rgba(255,255,255,.35)}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:rgb(191, 203, 217);cursor:not-allowed;background-image:none;background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229)}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:rgb(209, 219, 229);color:rgb(191, 203, 217)}.el-button.is-active{color:rgb(26, 126, 202);border-color:rgb(26, 126, 202)}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#1d8ce0;color:#1d8ce0}.el-button.is-plain:active{background:#fff;border-color:rgb(26, 126, 202);color:rgb(26, 126, 202);outline:0}.el-button--primary{color:#fff;background-color:#1d8ce0;border-color:#1d8ce0}.el-button--primary:focus,.el-button--primary:hover{background:rgb(74, 163, 230);border-color:rgb(74, 163, 230);color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:rgb(26, 126, 202);border-color:rgb(26, 126, 202);color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#fff;border-color:#1d8ce0;color:#1d8ce0}.el-button--primary.is-plain:active{background:#fff;border-color:rgb(26, 126, 202);color:rgb(26, 126, 202);outline:0}.el-button--success{color:#fff;background-color:#13ce66;border-color:#13ce66}.el-button--success:focus,.el-button--success:hover{background:#42d885;border-color:#42d885;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#11b95c;border-color:#11b95c;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#fff;border-color:#13ce66;color:#13ce66}.el-button--success.is-plain:active{background:#fff;border-color:#11b95c;color:#11b95c;outline:0}.el-button--warning{color:#fff;background-color:#f7ba2a;border-color:#f7ba2a}.el-button--warning:focus,.el-button--warning:hover{background:#f9c855;border-color:#f9c855;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#dea726;border-color:#dea726;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#fff;border-color:#f7ba2a;color:#f7ba2a}.el-button--warning.is-plain:active{background:#fff;border-color:#dea726;color:#dea726;outline:0}.el-button--danger{color:#fff;background-color:#ff4949;border-color:#ff4949}.el-button--danger:focus,.el-button--danger:hover{background:#ff6d6d;border-color:#ff6d6d;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#e64242;border-color:#e64242;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#fff;border-color:#ff4949;color:#ff4949}.el-button--danger.is-plain:active{background:#fff;border-color:#e64242;color:#e64242;outline:0}.el-button--info{color:#fff;background-color:#50bfff;border-color:#50bfff}.el-button--info:focus,.el-button--info:hover{background:#73ccff;border-color:#73ccff;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#48ace6;border-color:#48ace6;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#fff;border-color:#50bfff;color:#50bfff}.el-button--info.is-plain:active{background:#fff;border-color:#48ace6;color:#48ace6;outline:0}.el-button--large{padding:11px 19px;font-size:16px;border-radius:4px}.el-button--small{padding:7px 9px;font-size:12px;border-radius:4px}.el-button--mini{padding:4px;font-size:12px;border-radius:4px}.el-button--text{border:none;color:#1d8ce0;background:0 0;padding-left:0;padding-right:0}.el-button--text:focus,.el-button--text:hover{color:rgb(74, 163, 230)}.el-button--text:active{color:rgb(26, 126, 202)}.el-button-group{display:inline-block;vertical-align:middle}.el-button-group:after,.el-button-group:before{display:table;content:""}.el-button-group:after{clear:both}.el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button{float:left;position:relative}.el-button-group .el-button+.el-button{margin-left:0}.el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group .el-button:not(:last-child){margin-right:-1px}.el-button-group .el-button.is-active,.el-button-group .el-button:active,.el-button-group .el-button:focus,.el-button-group .el-button:hover{z-index:1}

================================================
FILE: src/assets/theme/theme-darkblue/card.css
================================================
@charset "UTF-8";.el-card{border:1px solid rgb(209, 219, 229);border-radius:4px;background-color:#fff;overflow:hidden;box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)}.el-card__header{padding:18px 20px;border-bottom:1px solid rgb(209, 219, 229);box-sizing:border-box}.el-card__body{padding:20px}

================================================
FILE: src/assets/theme/theme-darkblue/carousel-item.css
================================================
@charset "UTF-8";.el-carousel__item,.el-carousel__mask{position:absolute;height:100%;top:0;left:0}.el-carousel__item{width:100%;display:inline-block;transition:.4s ease-in-out;overflow:hidden;z-index:0}.el-carousel__item.is-active{z-index:2}.el-carousel__item--card{width:50%}.el-carousel__item--card.is-in-stage{cursor:pointer;z-index:1}.el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask,.el-carousel__item--card.is-in-stage:hover .el-carousel__mask{opacity:.12}.el-carousel__item--card.is-active{z-index:2}.el-carousel__mask{width:100%;background-color:#fff;opacity:.24;transition:.2s}

================================================
FILE: src/assets/theme/theme-darkblue/carousel.css
================================================
@charset "UTF-8";.el-carousel__arrow,.el-carousel__button{outline:0;margin:0;cursor:pointer;transition:.3s}.el-carousel{overflow-x:hidden;position:relative}.el-carousel__container{position:relative;height:300px}.el-carousel__arrow{border:none;padding:0;width:36px;height:36px;border-radius:50%;background-color:rgba(31,45,61,.11);color:#fff;position:absolute;top:50%;z-index:10;-ms-transform:translateY(-50%);transform:translateY(-50%);text-align:center;font-size:12px}.el-carousel__arrow:hover{background-color:rgba(31,45,61,.23)}.el-carousel__arrow i{cursor:pointer}.el-carousel__arrow--left{left:16px}.el-carousel__arrow--right{right:16px}.el-carousel__indicators{position:absolute;list-style:none;bottom:0;left:50%;-ms-transform:translateX(-50%);transform:translateX(-50%);margin:0;padding:0;z-index:2}.el-carousel__indicators--outside{bottom:26px;text-align:center;position:static;-ms-transform:none;transform:none}.el-carousel__indicators--outside .el-carousel__indicator:hover button{opacity:.64}.el-carousel__indicators--outside button{background-color:rgb(131, 145, 165);opacity:.24}.el-carousel__indicator{display:inline-block;background-color:transparent;padding:12px 4px;cursor:pointer}.el-carousel__indicator:hover button{opacity:.72}.el-carousel__indicator.is-active button{opacity:1}.el-carousel__button{display:block;opacity:.48;width:30px;height:2px;background-color:#fff;border:none;padding:0}.carousel-arrow-left-enter,.carousel-arrow-left-leave-active{-ms-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0}.carousel-arrow-right-enter,.carousel-arrow-right-leave-active{-ms-transform:translateY(-50%) translateX(10px);transform:translateY(-50%) translateX(10px);opacity:0}

================================================
FILE: src/assets/theme/theme-darkblue/cascader.css
================================================
@charset "UTF-8";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-input__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::placeholder{color:rgb(191, 203, 217)}.el-input.is-active .el-input__inner{outline:0;border-color:#1d8ce0}.el-input__inner{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid rgb(191, 203, 217);box-sizing:border-box;color:rgb(31, 45, 61);display:block;font-size:inherit;height:36px;line-height:1;outline:0;padding:3px 10px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-input__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::placeholder{color:rgb(151, 168, 190)}.el-input__inner:hover{border-color:rgb(131, 145, 165)}.el-input__inner:focus{outline:0;border-color:#1d8ce0}.el-input__icon{position:absolute;width:35px;height:100%;right:0;top:0;text-align:center;color:rgb(191, 203, 217);transition:all .3s}.el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__icon+.el-input__inner{padding-right:35px}.el-input__icon.is-clickable:hover{cursor:pointer;color:rgb(131, 145, 165)}.el-input__icon.is-clickable:hover+.el-input__inner{border-color:rgb(131, 145, 165)}.el-input--large{font-size:16px}.el-input--large .el-input__inner{height:42px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:30px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:22px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:rgb(250, 253, 254);color:rgb(151, 168, 190);vertical-align:middle;display:table-cell;position:relative;border:1px solid rgb(191, 203, 217);border-radius:4px;padding:0 10px;width:1%;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:block;margin:-10px}.el-input-group__append .el-button,.el-input-group__append .el-select .el-input__inner,.el-input-group__append .el-select:hover .el-input__inner,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select .el-input__inner,.el-input-group__prepend .el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-cascader__label,.el-textarea__inner{width:100%;font-size:14px;box-sizing:border-box}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-textarea{display:inline-block;width:100%;vertical-align:bottom}.el-textarea.is-disabled .el-textarea__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:rgb(191, 203, 217)}.el-textarea__inner{display:block;resize:vertical;padding:5px 7px;line-height:1.5;color:rgb(31, 45, 61);background-color:#fff;background-image:none;border:1px solid rgb(191, 203, 217);border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:hover{border-color:rgb(131, 145, 165)}.el-textarea__inner:focus{outline:0;border-color:#1d8ce0}.el-cascader{display:inline-block;position:relative;background-color:#fff}.el-cascader .el-input,.el-cascader .el-input__inner{cursor:pointer;background-color:transparent;z-index:1}.el-cascader .el-input__icon{transition:none}.el-cascader .el-icon-caret-bottom{transition:transform .3s}.el-cascader .el-icon-caret-bottom.is-reverse{-ms-transform:rotate(180deg);transform:rotateZ(180deg)}.el-cascader.is-disabled .el-cascader__label{z-index:2;color:#bbb}.el-cascader__label{position:absolute;left:0;top:0;height:100%;line-height:34px;padding:0 25px 0 10px;color:rgb(31, 45, 61);white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;text-align:left}.el-cascader__label span{color:rgb(151, 168, 190)}.el-cascader--large{font-size:16px}.el-cascader--large .el-cascader__label{line-height:40px}.el-cascader--small{font-size:13px}.el-cascader--small .el-cascader__label{line-height:28px}.el-cascader-menus{white-space:nowrap;background:#fff;position:absolute;margin:5px 0;z-index:2;border:1px solid rgb(209, 219, 229);border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04)}.el-cascader-menu{display:inline-block;vertical-align:top;height:204px;overflow:auto;border-right:solid 1px rgb(209, 219, 229);background-color:#fff;box-sizing:border-box;margin:0;padding:6px 0;min-width:160px}.el-cascader-menu:last-child{border-right:0}.el-cascader-menu__item{font-size:14px;padding:8px 30px 8px 10px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:rgb(72, 87, 106);height:36px;line-height:1.5;box-sizing:border-box;cursor:pointer}.el-cascader-menu__item:hover{background-color:rgb(228, 232, 241)}.el-cascader-menu__item.selected{color:#fff;background-color:#1d8ce0}.el-cascader-menu__item.selected.hover{background-color:rgb(26, 123, 197)}.el-cascader-menu__item.is-active{color:#fff;background-color:#1d8ce0}.el-cascader-menu__item.is-active:hover{background-color:rgb(26, 123, 197)}.el-cascader-menu__item.is-disabled{color:rgb(191, 203, 217);background-color:#fff;cursor:not-allowed}.el-cascader-menu__item.is-disabled:hover{background-color:#fff}.el-cascader-menu__item__keyword{font-weight:700}.el-cascader-menu__item--extensible:after{font-family:element-icons;content:"\e606";font-size:12px;-ms-transform:scale(.8);transform:scale(.8);color:rgb(191, 203, 217);position:absolute;right:10px;margin-top:1px}.el-cascader-menu--flexible{height:auto;max-height:180px;overflow:auto}.el-cascader-menu--flexible .el-cascader-menu__item{overflow:visible}

================================================
FILE: src/assets/theme/theme-darkblue/checkbox-group.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/checkbox.css
================================================
@charset "UTF-8";.el-checkbox,.el-checkbox__input{white-space:nowrap;cursor:pointer;display:inline-block;position:relative}.el-checkbox{color:rgb(31, 45, 61);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.el-checkbox+.el-checkbox{margin-left:15px}.el-checkbox__input{outline:0;line-height:1;vertical-align:middle}.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#1d8ce0;border-color:rgb(1, 130, 228)}.el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;border:1px solid #fff;margin-top:-1px;left:3px;right:3px;top:50%}.el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.el-checkbox__input.is-focus .el-checkbox__inner{border-color:#1d8ce0}.el-checkbox__input.is-checked .el-checkbox__inner{background-color:#1d8ce0;border-color:rgb(1, 130, 228)}.el-checkbox__input.is-checked .el-checkbox__inner::after{-ms-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:rgb(238, 241, 246)}.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:rgb(209, 219, 229);border-color:rgb(209, 219, 229)}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#fff}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:rgb(209, 219, 229);border-color:rgb(209, 219, 229)}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{border-color:#fff}.el-checkbox__input.is-disabled+.el-checkbox__label{color:#bbb;cursor:not-allowed}.el-checkbox__inner{display:inline-block;position:relative;border:1px solid rgb(191, 203, 217);border-radius:4px;box-sizing:border-box;width:18px;height:18px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:#1d8ce0}.el-checkbox__inner::after{box-sizing:content-box;content:"";border:2px solid #fff;border-left:0;border-top:0;height:8px;left:5px;position:absolute;top:1px;-ms-transform:rotate(45deg) scaleY(0);transform:rotate(45deg) scaleY(0);width:4px;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) .05s;-ms-transform-origin:center;transform-origin:center}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;left:-999px}.el-checkbox__label{font-size:14px;padding-left:5px}

================================================
FILE: src/assets/theme/theme-darkblue/col.css
================================================
@charset "UTF-8";.el-col-pull-1,.el-col-pull-10,.el-col-pull-11,.el-col-pull-12,.el-col-pull-13,.el-col-pull-14,.el-col-pull-15,.el-col-pull-16,.el-col-pull-17,.el-col-pull-18,.el-col-pull-19,.el-col-pull-2,.el-col-pull-20,.el-col-pull-21,.el-col-pull-22,.el-col-pull-23,.el-col-pull-24,.el-col-pull-3,.el-col-pull-4,.el-col-pull-5,.el-col-pull-6,.el-col-pull-7,.el-col-pull-8,.el-col-pull-9,.el-col-push-1,.el-col-push-10,.el-col-push-11,.el-col-push-13,.el-col-push-14,.el-col-push-15,.el-col-push-16,.el-col-push-17,.el-col-push-18,.el-col-push-19,.el-col-push-2,.el-col-push-20,.el-col-push-21,.el-col-push-22,.el-col-push-23,.el-col-push-24,.el-col-push-3,.el-col-push-4,.el-col-push-5,.el-col-push-6,.el-col-push-7,.el-col-push-8,.el-col-push-9{position:relative}.el-col-1,.el-col-10,.el-col-11,.el-col-12,.el-col-13,.el-col-14,.el-col-15,.el-col-16,.el-col-17,.el-col-18,.el-col-19,.el-col-2,.el-col-20,.el-col-21,.el-col-22,.el-col-23,.el-col-24,.el-col-3,.el-col-4,.el-col-5,.el-col-6,.el-col-7,.el-col-8,.el-col-9{float:left;box-sizing:border-box}.el-col-0{display:none}.el-col-1{width:4.16667%}.el-col-offset-1{margin-left:4.16667%}.el-col-pull-1{right:4.16667%}.el-col-push-1{left:4.16667%}.el-col-2{width:8.33333%}.el-col-offset-2{margin-left:8.33333%}.el-col-pull-2{right:8.33333%}.el-col-push-2{left:8.33333%}.el-col-3{width:12.5%}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{right:12.5%}.el-col-push-3{left:12.5%}.el-col-4{width:16.66667%}.el-col-offset-4{margin-left:16.66667%}.el-col-pull-4{right:16.66667%}.el-col-push-4{left:16.66667%}.el-col-5{width:20.83333%}.el-col-offset-5{margin-left:20.83333%}.el-col-pull-5{right:20.83333%}.el-col-push-5{left:20.83333%}.el-col-6{width:25%}.el-col-offset-6{margin-left:25%}.el-col-pull-6{right:25%}.el-col-push-6{left:25%}.el-col-7{width:29.16667%}.el-col-offset-7{margin-left:29.16667%}.el-col-pull-7{right:29.16667%}.el-col-push-7{left:29.16667%}.el-col-8{width:33.33333%}.el-col-offset-8{margin-left:33.33333%}.el-col-pull-8{right:33.33333%}.el-col-push-8{left:33.33333%}.el-col-9{width:37.5%}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{right:37.5%}.el-col-push-9{left:37.5%}.el-col-10{width:41.66667%}.el-col-offset-10{margin-left:41.66667%}.el-col-pull-10{right:41.66667%}.el-col-push-10{left:41.66667%}.el-col-11{width:45.83333%}.el-col-offset-11{margin-left:45.83333%}.el-col-pull-11{right:45.83333%}.el-col-push-11{left:45.83333%}.el-col-12{width:50%}.el-col-offset-12{margin-left:50%}.el-col-pull-12{right:50%}.el-col-push-12{position:relative;left:50%}.el-col-13{width:54.16667%}.el-col-offset-13{margin-left:54.16667%}.el-col-pull-13{right:54.16667%}.el-col-push-13{left:54.16667%}.el-col-14{width:58.33333%}.el-col-offset-14{margin-left:58.33333%}.el-col-pull-14{right:58.33333%}.el-col-push-14{left:58.33333%}.el-col-15{width:62.5%}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{right:62.5%}.el-col-push-15{left:62.5%}.el-col-16{width:66.66667%}.el-col-offset-16{margin-left:66.66667%}.el-col-pull-16{right:66.66667%}.el-col-push-16{left:66.66667%}.el-col-17{width:70.83333%}.el-col-offset-17{margin-left:70.83333%}.el-col-pull-17{right:70.83333%}.el-col-push-17{left:70.83333%}.el-col-18{width:75%}.el-col-offset-18{margin-left:75%}.el-col-pull-18{right:75%}.el-col-push-18{left:75%}.el-col-19{width:79.16667%}.el-col-offset-19{margin-left:79.16667%}.el-col-pull-19{right:79.16667%}.el-col-push-19{left:79.16667%}.el-col-20{width:83.33333%}.el-col-offset-20{margin-left:83.33333%}.el-col-pull-20{right:83.33333%}.el-col-push-20{left:83.33333%}.el-col-21{width:87.5%}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{right:87.5%}.el-col-push-21{left:87.5%}.el-col-22{width:91.66667%}.el-col-offset-22{margin-left:91.66667%}.el-col-pull-22{right:91.66667%}.el-col-push-22{left:91.66667%}.el-col-23{width:95.83333%}.el-col-offset-23{margin-left:95.83333%}.el-col-pull-23{right:95.83333%}.el-col-push-23{left:95.83333%}.el-col-24{width:100%}.el-col-offset-24{margin-left:100%}.el-col-pull-24{right:100%}.el-col-push-24{left:100%}@media (max-width:768px){.el-col-xs-1{width:4.16667%}.el-col-xs-offset-1{margin-left:4.16667%}.el-col-xs-pull-1{position:relative;right:4.16667%}.el-col-xs-push-1{position:relative;left:4.16667%}.el-col-xs-2{width:8.33333%}.el-col-xs-offset-2{margin-left:8.33333%}.el-col-xs-pull-2{position:relative;right:8.33333%}.el-col-xs-push-2{position:relative;left:8.33333%}.el-col-xs-3{width:12.5%}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{position:relative;left:12.5%}.el-col-xs-4{width:16.66667%}.el-col-xs-offset-4{margin-left:16.66667%}.el-col-xs-pull-4{position:relative;right:16.66667%}.el-col-xs-push-4{position:relative;left:16.66667%}.el-col-xs-5{width:20.83333%}.el-col-xs-offset-5{margin-left:20.83333%}.el-col-xs-pull-5{position:relative;right:20.83333%}.el-col-xs-push-5{position:relative;left:20.83333%}.el-col-xs-6{width:25%}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{position:relative;left:25%}.el-col-xs-7{width:29.16667%}.el-col-xs-offset-7{margin-left:29.16667%}.el-col-xs-pull-7{position:relative;right:29.16667%}.el-col-xs-push-7{position:relative;left:29.16667%}.el-col-xs-8{width:33.33333%}.el-col-xs-offset-8{margin-left:33.33333%}.el-col-xs-pull-8{position:relative;right:33.33333%}.el-col-xs-push-8{position:relative;left:33.33333%}.el-col-xs-9{width:37.5%}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{position:relative;left:37.5%}.el-col-xs-10{width:41.66667%}.el-col-xs-offset-10{margin-left:41.66667%}.el-col-xs-pull-10{position:relative;right:41.66667%}.el-col-xs-push-10{position:relative;left:41.66667%}.el-col-xs-11{width:45.83333%}.el-col-xs-offset-11{margin-left:45.83333%}.el-col-xs-pull-11{position:relative;right:45.83333%}.el-col-xs-push-11{position:relative;left:45.83333%}.el-col-xs-12{width:50%}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{position:relative;left:50%}.el-col-xs-13{width:54.16667%}.el-col-xs-offset-13{margin-left:54.16667%}.el-col-xs-pull-13{position:relative;right:54.16667%}.el-col-xs-push-13{position:relative;left:54.16667%}.el-col-xs-14{width:58.33333%}.el-col-xs-offset-14{margin-left:58.33333%}.el-col-xs-pull-14{position:relative;right:58.33333%}.el-col-xs-push-14{position:relative;left:58.33333%}.el-col-xs-15{width:62.5%}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{position:relative;left:62.5%}.el-col-xs-16{width:66.66667%}.el-col-xs-offset-16{margin-left:66.66667%}.el-col-xs-pull-16{position:relative;right:66.66667%}.el-col-xs-push-16{position:relative;left:66.66667%}.el-col-xs-17{width:70.83333%}.el-col-xs-offset-17{margin-left:70.83333%}.el-col-xs-pull-17{position:relative;right:70.83333%}.el-col-xs-push-17{position:relative;left:70.83333%}.el-col-xs-18{width:75%}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{position:relative;left:75%}.el-col-xs-19{width:79.16667%}.el-col-xs-offset-19{margin-left:79.16667%}.el-col-xs-pull-19{position:relative;right:79.16667%}.el-col-xs-push-19{position:relative;left:79.16667%}.el-col-xs-20{width:83.33333%}.el-col-xs-offset-20{margin-left:83.33333%}.el-col-xs-pull-20{position:relative;right:83.33333%}.el-col-xs-push-20{position:relative;left:83.33333%}.el-col-xs-21{width:87.5%}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{position:relative;left:87.5%}.el-col-xs-22{width:91.66667%}.el-col-xs-offset-22{margin-left:91.66667%}.el-col-xs-pull-22{position:relative;right:91.66667%}.el-col-xs-push-22{position:relative;left:91.66667%}.el-col-xs-23{width:95.83333%}.el-col-xs-offset-23{margin-left:95.83333%}.el-col-xs-pull-23{position:relative;right:95.83333%}.el-col-xs-push-23{position:relative;left:95.83333%}.el-col-xs-24{width:100%}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{position:relative;left:100%}}@media (min-width:768px){.el-col-sm-1{width:4.16667%}.el-col-sm-offset-1{margin-left:4.16667%}.el-col-sm-pull-1{position:relative;right:4.16667%}.el-col-sm-push-1{position:relative;left:4.16667%}.el-col-sm-2{width:8.33333%}.el-col-sm-offset-2{margin-left:8.33333%}.el-col-sm-pull-2{position:relative;right:8.33333%}.el-col-sm-push-2{position:relative;left:8.33333%}.el-col-sm-3{width:12.5%}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{position:relative;left:12.5%}.el-col-sm-4{width:16.66667%}.el-col-sm-offset-4{margin-left:16.66667%}.el-col-sm-pull-4{position:relative;right:16.66667%}.el-col-sm-push-4{position:relative;left:16.66667%}.el-col-sm-5{width:20.83333%}.el-col-sm-offset-5{margin-left:20.83333%}.el-col-sm-pull-5{position:relative;right:20.83333%}.el-col-sm-push-5{position:relative;left:20.83333%}.el-col-sm-6{width:25%}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{position:relative;left:25%}.el-col-sm-7{width:29.16667%}.el-col-sm-offset-7{margin-left:29.16667%}.el-col-sm-pull-7{position:relative;right:29.16667%}.el-col-sm-push-7{position:relative;left:29.16667%}.el-col-sm-8{width:33.33333%}.el-col-sm-offset-8{margin-left:33.33333%}.el-col-sm-pull-8{position:relative;right:33.33333%}.el-col-sm-push-8{position:relative;left:33.33333%}.el-col-sm-9{width:37.5%}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{position:relative;left:37.5%}.el-col-sm-10{width:41.66667%}.el-col-sm-offset-10{margin-left:41.66667%}.el-col-sm-pull-10{position:relative;right:41.66667%}.el-col-sm-push-10{position:relative;left:41.66667%}.el-col-sm-11{width:45.83333%}.el-col-sm-offset-11{margin-left:45.83333%}.el-col-sm-pull-11{position:relative;right:45.83333%}.el-col-sm-push-11{position:relative;left:45.83333%}.el-col-sm-12{width:50%}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{position:relative;left:50%}.el-col-sm-13{width:54.16667%}.el-col-sm-offset-13{margin-left:54.16667%}.el-col-sm-pull-13{position:relative;right:54.16667%}.el-col-sm-push-13{position:relative;left:54.16667%}.el-col-sm-14{width:58.33333%}.el-col-sm-offset-14{margin-left:58.33333%}.el-col-sm-pull-14{position:relative;right:58.33333%}.el-col-sm-push-14{position:relative;left:58.33333%}.el-col-sm-15{width:62.5%}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{position:relative;left:62.5%}.el-col-sm-16{width:66.66667%}.el-col-sm-offset-16{margin-left:66.66667%}.el-col-sm-pull-16{position:relative;right:66.66667%}.el-col-sm-push-16{position:relative;left:66.66667%}.el-col-sm-17{width:70.83333%}.el-col-sm-offset-17{margin-left:70.83333%}.el-col-sm-pull-17{position:relative;right:70.83333%}.el-col-sm-push-17{position:relative;left:70.83333%}.el-col-sm-18{width:75%}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{position:relative;left:75%}.el-col-sm-19{width:79.16667%}.el-col-sm-offset-19{margin-left:79.16667%}.el-col-sm-pull-19{position:relative;right:79.16667%}.el-col-sm-push-19{position:relative;left:79.16667%}.el-col-sm-20{width:83.33333%}.el-col-sm-offset-20{margin-left:83.33333%}.el-col-sm-pull-20{position:relative;right:83.33333%}.el-col-sm-push-20{position:relative;left:83.33333%}.el-col-sm-21{width:87.5%}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{position:relative;left:87.5%}.el-col-sm-22{width:91.66667%}.el-col-sm-offset-22{margin-left:91.66667%}.el-col-sm-pull-22{position:relative;right:91.66667%}.el-col-sm-push-22{position:relative;left:91.66667%}.el-col-sm-23{width:95.83333%}.el-col-sm-offset-23{margin-left:95.83333%}.el-col-sm-pull-23{position:relative;right:95.83333%}.el-col-sm-push-23{position:relative;left:95.83333%}.el-col-sm-24{width:100%}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{position:relative;left:100%}}@media (min-width:992px){.el-col-md-1{width:4.16667%}.el-col-md-offset-1{margin-left:4.16667%}.el-col-md-pull-1{position:relative;right:4.16667%}.el-col-md-push-1{position:relative;left:4.16667%}.el-col-md-2{width:8.33333%}.el-col-md-offset-2{margin-left:8.33333%}.el-col-md-pull-2{position:relative;right:8.33333%}.el-col-md-push-2{position:relative;left:8.33333%}.el-col-md-3{width:12.5%}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{position:relative;left:12.5%}.el-col-md-4{width:16.66667%}.el-col-md-offset-4{margin-left:16.66667%}.el-col-md-pull-4{position:relative;right:16.66667%}.el-col-md-push-4{position:relative;left:16.66667%}.el-col-md-5{width:20.83333%}.el-col-md-offset-5{margin-left:20.83333%}.el-col-md-pull-5{position:relative;right:20.83333%}.el-col-md-push-5{position:relative;left:20.83333%}.el-col-md-6{width:25%}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{position:relative;left:25%}.el-col-md-7{width:29.16667%}.el-col-md-offset-7{margin-left:29.16667%}.el-col-md-pull-7{position:relative;right:29.16667%}.el-col-md-push-7{position:relative;left:29.16667%}.el-col-md-8{width:33.33333%}.el-col-md-offset-8{margin-left:33.33333%}.el-col-md-pull-8{position:relative;right:33.33333%}.el-col-md-push-8{position:relative;left:33.33333%}.el-col-md-9{width:37.5%}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{position:relative;left:37.5%}.el-col-md-10{width:41.66667%}.el-col-md-offset-10{margin-left:41.66667%}.el-col-md-pull-10{position:relative;right:41.66667%}.el-col-md-push-10{position:relative;left:41.66667%}.el-col-md-11{width:45.83333%}.el-col-md-offset-11{margin-left:45.83333%}.el-col-md-pull-11{position:relative;right:45.83333%}.el-col-md-push-11{position:relative;left:45.83333%}.el-col-md-12{width:50%}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{position:relative;left:50%}.el-col-md-13{width:54.16667%}.el-col-md-offset-13{margin-left:54.16667%}.el-col-md-pull-13{position:relative;right:54.16667%}.el-col-md-push-13{position:relative;left:54.16667%}.el-col-md-14{width:58.33333%}.el-col-md-offset-14{margin-left:58.33333%}.el-col-md-pull-14{position:relative;right:58.33333%}.el-col-md-push-14{position:relative;left:58.33333%}.el-col-md-15{width:62.5%}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{position:relative;left:62.5%}.el-col-md-16{width:66.66667%}.el-col-md-offset-16{margin-left:66.66667%}.el-col-md-pull-16{position:relative;right:66.66667%}.el-col-md-push-16{position:relative;left:66.66667%}.el-col-md-17{width:70.83333%}.el-col-md-offset-17{margin-left:70.83333%}.el-col-md-pull-17{position:relative;right:70.83333%}.el-col-md-push-17{position:relative;left:70.83333%}.el-col-md-18{width:75%}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{position:relative;left:75%}.el-col-md-19{width:79.16667%}.el-col-md-offset-19{margin-left:79.16667%}.el-col-md-pull-19{position:relative;right:79.16667%}.el-col-md-push-19{position:relative;left:79.16667%}.el-col-md-20{width:83.33333%}.el-col-md-offset-20{margin-left:83.33333%}.el-col-md-pull-20{position:relative;right:83.33333%}.el-col-md-push-20{position:relative;left:83.33333%}.el-col-md-21{width:87.5%}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{position:relative;left:87.5%}.el-col-md-22{width:91.66667%}.el-col-md-offset-22{margin-left:91.66667%}.el-col-md-pull-22{position:relative;right:91.66667%}.el-col-md-push-22{position:relative;left:91.66667%}.el-col-md-23{width:95.83333%}.el-col-md-offset-23{margin-left:95.83333%}.el-col-md-pull-23{position:relative;right:95.83333%}.el-col-md-push-23{position:relative;left:95.83333%}.el-col-md-24{width:100%}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{position:relative;left:100%}}@media (min-width:1200px){.el-col-lg-1{width:4.16667%}.el-col-lg-offset-1{margin-left:4.16667%}.el-col-lg-pull-1{position:relative;right:4.16667%}.el-col-lg-push-1{position:relative;left:4.16667%}.el-col-lg-2{width:8.33333%}.el-col-lg-offset-2{margin-left:8.33333%}.el-col-lg-pull-2{position:relative;right:8.33333%}.el-col-lg-push-2{position:relative;left:8.33333%}.el-col-lg-3{width:12.5%}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{position:relative;left:12.5%}.el-col-lg-4{width:16.66667%}.el-col-lg-offset-4{margin-left:16.66667%}.el-col-lg-pull-4{position:relative;right:16.66667%}.el-col-lg-push-4{position:relative;left:16.66667%}.el-col-lg-5{width:20.83333%}.el-col-lg-offset-5{margin-left:20.83333%}.el-col-lg-pull-5{position:relative;right:20.83333%}.el-col-lg-push-5{position:relative;left:20.83333%}.el-col-lg-6{width:25%}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{position:relative;left:25%}.el-col-lg-7{width:29.16667%}.el-col-lg-offset-7{margin-left:29.16667%}.el-col-lg-pull-7{position:relative;right:29.16667%}.el-col-lg-push-7{position:relative;left:29.16667%}.el-col-lg-8{width:33.33333%}.el-col-lg-offset-8{margin-left:33.33333%}.el-col-lg-pull-8{position:relative;right:33.33333%}.el-col-lg-push-8{position:relative;left:33.33333%}.el-col-lg-9{width:37.5%}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{position:relative;left:37.5%}.el-col-lg-10{width:41.66667%}.el-col-lg-offset-10{margin-left:41.66667%}.el-col-lg-pull-10{position:relative;right:41.66667%}.el-col-lg-push-10{position:relative;left:41.66667%}.el-col-lg-11{width:45.83333%}.el-col-lg-offset-11{margin-left:45.83333%}.el-col-lg-pull-11{position:relative;right:45.83333%}.el-col-lg-push-11{position:relative;left:45.83333%}.el-col-lg-12{width:50%}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{position:relative;left:50%}.el-col-lg-13{width:54.16667%}.el-col-lg-offset-13{margin-left:54.16667%}.el-col-lg-pull-13{position:relative;right:54.16667%}.el-col-lg-push-13{position:relative;left:54.16667%}.el-col-lg-14{width:58.33333%}.el-col-lg-offset-14{margin-left:58.33333%}.el-col-lg-pull-14{position:relative;right:58.33333%}.el-col-lg-push-14{position:relative;left:58.33333%}.el-col-lg-15{width:62.5%}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{position:relative;left:62.5%}.el-col-lg-16{width:66.66667%}.el-col-lg-offset-16{margin-left:66.66667%}.el-col-lg-pull-16{position:relative;right:66.66667%}.el-col-lg-push-16{position:relative;left:66.66667%}.el-col-lg-17{width:70.83333%}.el-col-lg-offset-17{margin-left:70.83333%}.el-col-lg-pull-17{position:relative;right:70.83333%}.el-col-lg-push-17{position:relative;left:70.83333%}.el-col-lg-18{width:75%}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{position:relative;left:75%}.el-col-lg-19{width:79.16667%}.el-col-lg-offset-19{margin-left:79.16667%}.el-col-lg-pull-19{position:relative;right:79.16667%}.el-col-lg-push-19{position:relative;left:79.16667%}.el-col-lg-20{width:83.33333%}.el-col-lg-offset-20{margin-left:83.33333%}.el-col-lg-pull-20{position:relative;right:83.33333%}.el-col-lg-push-20{position:relative;left:83.33333%}.el-col-lg-21{width:87.5%}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{position:relative;left:87.5%}.el-col-lg-22{width:91.66667%}.el-col-lg-offset-22{margin-left:91.66667%}.el-col-lg-pull-22{position:relative;right:91.66667%}.el-col-lg-push-22{position:relative;left:91.66667%}.el-col-lg-23{width:95.83333%}.el-col-lg-offset-23{margin-left:95.83333%}.el-col-lg-pull-23{position:relative;right:95.83333%}.el-col-lg-push-23{position:relative;left:95.83333%}.el-col-lg-24{width:100%}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{position:relative;left:100%}}

================================================
FILE: src/assets/theme/theme-darkblue/collapse-item.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/collapse.css
================================================
@charset "UTF-8";.el-collapse{border:1px solid rgb(223, 230, 236);border-radius:0}.el-collapse-item:last-child{margin-bottom:-1px}.el-collapse-item.is-active>.el-collapse-item__header .el-collapse-item__header__arrow{-ms-transform:rotate(90deg);transform:rotate(90deg)}.el-collapse-item__header{height:43px;line-height:43px;padding-left:15px;background-color:#fff;color:rgb(72, 87, 106);cursor:pointer;border-bottom:1px solid rgb(223, 230, 236);font-size:13px}.el-collapse-item__header__arrow{margin-right:8px;transition:transform .3s}.el-collapse-item__wrap{will-change:height;background-color:rgb(250, 253, 254);overflow:hidden;box-sizing:border-box;border-bottom:1px solid rgb(223, 230, 236)}.el-collapse-item__content{padding:10px 15px;font-size:13px;color:rgb(31, 45, 61);line-height:1.769230769230769}

================================================
FILE: src/assets/theme/theme-darkblue/color-picker.css
================================================
.el-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}.el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(to bottom,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-hue-slider__bar{position:relative;background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);height:100%}.el-color-hue-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-svpanel{position:relative;width:280px;height:180px}.el-color-svpanel__black,.el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.el-color-svpanel__white{background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.el-color-svpanel__black{background:linear-gradient(to top,#000,rgba(0,0,0,0))}.el-color-svpanel__cursor{position:absolute}.el-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;-ms-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.el-color-alpha-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-alpha-slider.is-vertical{width:20px;height:180px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%)}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-alpha-slider__bar{position:relative;background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);height:100%}.el-color-alpha-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-dropdown{width:300px}.el-color-dropdown__main-wrapper{margin-bottom:6px}.el-color-dropdown__main-wrapper::after{content:"";display:table;clear:both}.el-color-dropdown__btns{margin-top:6px;text-align:right}.el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:rgb(31, 45, 61)}.el-color-dropdown__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-color-dropdown__btn[disabled]{color:#ccc;cursor:not-allowed}.el-color-dropdown__btn:hover{color:#1d8ce0;border-color:#1d8ce0}.el-color-dropdown__link-btn{cursor:pointer;color:#1d8ce0;text-decoration:none;padding:15px;font-size:12px}.el-color-dropdown__link-btn:hover{color:rgb(74, 163, 230)}.el-color-picker{display:inline-block;position:relative}.el-color-picker__trigger{display:inline-block;box-sizing:border-box;height:36px;padding:6px;border:1px solid rgb(191, 203, 217);border-radius:4px;font-size:0}.el-color-picker__color{position:relative;display:inline-block;box-sizing:border-box;vertical-align:middle;border:1px solid #666;width:22px;height:22px;text-align:center}.el-color-picker__color.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-picker__color-inner{position:absolute;left:0;top:0;right:0;bottom:0}.el-color-picker__empty{font-size:12px;vertical-align:middle;margin-top:4px;color:#666}.el-color-picker__icon{display:inline-block;position:relative;vertical-align:middle;margin-left:8px;width:12px;color:#888;font-size:12px}.el-color-picker__panel{position:absolute;z-index:10;padding:6px;background-color:#fff;border:1px solid rgb(209, 219, 229);box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.12)}

================================================
FILE: src/assets/theme/theme-darkblue/date-picker.css
================================================
@charset "UTF-8";.el-month-table,.el-year-table{margin:-1px;border-collapse:collapse}.el-date-picker table,.el-date-range-picker table{table-layout:fixed;width:100%}.el-date-table{font-size:12px;min-width:224px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-date-table td{width:32px;height:32px;box-sizing:border-box;text-align:center;cursor:pointer}.el-date-table td.next-month,.el-date-table td.prev-month{color:#ddd}.el-date-table td.today{color:#1d8ce0;position:relative}.el-date-table td.today:before{content:" ";position:absolute;top:0;right:0;width:0;height:0;border-top:.5em solid #1d8ce0;border-left:.5em solid transparent}.el-month-table td .cell,.el-year-table td .cell{width:48px;height:32px;display:block;line-height:32px}.el-date-table td.available:hover{background-color:rgb(228, 232, 241)}.el-date-table td.in-range{background-color:rgb(210, 232, 249)}.el-date-table td.in-range:hover{background-color:rgb(210, 232, 249)Hover}.el-date-table td.current:not(.disabled),.el-date-table td.end-date,.el-date-table td.start-date{background-color:#1d8ce0!important;color:#fff}.el-date-table td.disabled{background-color:#f4f4f4;opacity:1;cursor:not-allowed;color:#ccc}.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-leave-active{opacity:0}.el-date-table td.week{font-size:80%;color:rgb(131, 145, 165)}.el-date-table th{padding:5px;color:rgb(131, 145, 165);font-weight:400}.el-date-table.is-week-mode .el-date-table__row:hover{background-color:rgb(228, 232, 241)}.el-date-table.is-week-mode .el-date-table__row.current{background-color:rgb(210, 232, 249)}.el-month-table{font-size:12px}.el-month-table td{text-align:center;padding:20px 3px;cursor:pointer}.el-month-table td .cell{color:rgb(72, 87, 106)}.el-month-table td .cell:hover{background-color:rgb(228, 232, 241)}.el-month-table td.disabled .cell{background-color:#f4f4f4;cursor:not-allowed;color:#ccc}.el-month-table td.current:not(.disabled) .cell{background-color:#1d8ce0!important;color:#fff}.el-year-table{font-size:12px}.el-year-table .el-icon{color:rgb(151, 168, 190)}.el-year-table td{text-align:center;padding:20px 3px;cursor:pointer}.el-year-table td .cell{color:rgb(72, 87, 106)}.el-year-table td .cell:hover{background-color:rgb(228, 232, 241)}.el-year-table td.disabled .cell{background-color:#f4f4f4;cursor:not-allowed;color:#ccc}.el-year-table td.current:not(.disabled) .cell{background-color:#1d8ce0!important;color:#fff}.el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33%}.el-time-spinner.has-seconds .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.el-time-spinner.has-seconds .el-time-spinner__wrapper:nth-child(2){margin-left:1%}.el-time-spinner__wrapper{max-height:190px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.el-time-spinner__list{padding:0;margin:0;list-style:none;text-align:center}.el-time-spinner__list::after,.el-time-spinner__list::before{content:'';display:block;width:100%;height:80px}.el-time-spinner__item{height:32px;line-height:32px;font-size:12px}.el-time-spinner__item:hover:not(.disabled):not(.active){background:rgb(228, 232, 241);cursor:pointer}.el-time-spinner__item.active:not(.disabled){color:#fff}.el-time-spinner__item.disabled{color:rgb(209, 219, 229);cursor:not-allowed}.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:opacity .2s linear}.el-fade-in-enter-active,.el-fade-in-leave-active,.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter,.el-zoom-in-center-leave-active{opacity:0;-ms-transform:scaleX(0);transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;-ms-transform:scaleY(1);transform:scaleY(1);transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;-ms-transform-origin:center top;transform-origin:center top}.el-zoom-in-top-enter,.el-zoom-in-top-leave-active{opacity:0;-ms-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;-ms-transform:scaleY(1);transform:scaleY(1);transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;-ms-transform-origin:center bottom;transform-origin:center bottom}.el-zoom-in-bottom-enter,.el-zoom-in-bottom-leave-active{opacity:0;-ms-transform:scaleY(0);transform:scaleY(0)}.collapse-transition{transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.list-enter-active,.list-leave-active{transition:all 1s}.list-enter,.list-leave-active{opacity:0;-ms-transform:translateY(-30px);transform:translateY(-30px)}.el-date-editor{position:relative;display:inline-block}.el-date-editor .el-picker-panel{position:absolute;min-width:180px;box-sizing:border-box;box-shadow:0 2px 6px #ccc;background:#fff;z-index:10;top:41px}.el-date-editor.el-input{width:193px}.el-date-editor--daterange.el-input{width:220px}.el-date-editor--datetimerange.el-input{width:350px}.el-picker-panel{color:rgb(72, 87, 106);border:1px solid rgb(209, 219, 229);box-shadow:0 2px 6px #ccc;background:#fff;border-radius:2px;line-height:20px;margin:5px 0}.el-picker-panel__body-wrapper::after,.el-picker-panel__body::after{content:"";display:table;clear:both}.el-picker-panel__content{position:relative;margin:15px}.el-picker-panel__footer{border-top:1px solid #e4e4e4;padding:4px;text-align:right;background-color:#fff;position:relative}.el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:rgb(72, 87, 106);padding-left:12px;text-align:left;outline:0;cursor:pointer}.el-picker-panel__shortcut:hover{background-color:rgb(228, 232, 241)}.el-picker-panel__shortcut.active{background-color:#e6f1fe;color:#1d8ce0}.el-picker-panel__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-picker-panel__btn[disabled]{color:#ccc;cursor:not-allowed}.el-picker-panel__icon-btn{font-size:12px;color:rgb(151, 168, 190);border:0;background:0 0;cursor:pointer;outline:0;margin-top:3px}.el-date-picker__header-label.active,.el-date-picker__header-label:hover,.el-picker-panel__icon-btn:hover{color:#1d8ce0}.el-picker-panel__link-btn{cursor:pointer;color:#1d8ce0;text-decoration:none;padding:15px;font-size:12px}.el-picker-panel [slot=sidebar],.el-picker-panel__sidebar{position:absolute;top:0;bottom:0;width:110px;border-right:1px solid #e4e4e4;box-sizing:border-box;padding-top:6px;background-color:rgb(250, 253, 254)}.el-picker-panel [slot=sidebar]+.el-picker-panel__body,.el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.el-date-picker{min-width:254px}.el-date-picker .el-picker-panel__content{min-width:224px}.el-date-picker.has-sidebar.has-time{min-width:434px}.el-date-picker.has-sidebar{min-width:370px}.el-date-picker.has-time{min-width:324px}.el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;box-sizing:border-box}.el-date-picker__header{margin:12px;text-align:center}.el-date-picker__header-label{font-size:14px;padding:0 5px;line-height:22px;text-align:center;cursor:pointer}.el-date-picker__prev-btn{float:left}.el-date-picker__next-btn{float:right}.el-date-picker__time-wrap{padding:10px;text-align:center}.el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.el-date-range-picker{min-width:520px}.el-date-range-picker .el-picker-panel__body{min-width:513px}.el-date-range-picker .el-picker-panel__content{margin:0}.el-date-range-picker.has-sidebar.has-time{min-width:766px}.el-date-range-picker.has-sidebar{min-width:620px}.el-date-range-picker.has-time{min-width:660px}.el-date-range-picker__header{position:relative;text-align:center;height:28px}.el-date-range-picker__header button{float:left}.el-date-range-picker__header div{font-size:14px;margin-right:50px}.el-date-range-picker__content{float:left;width:50%;box-sizing:border-box;margin:0;padding:16px}.el-date-range-picker__content.is-right .el-date-range-picker__header button{float:right}.el-date-range-picker__content.is-right .el-date-range-picker__header div{margin-left:50px;margin-right:50px}.el-date-range-picker__content.is-left{border-right:1px solid #e4e4e4}.el-date-range-picker__editors-wrap{box-sizing:border-box;display:table-cell}.el-date-range-picker__editors-wrap.is-right{text-align:right}.el-date-range-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;box-sizing:border-box}.el-date-range-picker__time-header>.el-icon-arrow-right{font-size:20px;vertical-align:middle;display:table-cell;color:rgb(151, 168, 190)}.el-date-range-picker__time-picker-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-range-picker__time-picker-wrap .el-picker-panel{position:absolute;top:13px;right:0;z-index:1;background:#fff}.el-input__inner,.el-textarea__inner{box-sizing:border-box;background-image:none}.el-time-range-picker{min-width:354px;overflow:visible}.el-time-range-picker__content{position:relative;text-align:center;padding:10px}.el-time-range-picker__cell{box-sizing:border-box;margin:0;padding:4px 7px 7px;width:50%;display:inline-block}.el-time-range-picker__header{margin-bottom:5px;text-align:center;font-size:14px}.el-time-range-picker__body{border-radius:2px;border:1px solid rgb(209, 219, 229)}.el-time-panel{margin:5px 0;border:1px solid rgb(209, 219, 229);background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04);border-radius:2px;position:absolute;width:180px;left:0;z-index:1000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-time-panel__content{font-size:0;position:relative;overflow:hidden}.el-time-panel__content::after,.el-time-panel__content::before{content:":";top:50%;color:#fff;position:absolute;font-size:14px;margin-top:-15px;line-height:16px;background-color:#1d8ce0;height:32px;z-index:-1;left:0;right:0;box-sizing:border-box;padding-top:6px;text-align:left}.el-time-panel__content::after{left:50%;margin-left:-2px}.el-time-panel__content::before{padding-left:50%;margin-right:-2px}.el-time-panel__content.has-seconds::after{left:66.66667%}.el-time-panel__content.has-seconds::before{padding-left:33.33333%}.el-time-panel__footer{border-top:1px solid #e4e4e4;padding:4px;height:36px;line-height:25px;text-align:right;box-sizing:border-box}.el-time-panel__btn{border:none;line-height:28px;padding:0 5px;margin:0 5px;cursor:pointer;background-color:transparent;outline:0;font-size:12px;color:rgb(131, 145, 165)}.el-time-panel__btn.confirm{font-weight:800;color:#1d8ce0}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-input__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-input.is-disabled .el-input__inner::placeholder{color:rgb(191, 203, 217)}.el-input.is-active .el-input__inner{outline:0;border-color:#1d8ce0}.el-input__inner{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-radius:4px;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61);display:block;font-size:inherit;height:36px;line-height:1;outline:0;padding:3px 10px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-input__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-input__inner::placeholder{color:rgb(151, 168, 190)}.el-input__inner:hover{border-color:rgb(131, 145, 165)}.el-input__inner:focus{outline:0;border-color:#1d8ce0}.el-input__icon{position:absolute;width:35px;height:100%;right:0;top:0;text-align:center;color:rgb(191, 203, 217);transition:all .3s}.el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__icon+.el-input__inner{padding-right:35px}.el-input__icon.is-clickable:hover{cursor:pointer;color:rgb(131, 145, 165)}.el-input__icon.is-clickable:hover+.el-input__inner{border-color:rgb(131, 145, 165)}.el-input--large{font-size:16px}.el-input--large .el-input__inner{height:42px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:30px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:22px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:rgb(250, 253, 254);color:rgb(151, 168, 190);vertical-align:middle;display:table-cell;position:relative;border:1px solid rgb(191, 203, 217);border-radius:4px;padding:0 10px;width:1%;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:block;margin:-10px}.el-input-group__append .el-button,.el-input-group__append .el-select .el-input__inner,.el-input-group__append .el-select:hover .el-input__inner,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select .el-input__inner,.el-input-group__prepend .el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-textarea{display:inline-block;width:100%;vertical-align:bottom}.el-textarea.is-disabled .el-textarea__inner{background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229);color:#bbb;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:rgb(191, 203, 217)}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:rgb(191, 203, 217)}.el-textarea__inner{display:block;resize:vertical;padding:5px 7px;line-height:1.5;width:100%;font-size:14px;color:rgb(31, 45, 61);background-color:#fff;border:1px solid rgb(191, 203, 217);border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::-moz-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:-ms-input-placeholder{color:rgb(151, 168, 190)}.el-textarea__inner::placeholder{color:rgb(151, 168, 190)}.el-textarea__inner:hover{border-color:rgb(131, 145, 165)}.el-textarea__inner:focus{outline:0;border-color:#1d8ce0}.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active .el-scrollbar__bar,.el-scrollbar:focus .el-scrollbar__bar,.el-scrollbar:hover .el-scrollbar__bar{opacity:1;transition:opacity 340ms ease-out}.el-scrollbar__wrap{overflow:scroll}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(151,168,190,.3);transition:.3s background-color}.el-scrollbar__thumb:hover{background-color:rgba(151,168,190,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px;opacity:0;transition:opacity 120ms ease-out}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}

================================================
FILE: src/assets/theme/theme-darkblue/dialog.css
================================================
@charset "UTF-8";.v-modal-enter{animation:v-modal-in .2s ease}.v-modal-leave{animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{100%{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.el-dialog{position:absolute;left:50%;-ms-transform:translateX(-50%);transform:translateX(-50%);background:#fff;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.3);box-sizing:border-box}.el-dialog--tiny{width:30%}.el-dialog--small{width:50%}.el-dialog--large{width:90%}.el-dialog--full{width:100%;top:0;height:100%;overflow:auto}.el-dialog__wrapper{top:0;right:0;bottom:0;left:0;position:fixed;overflow:auto;margin:0}.el-dialog__header{padding:20px 20px 0}.el-dialog__close{cursor:pointer;color:rgb(191, 203, 217)}.el-dialog__close:hover{color:#1d8ce0}.el-dialog__title{line-height:1;font-size:16px;font-weight:700;color:rgb(31, 45, 61)}.el-dialog__body{padding:30px 20px;color:rgb(72, 87, 106);font-size:14px}.el-dialog__headerbtn{float:right}.el-dialog__footer{padding:10px 20px 15px;text-align:right;box-sizing:border-box}.dialog-fade-enter-active{animation:dialog-fade-in .3s}.dialog-fade-leave-active{animation:dialog-fade-out .3s}@keyframes dialog-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes dialog-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}

================================================
FILE: src/assets/theme/theme-darkblue/dropdown-item.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/dropdown-menu.css
================================================


================================================
FILE: src/assets/theme/theme-darkblue/dropdown.css
================================================
@charset "UTF-8";.el-button-group:after,.el-button-group:before{display:table;content:""}.el-button,.el-button-group,.el-dropdown{display:inline-block}.el-button-group:after{clear:both}.el-button{line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61);-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:10px 15px;font-size:14px;border-radius:4px}.el-button+.el-button{margin-left:10px}.el-button:focus,.el-button:hover{color:#1d8ce0;border-color:#1d8ce0}.el-button:active{color:rgb(26, 126, 202);border-color:rgb(26, 126, 202);outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:'';position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:rgba(255,255,255,.35)}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:rgb(191, 203, 217);cursor:not-allowed;background-image:none;background-color:rgb(238, 241, 246);border-color:rgb(209, 219, 229)}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:rgb(209, 219, 229);color:rgb(191, 203, 217)}.el-button.is-active{color:rgb(26, 126, 202);border-color:rgb(26, 126, 202)}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#1d8ce0;color:#1d8ce0}.el-button.is-plain:active{background:#fff;border-color:rgb(26, 126, 202);color:rgb(26, 126, 202);outline:0}.el-button--primary{color:#fff;background-color:#1d8ce0;border-color:#1d8ce0}.el-button--primary:focus,.el-button--primary:hover{background:rgb(74, 163, 230);border-color:rgb(74, 163, 230);color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:rgb(26, 126, 202);border-color:rgb(26, 126, 202);color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#fff;border-color:#1d8ce0;color:#1d8ce0}.el-button--primary.is-plain:active{background:#fff;border-color:rgb(26, 126, 202);color:rgb(26, 126, 202);outline:0}.el-button--success{color:#fff;background-color:#13ce66;border-color:#13ce66}.el-button--success:focus,.el-button--success:hover{background:#42d885;border-color:#42d885;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#11b95c;border-color:#11b95c;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#fff;border-color:#13ce66;color:#13ce66}.el-button--success.is-plain:active{background:#fff;border-color:#11b95c;color:#11b95c;outline:0}.el-button--warning{color:#fff;background-color:#f7ba2a;border-color:#f7ba2a}.el-button--warning:focus,.el-button--warning:hover{background:#f9c855;border-color:#f9c855;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#dea726;border-color:#dea726;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#fff;border-color:#f7ba2a;color:#f7ba2a}.el-button--warning.is-plain:active{background:#fff;border-color:#dea726;color:#dea726;outline:0}.el-button--danger{color:#fff;background-color:#ff4949;border-color:#ff4949}.el-button--danger:focus,.el-button--danger:hover{background:#ff6d6d;border-color:#ff6d6d;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#e64242;border-color:#e64242;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#fff;border-color:#ff4949;color:#ff4949}.el-button--danger.is-plain:active{background:#fff;border-color:#e64242;color:#e64242;outline:0}.el-button--info{color:#fff;background-color:#50bfff;border-color:#50bfff}.el-button--info:focus,.el-button--info:hover{background:#73ccff;border-color:#73ccff;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#48ace6;border-color:#48ace6;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-plain{background:#fff;border:1px solid rgb(191, 203, 217);color:rgb(31, 45, 61)}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#fff;border-color:#50bfff;color:#50bfff}.el-button--info.is-plain:active{background:#fff;border-color:#48ace6;color:#48ace6;outline:0}.el-button--large{padding:11px 19px;font-size:16px;border-radius:4px}.el-button--small{padding:7px 9px;font-size:12px;border-radius:4px}.el-button--mini{padding:4px;font-size:12px;border-radius:4px}.el-button--text{border:none;color:#1d8ce0;background:0 0;padding-left:0;padding-right:0}.el-button--text:focus,.el-button--text:hover{color:rgb(74, 163, 230)}.el-button--text:active{color:rgb(26, 126, 202)}.el-button-group{vertical-align:middle}.el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group .el-button{float:left;position:relative}.el-button-group .el-button+.el-button{margin-left:0}.el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group .el-button:not(:last-child){margin-right:-1px}.el-button-group .el-button.is-active,.el-button-group .el-button:active,.el-button-group .el-button:focus,.el-button-group .el-button:hover{z-index:1}.el-dropdown{position:relative;color:rgb(72, 87, 106);font-size:14px}.el-dropdown .el-button-group{display:block}.el-dropdown .el-dropdown__caret-button{padding-right:5px;padding-left:5px}.el-dropdow
Download .txt
gitextract_xwlge5m5/

├── .babelrc
├── .editorconfig
├── .gitignore
├── .postcssrc.js
├── README.md
├── build/
│   ├── build.js
│   ├── check-versions.js
│   ├── dev-client.js
│   ├── dev-server.js
│   ├── utils.js
│   ├── vendor-manifest.json
│   ├── vue-loader.conf.js
│   ├── webpack.base.conf.js
│   ├── webpack.dev.conf.js
│   ├── webpack.dll.conf.js
│   └── webpack.prod.conf.js
├── config/
│   ├── dev.env.js
│   ├── index.js
│   ├── prod.env.js
│   └── sit.env.js
├── index.html
├── package.json
├── src/
│   ├── App.vue
│   ├── api/
│   │   ├── aggregate.js
│   │   ├── index.js
│   │   ├── manage.js
│   │   ├── messages.js
│   │   ├── sts.js
│   │   ├── users.js
│   │   └── userstats.js
│   ├── assets/
│   │   ├── iconfont/
│   │   │   └── iconfont.js
│   │   └── theme/
│   │       ├── theme-darkblue/
│   │       │   ├── alert.css
│   │       │   ├── autocomplete.css
│   │       │   ├── badge.css
│   │       │   ├── base.css
│   │       │   ├── breadcrumb-item.css
│   │       │   ├── breadcrumb.css
│   │       │   ├── button-group.css
│   │       │   ├── button.css
│   │       │   ├── card.css
│   │       │   ├── carousel-item.css
│   │       │   ├── carousel.css
│   │       │   ├── cascader.css
│   │       │   ├── checkbox-group.css
│   │       │   ├── checkbox.css
│   │       │   ├── col.css
│   │       │   ├── collapse-item.css
│   │       │   ├── collapse.css
│   │       │   ├── color-picker.css
│   │       │   ├── date-picker.css
│   │       │   ├── dialog.css
│   │       │   ├── dropdown-item.css
│   │       │   ├── dropdown-menu.css
│   │       │   ├── dropdown.css
│   │       │   ├── form-item.css
│   │       │   ├── form.css
│   │       │   ├── icon.css
│   │       │   ├── index.css
│   │       │   ├── input-number.css
│   │       │   ├── input.css
│   │       │   ├── loading.css
│   │       │   ├── menu-item-group.css
│   │       │   ├── menu-item.css
│   │       │   ├── menu.css
│   │       │   ├── message-box.css
│   │       │   ├── message.css
│   │       │   ├── notification.css
│   │       │   ├── option-group.css
│   │       │   ├── option.css
│   │       │   ├── pagination.css
│   │       │   ├── popover.css
│   │       │   ├── progress.css
│   │       │   ├── radio-button.css
│   │       │   ├── radio-group.css
│   │       │   ├── radio.css
│   │       │   ├── rate.css
│   │       │   ├── reset.css
│   │       │   ├── row.css
│   │       │   ├── scrollbar.css
│   │       │   ├── select-dropdown.css
│   │       │   ├── select.css
│   │       │   ├── slider.css
│   │       │   ├── spinner.css
│   │       │   ├── step.css
│   │       │   ├── steps.css
│   │       │   ├── submenu.css
│   │       │   ├── switch.css
│   │       │   ├── tab-pane.css
│   │       │   ├── table-column.css
│   │       │   ├── table.css
│   │       │   ├── tabs.css
│   │       │   ├── tag.css
│   │       │   ├── time-picker.css
│   │       │   ├── time-select.css
│   │       │   ├── tooltip.css
│   │       │   ├── tree.css
│   │       │   └── upload.css
│   │       └── theme-green/
│   │           ├── alert.css
│   │           ├── autocomplete.css
│   │           ├── badge.css
│   │           ├── base.css
│   │           ├── breadcrumb-item.css
│   │           ├── breadcrumb.css
│   │           ├── button-group.css
│   │           ├── button.css
│   │           ├── card.css
│   │           ├── carousel-item.css
│   │           ├── carousel.css
│   │           ├── cascader.css
│   │           ├── checkbox-group.css
│   │           ├── checkbox.css
│   │           ├── col.css
│   │           ├── collapse-item.css
│   │           ├── collapse.css
│   │           ├── color-picker.css
│   │           ├── date-picker.css
│   │           ├── dialog.css
│   │           ├── dropdown-item.css
│   │           ├── dropdown-menu.css
│   │           ├── dropdown.css
│   │           ├── form-item.css
│   │           ├── form.css
│   │           ├── icon.css
│   │           ├── index.css
│   │           ├── input-number.css
│   │           ├── input.css
│   │           ├── loading.css
│   │           ├── menu-item-group.css
│   │           ├── menu-item.css
│   │           ├── menu.css
│   │           ├── message-box.css
│   │           ├── message.css
│   │           ├── notification.css
│   │           ├── option-group.css
│   │           ├── option.css
│   │           ├── pagination.css
│   │           ├── popover.css
│   │           ├── progress.css
│   │           ├── radio-button.css
│   │           ├── radio-group.css
│   │           ├── radio.css
│   │           ├── rate.css
│   │           ├── reset.css
│   │           ├── row.css
│   │           ├── scrollbar.css
│   │           ├── select-dropdown.css
│   │           ├── select.css
│   │           ├── slider.css
│   │           ├── spinner.css
│   │           ├── step.css
│   │           ├── steps.css
│   │           ├── submenu.css
│   │           ├── switch.css
│   │           ├── tab-pane.css
│   │           ├── table-column.css
│   │           ├── table.css
│   │           ├── tabs.css
│   │           ├── tag.css
│   │           ├── time-picker.css
│   │           ├── time-select.css
│   │           ├── tooltip.css
│   │           ├── tree.css
│   │           └── upload.css
│   ├── components/
│   │   ├── common/
│   │   │   ├── HomeMenu.vue
│   │   │   ├── Icon-svg/
│   │   │   │   └── index.vue
│   │   │   ├── ShowVideo.vue
│   │   │   └── error/
│   │   │       ├── 401.vue
│   │   │       └── 404.vue
│   │   └── page/
│   │       ├── Login.vue
│   │       ├── dashboard/
│   │       │   ├── Dashboard.vue
│   │       │   ├── HelloSys.vue
│   │       │   └── index.vue
│   │       ├── friends/
│   │       │   ├── FriendRows.vue
│   │       │   ├── FriendsInRow.vue
│   │       │   ├── FriendsManage.vue
│   │       │   ├── UserRelationInfo.vue
│   │       │   └── stat/
│   │       │       └── FrisNumCycleCharts.vue
│   │       ├── msg/
│   │       │   └── stat/
│   │       │       └── MsgNumCycleCharts.vue
│   │       ├── operation/
│   │       │   ├── AnchorMsgMass.vue
│   │       │   ├── AutoReplyCfg.vue
│   │       │   ├── AutoReplyCfgList.vue
│   │       │   └── OperatingAccountManage.vue
│   │       ├── uploadOSS/
│   │       │   └── UploadOSS.vue
│   │       ├── userDataStat/
│   │       │   ├── GeoUserNumCityRanked.vue
│   │       │   ├── LoggedUserNumCycleCharts.vue
│   │       │   └── UserNumCycleCharts.vue
│   │       └── userManage/
│   │           └── UserManage.vue
│   ├── config/
│   │   └── index.js
│   ├── filters/
│   │   └── index.js
│   ├── main.js
│   ├── mock/
│   │   ├── data/
│   │   │   ├── dashboard.js
│   │   │   ├── msgData.js
│   │   │   ├── ststoken.js
│   │   │   ├── trendData.js
│   │   │   └── users.js
│   │   ├── index.js
│   │   └── mock.js
│   ├── routes.js
│   ├── store/
│   │   ├── actions.js
│   │   ├── getters.js
│   │   ├── index.js
│   │   ├── modules/
│   │   │   ├── permission.js
│   │   │   └── user.js
│   │   ├── mutations.js
│   │   └── state.js
│   ├── styles/
│   │   └── vars.scss
│   ├── utils/
│   │   ├── fetch.js
│   │   └── index.js
│   └── vendor/
│       ├── Blob.js
│       └── Export2Excel.js
└── static/
    ├── .gitkeep
    ├── channelCode.json
    ├── css/
    │   ├── color-dark.css
    │   ├── datasource.css
    │   ├── main.css
    │   └── theme-green/
    │       ├── color-green.css
    │       └── index.css
    ├── data.json
    ├── errCodeCN.json
    ├── js/
    │   └── vendor.dll.js
    ├── map/
    │   └── china.json
    └── requestList/
        ├── activeAppVersion.json
        ├── activeDevType.json
        ├── activePhoneBrand.json
        ├── activePhoneModel.json
        ├── appVersion.json
        ├── channel.json
        ├── cycleFrisNum.json
        ├── cycleLoggedUserNum.json
        ├── cycleMsgNum.json
        ├── cycleUserNum.json
        ├── devType.json
        ├── formatTest.json
        ├── friendNumsRanked.json
        ├── phoneBrand.json
        ├── phoneModel.json
        ├── sendMsgCount.json
        ├── sendMsgNumsRanked.json
        └── userNumByGeo.json
Download .txt
SYMBOL INDEX (1269 symbols across 21 files)

FILE: build/check-versions.js
  function exec (line 5) | function exec (cmd) {

FILE: build/utils.js
  function generateLoaders (line 24) | function generateLoaders (loader, loaderOptions) {

FILE: build/webpack.base.conf.js
  function resolve (line 6) | function resolve (dir) {

FILE: build/webpack.prod.conf.js
  function resolveApp (line 14) | function resolveApp(relativePath) {

FILE: src/api/aggregate.js
  function aggregate (line 6) | function aggregate(data) {

FILE: src/api/index.js
  method request (line 11) | request (method, uri, data = null) {
  function getToken (line 57) | function getToken() {

FILE: src/api/manage.js
  function setMsgTimingTask (line 11) | function setMsgTimingTask(data) {
  function cancelMsgTimingTask (line 24) | function cancelMsgTimingTask(params) {
  function getMsgConfigs (line 38) | function getMsgConfigs(params) {
  function setMsgConfigs (line 52) | function setMsgConfigs(data) {
  function sendToUsersSchedul (line 65) | function sendToUsersSchedul(data) {
  function updateMsgConfigs (line 78) | function updateMsgConfigs(params) {
  function deleteMsgConfigs (line 91) | function deleteMsgConfigs(params) {

FILE: src/api/messages.js
  function getChatRecordPage (line 11) | function getChatRecordPage(params) {

FILE: src/api/sts.js
  function getSTSToken (line 6) | function getSTSToken() {

FILE: src/api/users.js
  function getNickname (line 9) | function getNickname(uid) {
  function getUsersPage (line 21) | function getUsersPage(params) {
  function updateUserInfo (line 34) | function updateUserInfo(params) {
  function getBluUid (line 48) | function getBluUid(params) {
  function getFriendsPage (line 61) | function getFriendsPage(params) {
  function getFriendRows (line 75) | function getFriendRows(params) {
  function getFriendsInRow (line 89) | function getFriendsInRow(params) {

FILE: src/api/userstats.js
  function getAnchorDataStatPage (line 11) | function getAnchorDataStatPage(params) {

FILE: src/assets/iconfont/iconfont.js
  function IEContentLoaded (line 1) | function IEContentLoaded(w,fn){var d=w.document,done=false,init=function...
  function appendSvg (line 1) | function appendSvg(){var div,svg;div=document.createElement("div");div.i...

FILE: src/filters/index.js
  function formatUserId (line 7) | function formatUserId(row) {
  function formatBeijingDate (line 20) | function formatBeijingDate(date) {
  function formattedJson (line 28) | function formattedJson(str) {
  function formatResultType (line 44) | function formatResultType(str) {
  function formattedConstellation (line 60) | function formattedConstellation(index) {
  function formattedBirthday (line 74) | function formattedBirthday(str) {
  function formattedSex (line 87) | function formattedSex(sex) {
  function formattedSexual (line 101) | function formattedSexual(sexual) {
  function formattedDetail (line 118) | function formattedDetail(address) {
  function formattedSchools (line 140) | function formattedSchools(schools) {
  function formattedJob (line 157) | function formattedJob(job) {
  function formattedClientLastLoginTime (line 173) | function formattedClientLastLoginTime(client) {
  function formattedClientLastBluVer (line 191) | function formattedClientLastBluVer(client) {
  function formattedClientLastBrand (line 210) | function formattedClientLastBrand(client) {
  function formattedClientLastDeviceName (line 225) | function formattedClientLastDeviceName(client) {
  function formattedClientLastSysVer (line 239) | function formattedClientLastSysVer(client) {
  function formattedClientLastSysDesc (line 256) | function formattedClientLastSysDesc(client) {
  function formattedChannel (line 270) | function formattedChannel(row) {
  function formattedFrom (line 295) | function formattedFrom(row) {
  function formatWhyFirst (line 313) | function formatWhyFirst(row) {

FILE: src/main.js
  function hasPermission (line 30) | function hasPermission(roles, permissionRoles) {

FILE: src/mock/mock.js
  method bootstrap (line 38) | bootstrap() {

FILE: src/store/modules/permission.js
  function hasPermission (line 9) | function hasPermission(roles, route) {
  function filterAsyncRouter (line 22) | function filterAsyncRouter(asyncRouterMap, roles) {
  method GenerateRoutes (line 47) | GenerateRoutes({commit}, data) {

FILE: src/store/modules/user.js
  method GetUserInfo (line 66) | GetUserInfo({commit, state}) {
  method GetStsToken (line 105) | GetStsToken({commit}) {
  method LogOut (line 133) | LogOut({commit}) {

FILE: src/store/mutations.js
  method TOGGLE_LOADING (line 2) | TOGGLE_LOADING (state) {
  method TOGGLE_SEARCHING (line 5) | TOGGLE_SEARCHING (state) {

FILE: src/utils/index.js
  function deepClone (line 4) | function deepClone(source) {

FILE: src/vendor/Export2Excel.js
  function generateArray (line 5) | function generateArray(table) {
  function datenum (line 46) | function datenum(v, date1904) {
  function sheet_from_array_of_arrays (line 52) | function sheet_from_array_of_arrays(data, opts) {
  function Workbook (line 81) | function Workbook() {
  function s2ab (line 87) | function s2ab(s) {
  function export_table_to_excel (line 94) | function export_table_to_excel(id) {
  function formatJson (line 120) | function formatJson(jsonData) {
  function export_json_to_excel (line 123) | function export_json_to_excel(th, jsonData, defaultTitle) {

FILE: static/js/vendor.dll.js
  function e (line 1) | function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{...
  function i (line 1) | function i(t){return"[object Array]"===S.call(t)}
  function r (line 1) | function r(t){return"[object ArrayBuffer]"===S.call(t)}
  function o (line 1) | function o(t){return"undefined"!=typeof FormData&&t instanceof FormData}
  function a (line 1) | function a(t){var e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffe...
  function s (line 1) | function s(t){return"string"==typeof t}
  function l (line 1) | function l(t){return"number"==typeof t}
  function u (line 1) | function u(t){return"undefined"==typeof t}
  function c (line 1) | function c(t){return null!==t&&"object"==typeof t}
  function h (line 1) | function h(t){return"[object Date]"===S.call(t)}
  function f (line 1) | function f(t){return"[object File]"===S.call(t)}
  function d (line 1) | function d(t){return"[object Blob]"===S.call(t)}
  function p (line 1) | function p(t){return"[object Function]"===S.call(t)}
  function g (line 1) | function g(t){return c(t)&&p(t.pipe)}
  function v (line 1) | function v(t){return"undefined"!=typeof URLSearchParams&&t instanceof UR...
  function m (line 1) | function m(t){return t.replace(/^\s*/,"").replace(/\s*$/,"")}
  function y (line 1) | function y(){return"undefined"!=typeof window&&"undefined"!=typeof docum...
  function x (line 1) | function x(t,e){if(null!==t&&"undefined"!=typeof t)if("object"==typeof t...
  function _ (line 1) | function _(){function t(t,n){"object"==typeof e[n]&&"object"==typeof t?e...
  function b (line 1) | function b(t,e,n){return x(e,function(e,i){n&&"function"==typeof e?t[i]=...
  function i (line 1) | function i(t,e){!o.isUndefined(t)&&o.isUndefined(t["Content-Type"])&&(t[...
  function r (line 1) | function r(){var t;return"undefined"!=typeof XMLHttpRequest?t=n(88):"und...
  function i (line 2) | function i(t){this.message=t}
  function n (line 2) | function n(){throw new Error("setTimeout has not been defined")}
  function i (line 2) | function i(){throw new Error("clearTimeout has not been defined")}
  function r (line 2) | function r(t){if(c===setTimeout)return setTimeout(t,0);if((c===n||!c)&&s...
  function o (line 2) | function o(t){if(h===clearTimeout)return clearTimeout(t);if((h===i||!h)&...
  function a (line 2) | function a(){g&&d&&(g=!1,d.length?p=d.concat(p):v=-1,p.length&&s())}
  function s (line 2) | function s(){if(!g){var t=r(a);g=!0;for(var e=p.length;e;){for(d=p,p=[];...
  function l (line 2) | function l(t,e){this.fun=t,this.array=e}
  function u (line 2) | function u(){}
  function e (line 2) | function e(t,e,n){t[e]||Object[i](t,e,{writable:!0,configurable:!0,value...
  function e (line 2) | function e(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,lo...
  function i (line 2) | function i(t){return t&&t.__esModule?t:{default:t}}
  function n (line 2) | function n(t){if(null==t||"object"!=typeof t)return t;var e=t,i=E.call(t...
  function i (line 2) | function i(t,e,r){if(!S(e)||!S(t))return r?n(e):t;for(var o in e)if(e.ha...
  function r (line 2) | function r(t,e){for(var n=t[0],r=1,o=t.length;r<o;r++)n=i(n,t[r],e);retu...
  function o (line 2) | function o(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}
  function a (line 2) | function a(t,e,n){for(var i in e)e.hasOwnProperty(i)&&(n?null!=e[i]:null...
  function s (line 2) | function s(){return document.createElement("canvas")}
  function l (line 2) | function l(){return D||(D=F.createCanvas().getContext("2d")),D}
  function u (line 2) | function u(t,e){if(t){if(t.indexOf)return t.indexOf(e);for(var n=0,i=t.l...
  function c (line 2) | function c(t,e){function n(){}var i=t.prototype;n.prototype=e.prototype,...
  function h (line 2) | function h(t,e,n){t="prototype"in t?t.prototype:t,e="prototype"in e?e.pr...
  function f (line 2) | function f(t){if(t)return"string"!=typeof t&&"number"==typeof t.length}
  function d (line 2) | function d(t,e,n){if(t&&e)if(t.forEach&&t.forEach===R)t.forEach(e,n);els...
  function p (line 2) | function p(t,e,n){if(t&&e){if(t.map&&t.map===V)return t.map(e,n);for(var...
  function g (line 2) | function g(t,e,n,i){if(t&&e){if(t.reduce&&t.reduce===B)return t.reduce(e...
  function v (line 2) | function v(t,e,n){if(t&&e){if(t.filter&&t.filter===N)return t.filter(e,n...
  function m (line 2) | function m(t,e,n){if(t&&e)for(var i=0,r=t.length;i<r;i++)if(e.call(n,t[i...
  function y (line 2) | function y(t,e){var n=z.call(arguments,2);return function(){return t.app...
  function x (line 2) | function x(t){var e=z.call(arguments,1);return function(){return t.apply...
  function _ (line 2) | function _(t){return"[object Array]"===E.call(t)}
  function b (line 2) | function b(t){return"function"==typeof t}
  function w (line 2) | function w(t){return"[object String]"===E.call(t)}
  function S (line 2) | function S(t){var e=typeof t;return"function"===e||!!t&&"object"==e}
  function M (line 2) | function M(t){return!!k[E.call(t)]}
  function A (line 2) | function A(t){return"object"==typeof t&&"number"==typeof t.nodeType&&"ob...
  function T (line 2) | function T(t){return t!==t}
  function I (line 2) | function I(t){for(var e=0,n=arguments.length;e<n;e++)if(null!=arguments[...
  function C (line 2) | function C(){return Function.call.apply(z,arguments)}
  function L (line 2) | function L(t,e){if(!t)throw new Error(e)}
  function i (line 2) | function i(t){return function(e,n,i){e=e&&e.toLowerCase(),z.prototype[t]...
  function r (line 2) | function r(){z.call(this)}
  function o (line 2) | function o(t,e,n){function i(t,e){return t.prio-e.prio}n=n||{},"string"=...
  function a (line 2) | function a(t,e,n){var i,r=this._model,o=this._coordSysMgr.getCoordinateS...
  function s (line 2) | function s(t,e,n,i,r){var o=t._model,a={};a[i+"Id"]=n[i+"Id"],a[i+"Index...
  function l (line 2) | function l(t,e){var n=t.type,i=et[n],r=i.actionInfo,o=(r.update||"update...
  function u (line 2) | function u(t){for(var e=this._pendingActions;e.length;){var n=e.shift();...
  function c (line 2) | function c(t){!t&&this.trigger("updated")}
  function h (line 2) | function h(t,e,n){var i=this._api;B(this._componentsViews,function(r){va...
  function f (line 2) | function f(t,e){for(var n="component"===t,i=n?this._componentsViews:this...
  function d (line 2) | function d(t,e){B(it,function(n){n.func(t,e)})}
  function p (line 2) | function p(t){var e={};t.eachSeries(function(t){var n=t.get("stack"),i=t...
  function g (line 2) | function g(t,e){var n=this._api;B(ot,function(i){i.isLayout&&i.func(t,n,...
  function v (line 2) | function v(t,e,n){var i=this._api;t.clearColorPalette(),t.eachSeries(fun...
  function m (line 2) | function m(t,e){var n=this._api;B(this._componentsViews,function(i){var ...
  function y (line 2) | function y(t,e){var n=t.storage,i=0;n.traverse(function(t){t.isGroup||i+...
  function x (line 2) | function x(t,e){var n=0;e.group.traverse(function(t){"group"===t.type||t...
  function _ (line 2) | function _(t,e){var n=t.get("z"),i=t.get("zlevel");e.group.traverse(func...
  function b (line 2) | function b(t){function e(t,e){for(var n=0;n<t.length;n++)t[n][i]=e}var n...
  function i (line 2) | function i(t){return null!=t&&"none"!=t}
  function r (line 2) | function r(t){return"string"==typeof t?_.lift(t,-.1):t}
  function o (line 2) | function o(t){if(t.__hoverStlDirty){var e=t.style.stroke,n=t.style.fill,...
  function a (line 2) | function a(t){t.__isHover||(o(t),t.useHoverLayer?t.__zr&&t.__zr.addHover...
  function s (line 3) | function s(t){if(t.__isHover){var e=t.__normalStl;t.useHoverLayer?t.__zr...
  function l (line 3) | function l(t){"group"===t.type?t.traverse(function(t){"group"!==t.type&&...
  function u (line 3) | function u(t){"group"===t.type?t.traverse(function(t){"group"!==t.type&&...
  function c (line 3) | function c(t,e){t.__hoverStl=t.hoverStyle||e||{},t.__hoverStlDirty=!0,t....
  function h (line 3) | function h(t){this.__hoverSilentOnTouch&&t.zrByTouch||!this.__isEmphasis...
  function f (line 3) | function f(t){this.__hoverSilentOnTouch&&t.zrByTouch||!this.__isEmphasis...
  function d (line 3) | function d(){this.__isEmphasis=!0,l(this)}
  function p (line 3) | function p(){this.__isEmphasis=!1,u(this)}
  function g (line 3) | function g(t,e,n,i,r,o){if("function"==typeof r&&(o=r,r=null),i&&i.isAni...
  function r (line 3) | function r(t){var e={};return t.traverse(function(t){!t.isGroup&&t.anid&...
  function o (line 3) | function o(t){var e={position:w.clone(t.position),rotation:t.rotation};r...
  function n (line 3) | function n(t){return t.replace(/^\s+/,"").replace(/\s+$/,"")}
  function e (line 3) | function e(t,n,i){return t.interval[i]<n.interval[i]||t.interval[i]===n....
  function i (line 3) | function i(t,e){return t&&t.hasOwnProperty(e)}
  function n (line 3) | function n(t,e,n){for(var i=0,r=t.length;i<r;i++)for(var o=t[i].seriesId...
  function i (line 3) | function i(t,e){var n=[];for(var r in t)if(t.hasOwnProperty(r)&&null!=t[...
  function i (line 3) | function i(t,e,n,i,r){var o=0,a=0;null==i&&(i=1/0),null==r&&(r=1/0);var ...
  function i (line 3) | function i(i){var r={},s=0,l={},c=0,h=n.ignoreSize?1:2;if(u(i,function(e...
  function o (line 3) | function o(t,e){return t.hasOwnProperty(e)}
  function a (line 3) | function a(t,e){return null!=t[e]&&"auto"!==t[e]}
  function s (line 3) | function s(t,e,n){u(t,function(t){e[t]=n[t]})}
  function i (line 3) | function i(t,e,n,i){n<0&&(t+=n,n=-n),i<0&&(e+=i,i=-i),this.x=t,this.y=e,...
  function i (line 3) | function i(t){return f.isArray(t)||(t=[t]),t}
  function r (line 3) | function r(t,e){var n=t.dimensions,i=new m(f.map(n,t.getDimensionInfo,t)...
  function i (line 3) | function i(t,e,n){this.parentModel=e,this.ecModel=n,this.option=t}
  function r (line 3) | function r(t,e,n){for(var i=0;i<e.length&&(!e[i]||(t=t&&"object"==typeof...
  function o (line 3) | function o(t,e){var n=s.get(t,"getParent");return n?n.call(t,e):t.parent...
  function i (line 3) | function i(t){var e=[];return o.each(c.getClassesByMainType(t),function(...
  function o (line 3) | function o(t){var n=[];return i.each(t,function(t,i){var o,s=a.getDimens...
  function n (line 3) | function n(t){var e={},n={},i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MS...
  function i (line 4) | function i(t){r.call(this,t),this.path=new a}
  function i (line 4) | function i(t,e,n,i){if(!e)return t;var s=r(e[0]),l=o.isArray(s)&&s.lengt...
  function r (line 4) | function r(t){return o.isArray(t)?t:o.isObject(t)?t.value:t}
  function i (line 4) | function i(){this._coordinateSystems=[]}
  function n (line 4) | function n(t){return t=Math.round(t),t<0?0:t>255?255:t}
  function i (line 4) | function i(t){return t=Math.round(t),t<0?0:t>360?360:t}
  function r (line 4) | function r(t){return t<0?0:t>1?1:t}
  function o (line 4) | function o(t){return n(t.length&&"%"===t.charAt(t.length-1)?parseFloat(t...
  function a (line 4) | function a(t){return r(t.length&&"%"===t.charAt(t.length-1)?parseFloat(t...
  function s (line 4) | function s(t,e,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?t+(e-t)*n*6:2*n<1?e:...
  function l (line 4) | function l(t,e,n){return t+(e-t)*n}
  function u (line 4) | function u(t){if(t){t+="";var e=t.replace(/ /g,"").toLowerCase();if(e in...
  function c (line 4) | function c(t){var e=(parseFloat(t[0])%360+360)%360/360,i=a(t[1]),r=a(t[2...
  function h (line 4) | function h(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,o=t[2]/255,a=Math.min(...
  function f (line 4) | function f(t,e){var n=u(t);if(n){for(var i=0;i<3;i++)e<0?n[i]=n[i]*(1-e)...
  function d (line 4) | function d(t,e){var n=u(t);if(n)return((1<<24)+(n[0]<<16)+(n[1]<<8)+ +n[...
  function p (line 4) | function p(t,e,i){if(e&&e.length&&t>=0&&t<=1){i=i||[0,0,0,0];var r=t*(e....
  function g (line 4) | function g(t,e,i){if(e&&e.length&&t>=0&&t<=1){var o=t*(e.length-1),a=Mat...
  function v (line 4) | function v(t,e,n,r){if(t=u(t))return t=h(t),null!=e&&(t[0]=i(e)),null!=n...
  function m (line 4) | function m(t,e){if(t=u(t),t&&null!=e)return t[3]=r(e),y(t,"rgba")}
  function y (line 4) | function y(t,e){var n=t[0]+","+t[1]+","+t[2];return"rgba"!==e&&"hsva"!==...
  function i (line 4) | function i(t){a.assert(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(t),'com...
  function r (line 4) | function r(t,e){var n=a.slice(arguments,2);return this.superClass.protot...
  function o (line 4) | function o(t,e,n){return this.superClass.prototype[e].apply(t,n)}
  function n (line 4) | function n(t){var e=r[t.main];return e&&e[u]||(e=r[t.main]={},e[u]=!0),e}
  function i (line 4) | function i(){this.group=new a,this.uid=s.getUID("viewChart")}
  function r (line 4) | function r(t,e){if(t&&(t.trigger(e),"group"===t.type))for(var n=0;n<t.ch...
  function o (line 4) | function o(t,e,n){var i=u.queryDataIndex(t,e);null!=i?c.each(u.normalize...
  function i (line 4) | function i(t,e){var n=t+":"+e;if(l[n])return l[n];for(var i=(t+"").split...
  function r (line 4) | function r(t,e,n,r){var o=((t||"")+"").split("\n").length,a=i(t,e),s=i("...
  function o (line 4) | function o(t,e,n,i){var r=e.x,o=e.y,a=e.height,s=e.width,l=n.height,u=a/...
  function a (line 4) | function a(t,e,n,r,o){if(!e)return"";o=o||{},r=d(r,"...");for(var a=d(o....
  function s (line 4) | function s(t,e,n,i){for(var r=0,o=0,a=t.length;o<a&&r<e;o++){var s=t.cha...
  function i (line 4) | function i(t){return t>-1e-8&&t<w}
  function r (line 4) | function r(t){return t>w||t<-1e-8}
  function o (line 4) | function o(t,e,n,i,r){var o=1-r;return o*o*(o*t+3*r*e)+r*r*(r*i+3*o*n)}
  function a (line 4) | function a(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}
  function s (line 4) | function s(t,e,n,r,o,a){var s=r+3*(e-n)-t,l=3*(n-2*e+t),u=3*(e-t),c=t-o,...
  function l (line 4) | function l(t,e,n,o,a){var s=6*n-12*e+6*t,l=9*e+3*o-3*t-9*n,u=3*e-3*t,c=0...
  function u (line 4) | function u(t,e,n,i,r,o){var a=(e-t)*r+t,s=(n-e)*r+e,l=(i-n)*r+n,u=(s-a)*...
  function c (line 4) | function c(t,e,n,i,r,a,s,l,u,c,h){var f,d,p,g,v,m=.005,y=1/0;T[0]=u,T[1]...
  function h (line 4) | function h(t,e,n,i){var r=1-i;return r*(r*t+2*i*e)+i*i*n}
  function f (line 4) | function f(t,e,n,i){return 2*((1-i)*(e-t)+i*(n-e))}
  function d (line 4) | function d(t,e,n,o,a){var s=t-2*e+n,l=2*(e-t),u=t-o,c=0;if(i(s)){if(r(l)...
  function p (line 4) | function p(t,e,n){var i=t+n-2*e;return 0===i?.5:(t-e)/i}
  function g (line 4) | function g(t,e,n,i,r){var o=(e-t)*i+t,a=(n-e)*i+e,s=(a-o)*i+o;r[0]=t,r[1...
  function v (line 4) | function v(t,e,n,i,r,o,a,s,l){var u,c=.005,f=1/0;T[0]=a,T[1]=s;for(var d...
  function i (line 4) | function i(t,e){var n=t[1]-t[0],i=e,r=n/i/2;t[0]+=r,t[1]-=r}
  function i (line 4) | function i(t){var e=t.pieceList;t.hasSpecialVisual=!1,p.each(e,function(...
  function r (line 4) | function r(t){var e=t.categories,n=t.visual,i=t.categoryMap={};if(m(e,fu...
  function o (line 4) | function o(t,e){var n=t.visual,i=[];p.isObject(n)?m(n,function(t){i.push...
  function a (line 4) | function a(t){return{applyVisual:function(e,n,i){e=this.mapValueToVisual...
  function s (line 4) | function s(t){var e=this.option.visual;return e[Math.round(v(t,[0,1],[0,...
  function l (line 4) | function l(t){return function(e,n,i){i(t,this.mapValueToVisual(e))}}
  function u (line 4) | function u(t){var e=this.option.visual;return e[this.option.loop&&t!==x?...
  function c (line 4) | function c(){return this.option.visual[0]}
  function h (line 4) | function h(t){return{linear:function(e){return v(e,t,this.option.visual,...
  function f (line 4) | function f(t){var e=this.option,n=e.pieceList;if(e.hasSpecialVisual){var...
  function d (line 4) | function d(t,e,n){return t?e<=n:e<n}
  function i (line 4) | function i(e,n){var i=Math.abs(e-t);i<o&&(o=i,r=n)}
  function i (line 5) | function i(t){for(var e=0;e<t.length&&null==t[e];)e++;return t[e]}
  function r (line 5) | function r(t){var e=i(t);return null!=e&&!h.isArray(p(e))}
  function o (line 5) | function o(t,e,n){if(t=t||[],__DEV__&&!h.isArray(t))throw new Error("Inv...
  function a (line 5) | function a(t){return"category"!==t&&"time"!==t}
  function s (line 5) | function s(t){return"category"===t?"ordinal":"time"===t?"time":"float"}
  function l (line 5) | function l(t,e){var n,i=[],r=t&&t.dimensions[t.categoryIndex];if(r&&(n=t...
  function i (line 5) | function i(t){return t.getBoundingClientRect?t.getBoundingClientRect():{...
  function r (line 5) | function r(t,e,n,i){return n=n||{},i||!c.canvasSupported?o(t,e,n):c.brow...
  function o (line 5) | function o(t,e,n){var r=i(t);n.zrX=e.clientX-r.left,n.zrY=e.clientY-r.top}
  function a (line 5) | function a(t,e,n){if(e=e||window.event,null!=e.zrX)return e;var i=e.type...
  function s (line 5) | function s(t,e,n){h?t.addEventListener(e,n):t.attachEvent("on"+e,n)}
  function l (line 5) | function l(t,e,n){h?t.removeEventListener(e,n):t.detachEvent("on"+e,n)}
  function i (line 5) | function i(t){this.group=new o.Group,this._symbolCtor=t||a}
  function r (line 5) | function r(t,e,n){var i=t.getItemLayout(e);return i&&!isNaN(i[0])&&!isNa...
  function i (line 5) | function i(t){var e={componentType:t.mainType};return e[t.mainType+"Inde...
  function r (line 5) | function r(t,e,n){var i,r,o=f(e-t.rotation);return d(o)?(r=n>0?"top":"bo...
  function o (line 5) | function o(t,e,n,i){var r,o,a=f(n-t.rotation),s=i[0]>i[1],l="start"===e&...
  function a (line 5) | function a(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("tr...
  function t (line 5) | function t(t,e){var n=t&&t.getBoundingRect().clone(),i=e&&e.getBoundingR...
  function i (line 5) | function i(t){var e={};return h(["start","end","startValue","endValue","...
  function r (line 5) | function r(t,e,n,i){null!=n[e]&&null==n[t]&&(i[t]=null)}
  function t (line 5) | function t(t,e,n,i){for(var r,o=0;o<n.length;o++)if(n[o].model===t){r=n[...
  function i (line 5) | function i(t){return r.isObject(t)&&null!=t.value?t.value:t}
  function n (line 5) | function n(t){return t}
  function i (line 5) | function i(t,e,i,r){this._old=t,this._new=e,this._oldKeyGetter=i||n,this...
  function r (line 5) | function r(t,e,n,i){for(var r=0;r<t.length;r++){var o=i(t[r],r),a=e[o];n...
  function i (line 5) | function i(t){return null==t.value?t:t.value}
  function i (line 5) | function i(t){if(!t.target||!t.target.draggable){var e=t.offsetX,n=t.off...
  function r (line 5) | function r(t){if(this._dragging&&(f.stop(t.event),"pinch"!==t.gestureEve...
  function o (line 5) | function o(t){this._dragging=!1}
  function a (line 5) | function a(t){var e=t.wheelDelta>0?1.1:1/1.1;l.call(this,t,e,t.offsetX,t...
  function s (line 5) | function s(t){if(!d.isTaken(this._zr,"globalPan")){var e=t.pinchScale>1?...
  function l (line 5) | function l(t,e,n,i){if(this.containsPoint&&this.containsPoint(n,i)){f.st...
  function u (line 5) | function u(t,e){this.target=e,this.containsPoint,this.zoomLimit,this.zoo...
  function i (line 5) | function i(t,e){var n,i=this.getBoundingRect(),r=t.get("layoutCenter"),o...
  function r (line 5) | function r(t,e){s.each(e.get("geoCoord"),function(e,n){t.addGeoCoord(n,e...
  function i (line 6) | function i(){this._extent=[1/0,-(1/0)],this._interval=0,this.init&&this....
  function i (line 6) | function i(){u=(new Date).getTime(),c=null,t.apply(a,s||[])}
  function i (line 6) | function i(t){if(t)for(var e in t)if(t.hasOwnProperty(e))return!0}
  function i (line 6) | function i(){var t=function(){};return t.prototype.__hidden=t.prototype,...
  function l (line 6) | function l(t){return n.getItemVisual(f,t)}
  function u (line 6) | function u(t,e){n.setItemVisual(f,t,e)}
  function c (line 6) | function c(t,r){f=null==s?t:r;var o=n.getRawDataItem(f);if(!o||o.visualM...
  function i (line 6) | function i(t){t=t||{},a.call(this,t);for(var e in t)t.hasOwnProperty(e)&...
  function i (line 6) | function i(t){return"_"+t+"Type"}
  function r (line 6) | function r(t,e,n){var i=e.getItemVisual(n,"color"),r=e.getItemVisual(n,t...
  function o (line 6) | function o(t){var e=new h({name:"line"});return a(e.shape,t),e}
  function a (line 6) | function a(t,e){var n=e[0],i=e[1],r=e[2];t.x1=n[0],t.y1=n[1],t.x2=i[0],t...
  function s (line 6) | function s(){var t=this,e=t.childOfName("fromSymbol"),n=t.childOfName("t...
  function l (line 6) | function l(t,e,n){f.Group.call(this),this._createLine(t,e,n)}
  function i (line 6) | function i(t){return isNaN(t[0])||isNaN(t[1])}
  function r (line 6) | function r(t){return!i(t[0])&&!i(t[1])}
  function o (line 6) | function o(t){this._ctor=t||s,this.group=new a.Group}
  function i (line 6) | function i(t,e){var n=t.getItemVisual(e,"symbolSize");return n instanceo...
  function r (line 6) | function r(t){return[t[0]/2,t[1]/2]}
  function o (line 6) | function o(t,e,n){u.Group.call(this),this.updateData(t,e,n)}
  function a (line 6) | function a(t,e){this.parent.drift(t,e)}
  function i (line 6) | function i(t,e){return r.indexOf(e.nodes,t)>=0}
  function o (line 6) | function o(t,i){var o=!1;return e(function(e){r.each(n(t,e)||[],function...
  function a (line 6) | function a(t,i){i.nodes.push(t),e(function(e){r.each(n(t,e)||[],function...
  function r (line 6) | function r(t){!i(t,s)&&o(t,s)&&(a(t,s),l=!0)}
  function i (line 6) | function i(t){__DEV__&&V.assert(t),z.call(this),this._zr=t,this.group=ne...
  function r (line 6) | function r(t,e){var n=t._zr;t._enableGlobalPan||G.take(n,K,t._uid),W(t._...
  function o (line 6) | function o(t){var e=t._zr;G.release(e,K,t._uid),W(t._handlers,function(t...
  function a (line 6) | function a(t,e){var n=rt[e.brushType].createCover(t,e);return u(n),n.__b...
  function s (line 6) | function s(t,e){var n=h(e);return n.endCreating&&(n.endCreating(t,e),u(e...
  function l (line 6) | function l(t,e){var n=e.__brushOption;h(e).updateCoverShape(t,e,n.range,n)}
  function u (line 6) | function u(t){t.traverse(function(t){t.z=X,t.z2=X})}
  function c (line 6) | function c(t,e){h(e).updateCommon(t,e),l(t,e)}
  function h (line 6) | function h(t){return rt[t.__brushOption.brushType]}
  function f (line 6) | function f(t,e,n){var i=t._panels;if(!i)return!0;var r;return W(i,functi...
  function d (line 6) | function d(t,e){var n=t._panels;if(!n)return!0;var i=e.__brushOption.pan...
  function p (line 6) | function p(t){var e=t._covers,n=e.length;return W(e,function(e){t.group....
  function g (line 6) | function g(t,e){var n=$(t._covers,function(t){var e=t.__brushOption,n=V....
  function v (line 6) | function v(t){var e=t._track;if(!e.length)return!1;var n=e[e.length-1],i...
  function m (line 6) | function m(t){var e=t.length-1;return e<0&&(e=0),[t[0],t[e]]}
  function y (line 6) | function y(t,e,n,i){var r=new F.Group;return r.add(new F.Rect({name:"mai...
  function x (line 6) | function x(t,e,n,i){var r=i.brushStyle.lineWidth||0,o=q(r,J),a=n[0][0],s...
  function _ (line 6) | function _(t,e){var n=e.__brushOption,i=n.transformable,r=e.childAt(0);r...
  function b (line 6) | function b(t,e,n,i,r,o,a){var s=e.childOfName(n);s&&s.setShape(D(L(t,e,[...
  function w (line 6) | function w(t){return V.defaults({strokeNoScale:!0},t.brushStyle)}
  function S (line 6) | function S(t,e,n,i){var r=[U(t,n),U(e,i)],o=[q(t,n),q(e,i)];return[[r[0]...
  function M (line 6) | function M(t){return F.getTransform(t.group)}
  function A (line 6) | function A(t,e){if(e.length>1){e=e.split("");var n=[A(t,e[0]),A(t,e[1])]...
  function T (line 6) | function T(t,e,n,i,r,o,a,s){var l=i.__brushOption,u=t(l.range),h=C(n,o,a...
  function I (line 6) | function I(t,e,n,i,r){var o=e.__brushOption.range,a=C(t,n,i);W(o,functio...
  function C (line 6) | function C(t,e,n){var i=t.group,r=i.transformCoordToLocal(e,n),o=i.trans...
  function L (line 6) | function L(t,e,n){var i=d(t,e);if(i===!0)return V.clone(n);var r=i.getBo...
  function D (line 6) | function D(t){var e=U(t[0][0],t[1][0]),n=U(t[0][1],t[1][1]);return{x:e,y...
  function k (line 6) | function k(t,e){var n=e.offsetX,i=e.offsetY,r=t._zr;if(t._brushType){for...
  function P (line 6) | function P(t){var e=t.event;e.preventDefault&&e.preventDefault()}
  function E (line 6) | function E(t,e,n){return t.childOfName("main").contain(e,n)}
  function O (line 6) | function O(t,e,n){var i,r=e.offsetX,o=e.offsetY,u=t._creatingCover,c=t._...
  function R (line 6) | function R(t){if(this._dragging){P(t);var e=O(this,t,!0);this._dragging=...
  function N (line 6) | function N(t){return{createCover:function(e,n){return y(j(T,function(e){...
  function e (line 6) | function e(t,e){return(null!=t.id?t.id:o+e)+"-"+t.brushType}
  function n (line 6) | function n(t,n){return e(t.__brushOption,n)}
  function i (line 6) | function i(e,n){var i=t[e];null!=n&&l[n]===f?u[e]=l[n]:c(h,u[e]=null!=n?...
  function r (line 6) | function r(t){l[t]!==f&&h.group.remove(l[t])}
  function i (line 6) | function i(t){return t[0]>t[1]&&t.reverse(),t}
  function r (line 6) | function r(t,e){for(var n=!0,i=0;i<c.length;i++){var r=c[i]+"Index";if(t...
  function o (line 6) | function o(t,e,n,r){var o=n.coordSys.getAxis(t);return __DEV__&&a.assert...
  function o (line 6) | function o(t,e,n){var i=e.length?e.slice():[e,e];return e[0]>e[1]&&i.rev...
  function i (line 6) | function i(t){r.defaultEmphasis(t.label,r.LABEL_OPTIONS)}
  function i (line 6) | function i(t){return!(isNaN(parseFloat(t.x))&&isNaN(parseFloat(t.y)))}
  function r (line 6) | function r(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}
  function o (line 6) | function o(t,e,n){var i=-1;do i=Math.max(l.getPrecision(t.get(e,n)),i),t...
  function a (line 6) | function a(t,e,n,i,r,a){var s=[],l=v(e,i,t),u=e.indexOfNearest(i,l,!0);s...
  function i (line 7) | function i(t,e,n){return t.getCoordSysModel()===e}
  function r (line 7) | function r(t){var e,n=t.model,i=n.getFormattedLabels(),r=n.getModel("axi...
  function o (line 7) | function o(t,e,n){this._coordsMap={},this._coordsList=[],this._axesMap={...
  function a (line 7) | function a(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t....
  function s (line 7) | function s(t,e){return h.map(y,function(e){var n=t.getReferringComponent...
  function l (line 7) | function l(t){return"cartesian2d"===t.get("coordinateSystem")}
  function n (line 7) | function n(t){var e=i[t];for(var n in e)if(e.hasOwnProperty(n)){var r=e[...
  function n (line 7) | function n(){p(o,function(t){var e=t.isHorizontal(),n=e?[0,i.width]:[0,i...
  function r (line 7) | function r(n){return function(r,l){if(i(r,t,e)){var u=r.get("position");...
  function n (line 7) | function n(t,e,n){p(n.coordDimToDataDim(e.dim),function(n){e.scale.union...
  function i (line 7) | function i(t,e){var n=t.get("center"),i=t.get("radius"),r=e.getWidth(),o...
  function r (line 7) | function r(t,e){var n=this,i=n.getAngleAxis(),r=n.getRadiusAxis();if(i.s...
  function o (line 7) | function o(t,e){if(t.type=e.get("type"),t.scale=u.createScaleByModel(e),...
  function n (line 7) | function n(t){var n={},a=[];return i.each(t,function(s){var l=r(n,s),u=l...
  function r (line 7) | function r(t,e){return t[e]||(t[e]={predecessor:[],successor:[]}),t[e]}
  function o (line 7) | function o(t,e){var n=[];return i.each(t,function(t){i.indexOf(e,t)>=0&&...
  function a (line 7) | function a(t){u[t].entryCount--,0===u[t].entryCount&&c.push(t)}
  function s (line 7) | function s(t){h[t]=!0,a(t)}
  function n (line 7) | function n(t){for(var e=0;t>=c;)e|=1&t,t>>=1;return t+e}
  function i (line 7) | function i(t,e,n,i){var o=e+1;if(o===n)return 1;if(i(t[o++],t[e])<0){for...
  function r (line 7) | function r(t,e,n){for(n--;e<n;){var i=t[e];t[e++]=t[n],t[n--]=i}}
  function o (line 7) | function o(t,e,n,i,r){for(i===e&&i++;i<n;i++){for(var o,a=t[i],s=e,l=i;s...
  function a (line 7) | function a(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])>0){for(s=i-r;l<s&...
  function s (line 7) | function s(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])<0){for(s=r+1;l<s&...
  function l (line 7) | function l(t,e){function n(t,e){c[y]=t,d[y]=e,y+=1}function i(){for(;y>1...
  function u (line 7) | function u(t,e,r,a){r||(r=0),a||(a=t.length);var s=a-r;if(!(s<2)){var u=...
  function i (line 7) | function i(t){r.call(this,t)}
  function i (line 7) | function i(t,e,n,i,r){o.setText(t,e,n),t.text=i,"outside"===t.textPositi...
  function i (line 7) | function i(t,e,n){r.Group.call(this),this.add(this.createLine(t,e,n)),th...
  function i (line 7) | function i(t,e,n){r.Group.call(this),this._createPolyline(t,e,n)}
  function i (line 7) | function i(t){return isNaN(t[0])||isNaN(t[1])}
  function r (line 7) | function r(t,e,n,r,o,a,g,v,m,y,x){for(var _=0,b=n,w=0;w<r;w++){var S=e[b...
  function o (line 7) | function o(t,e){var n=[1/0,1/0],i=[-(1/0),-(1/0)];if(e)for(var r=0;r<t.l...
  function i (line 7) | function i(t,e,n){n.getAxisProxy(t.name,e).reset(n)}
  function r (line 7) | function r(t,e,n){n.getAxisProxy(t.name,e).filterData(n)}
  function i (line 7) | function i(t){var e=t[a];return e||(e=t[a]=[{}]),e}
  function i (line 7) | function i(t,e){var n=t.getItemStyle(),i=t.get("areaColor");return null!...
  function r (line 7) | function r(t,e,n,i,r){n.off("click"),n.off("mousedown"),e.get("selectedM...
  function o (line 7) | function o(t,e){e.eachChild(function(e){e.__region&&e.trigger(t.isSelect...
  function a (line 7) | function a(t,e){var n=new l.Group;this._controller=new s(t.getZr(),e?n:n...
  function i (line 7) | function i(){var e={type:"geoRoam",componentType:a};return e[a+"Id"]=t.i...
  function i (line 7) | function i(t){return t[r]||(t[r]={})}
  function i (line 7) | function i(t,e,n){r.positionElement(t,e.getBoxLayoutParams(),{width:n.ge...
  function i (line 8) | function i(t){return t===u[0]?"min":t===u[1]?"max":(+t).toFixed(l)}
  function t (line 8) | function t(t){d(i.color)&&!t.inRange&&(t.inRange={color:i.color.slice()....
  function e (line 8) | function e(t,e,n){var i=t[e],r=t[n];i&&!r&&(r=t[n]={},p(i,function(t,e){...
  function n (line 8) | function n(t){var e=(t.inRange||{}).symbol||(t.outOfRange||{}).symbol,n=...
  function r (line 8) | function r(t){return u[t]}
  function o (line 8) | function o(t,e){u[t]=e}
  function i (line 8) | function i(t,e){return t&&t.hasOwnProperty&&t.hasOwnProperty(e)}
  function i (line 8) | function i(t,e){t.eachTargetSeries(function(e){var n=e.getData();s.apply...
  function r (line 8) | function r(t){t.eachSeries(function(e){var n=e.getData(),i=[];t.eachComp...
  function o (line 8) | function o(t,e,n,i){function r(t){return u[t]}function o(t,e){u[t]=e}for...
  function i (line 8) | function i(){l.call(this)}
  function r (line 8) | function r(t){this.name=t,this.zoomLimit,l.call(this),this._roamTransfor...
  function o (line 8) | function o(t,e,n,i){var r=n.seriesModel,o=r?r.coordinateSystem:null;retu...
  function i (line 8) | function i(t,e){return e.type||(e.data?"category":"value")}
  function i (line 8) | function i(t,e,n){if(this.name=t,this.contours=e,n)n=[n[0],n[1]];else{va...
  function i (line 8) | function i(t,e){var n=[];return t.eachComponent("parallel",function(i,o)...
  function i (line 8) | function i(t){var e=t.mainData,n=t.datas;n||(n={main:e},t.datasAttr={mai...
  function r (line 8) | function r(t,e){if(l(this)){var n=h.extend({},this[d]);n[this.dataType]=...
  function o (line 8) | function o(t,e){return t.struct&&t.struct.update(this),e}
  function a (line 8) | function a(t,e){return f(e[d],function(n,i){n!==e&&c(n.cloneShallow(),i,...
  function s (line 8) | function s(t){var e=this[p];return null==t||null==e?e:e[d][t]}
  function l (line 8) | function l(t){return t[p]===t}
  function u (line 8) | function u(t,e,n){t[d]={},f(e,function(e,i){c(e,i,t,n)})}
  function c (line 8) | function c(t,e,n,i){n[d][e]=t,t[p]=n,t.dataType=e,i.struct&&(t[i.structA...
  function i (line 8) | function i(t){return t.get("stack")||"__ec_stack_"+t.seriesIndex}
  function r (line 8) | function r(t){return t.dim+t.index}
  function o (line 8) | function o(t,e){var n={};s.each(t,function(t,e){var o=t.getData(),a=t.co...
  function a (line 8) | function a(t,e,n){var a=o(s.filter(e.getSeriesByType(t),function(t){retu...
  function i (line 8) | function i(){function t(e,i){if(i>=n.length)return e;for(var o=-1,a=e.le...
  function e (line 8) | function e(){var t=navigator.userAgent.toLowerCase();return t.indexOf("m...
  function n (line 8) | function n(){throw new Error("setTimeout has not been defined")}
  function i (line 8) | function i(){throw new Error("clearTimeout has not been defined")}
  function r (line 8) | function r(t){if(c===setTimeout)return setTimeout(t,0);if((c===n||!c)&&s...
  function o (line 8) | function o(t){if(h===clearTimeout)return clearTimeout(t);if((h===i||!h)&...
  function a (line 8) | function a(){g&&d&&(g=!1,d.length?p=d.concat(p):v=-1,p.length&&s())}
  function s (line 8) | function s(){if(!g){var t=r(a);g=!0;for(var e=p.length;e;){for(d=p,p=[];...
  function l (line 8) | function l(t,e){this.fun=t,this.array=e}
  function u (line 8) | function u(){}
  function i (line 8) | function i(t,e){return t[e]}
  function r (line 8) | function r(t,e,n){t[e]=n}
  function o (line 8) | function o(t,e,n){return(e-t)*n+t}
  function a (line 8) | function a(t,e,n){return n>.5?e:t}
  function s (line 8) | function s(t,e,n,i,r){var a=t.length;if(1==r)for(var s=0;s<a;s++)i[s]=o(...
  function l (line 8) | function l(t,e,n){var i=t.length,r=e.length;if(i!==r)if(i>r)t.length=r;e...
  function u (line 8) | function u(t,e,n){if(t===e)return!0;var i=t.length;if(i!==e.length)retur...
  function c (line 8) | function c(t,e,n,i,r,o,a,s,l){var u=t.length;if(1==l)for(var c=0;c<u;c++...
  function h (line 8) | function h(t,e,n,i,r,o,a){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*...
  function f (line 8) | function f(t){if(y(t)){var e=t.length;if(y(t[0])){for(var n=[],i=0;i<e;i...
  function d (line 8) | function d(t){return t[0]=Math.floor(t[0]),t[1]=Math.floor(t[1]),t[2]=Ma...
  function p (line 8) | function p(t,e,n,i,r){var f=t._getter,p=t._setter,m="spline"===e,x=i.len...
  function i (line 8) | function i(t,e){return Math.abs(t-e)<a}
  function r (line 8) | function r(t,e,n){var r=0,a=t[0];if(!a)return!1;for(var s=1;s<t.length;s...
  function n (line 8) | function n(t,e,n){var i=e.x,r=e.x2,o=e.y,a=e.y2;return e.global||(i=i*n....
  function i (line 8) | function i(t,e,n){var i=n.width,r=n.height,o=Math.min(i,r),a=e.x,s=e.y,l...
  function i (line 9) | function i(t,e){return"string"==typeof t?t.lastIndexOf("%")>=0?parseFloa...
  function i (line 9) | function i(t){return t>s||t<-5e-5}
  function i (line 9) | function i(t){delete d[t]}
  function i (line 9) | function i(t){return t&&t.__esModule?t:{default:t}}
  function i (line 9) | function i(){function t(t,e){e||(e=t,t=0),t>o?o=t:t<a&&(a=t),i[t]||(i[t]...
  function e (line 9) | function e(t,e){!p&&h&&c&&0===d.size()&&a(),d.add(t,e)}
  function n (line 9) | function n(){for(p=!0;d.size();){var t=d;d=i(),t.process()}p=!1}
  function o (line 9) | function o(t){p||(void 0===t&&(t=c),f&&(s(f),f=null),t?a():n())}
  function a (line 9) | function a(){f=l(n)}
  function s (line 9) | function s(t){return clearTimeout(t)}
  function l (line 9) | function l(t){return function(t){return setTimeout(t,0)}(t)}
  function n (line 9) | function n(t,e,n){var i=t[e];return void 0!==i&&null!==i||void 0===n?i:n}
  function i (line 9) | function i(t){r.each(o,function(e){this[e]=r.bind(t[e],t)},this)}
  function i (line 9) | function i(t,e,n,i,r,o,a){var s=new u.Rect({shape:l.extend({},i)});if(o)...
  function r (line 9) | function r(t,e,n){n.style.text="",u.updateProps(n,{shape:{width:0}},e,t,...
  function o (line 9) | function o(t,e,n){var i=t.getItemLayout(e),r=s(n,i),o=i.width>0?1:-1,a=i...
  function a (line 9) | function a(t,e,n,i,r,o,a){var s=e.getItemVisual(n,"color"),h=e.getItemVi...
  function s (line 9) | function s(t,e){var n=t.get(h)||0;return Math.min(n,Math.abs(e.width),Ma...
  function i (line 9) | function i(t,e,n,i){var l=t.getItemLayout(e),u=n.get("symbolRepeat"),c=n...
  function r (line 9) | function r(t,e,n,i,r){var o=i.valueDim,a=t.get("symbolBoundingData"),s=i...
  function o (line 9) | function o(t,e,n,i,r,o,a,s,l,u){var c=l.valueDim,h=l.categoryDim,f=Math....
  function a (line 9) | function a(t,e,n,i,r){var o=t.get(k)||0;o&&(E.attr({scale:e.slice(),rota...
  function s (line 9) | function s(t,e,n,i,r,o,a,s,l,u,c,h){var f=c.categoryDim,d=c.valueDim,p=h...
  function l (line 9) | function l(t){var e=t.symbolPatternSize,n=I.createSymbol(t.symbolType,-e...
  function u (line 9) | function u(t,e,n,i){function r(t){var e=h.slice(),i=n.pxSign,r=t;return(...
  function c (line 9) | function c(t,e,n,i){function r(){this.trigger("emphasis")}function o(){t...
  function h (line 9) | function h(t,e,n){var i=A.extend({},e.barRectShape),r=t.__pictorialBarRe...
  function f (line 9) | function f(t,e,n,i){if(n.symbolClip){var r=t.__pictorialClipPath,o=A.ext...
  function d (line 9) | function d(t,e){var n=t.getItemModel(e);return n.getAnimationDelayParams...
  function p (line 9) | function p(t){return{index:t.__pictorialAnimationIndex,count:t.__pictori...
  function g (line 9) | function g(){return this.parentModel.isAnimationEnabled()&&!!this.getSha...
  function v (line 9) | function v(t,e){t.off("emphasis").off("normal");var n=e.symbolScale.slic...
  function m (line 9) | function m(t,e,n,i){var r=new T.Group,o=new T.Group;return r.add(o),r.__...
  function y (line 9) | function y(t,e,n){var i=n.animationModel,r=n.dataIndex,o=t.__pictorialBu...
  function x (line 9) | function x(t,e,n,i){var r=i.__pictorialBarRect;r&&(r.style.text="");var ...
  function _ (line 9) | function _(t,e){return[t.getItemVisual(e.dataIndex,"symbol")||"none",!!e...
  function b (line 9) | function b(t,e,n){A.each(t.__pictorialBundle.children(),function(i){i!==...
  function w (line 9) | function w(t,e,n,i,r,o){e&&t.attr(e),i.symbolClip&&!r?n&&t.attr(n):n&&T[...
  function S (line 9) | function S(t,e,n){var i=n.color,r=n.dataIndex,o=n.itemModel,a=o.getModel...
  function M (line 9) | function M(t){var e=Math.round(t);return Math.abs(t-e)<1e-4?e:Math.ceil(t)}
  function i (line 9) | function i(t,e,n){var i=e.getItemModel(n),r=i.getModel(u),o=e.getItemVis...
  function i (line 9) | function i(t){var e=[],n=[];return t.eachSeriesByType("boxplot",function...
  function r (line 9) | function r(t){var e,n,i=t.axis,r=t.seriesModels,o=r.length,s=t.boxWidthL...
  function o (line 9) | function o(t,e,n){var i=t.coordinateSystem,r=t.getData(),o=t.dimensions,...
  function i (line 9) | function i(t,e,n){var i=e.getItemModel(n),r=i.getModel(u),o=e.getItemVis...
  function i (line 9) | function i(t,e){var n,i=t.getBaseAxis(),a="category"===i.type?i.getBandW...
  function t (line 9) | function t(t){var n=[];return n[f]=c,n[d]=t,isNaN(c)||isNaN(t)?[NaN,NaN]...
  function i (line 9) | function i(t,e){var n=t.slice(),i=t.slice();n[f]+=a/2,i[f]-=a/2,e?A.push...
  function s (line 9) | function s(){var e=t(Math.min(p,g,v,m)),n=t(Math.max(p,g,v,m));return e[...
  function i (line 10) | function i(t,e){function n(){a.ignore=a.hoverIgnore,s.ignore=s.hoverIgno...
  function r (line 10) | function r(t,e,n,i){var r=i.getModel("textStyle"),o=i.get("position"),s=...
  function i (line 10) | function i(t,e){return a.getLayoutRect(t.getBoxLayoutParams(),{width:e.g...
  function r (line 10) | function r(t,e){for(var n=t.mapArray("value",function(t){return t}),i=[]...
  function o (line 10) | function o(t){t.each(function(e){var n,i,r,o,a=t.getItemModel(e),s=a.get...
  function i (line 10) | function i(t,e){var n=t.get("center"),i=e.getWidth(),r=e.getHeight(),o=M...
  function r (line 10) | function r(t,e){return e&&("string"==typeof e?t=e.replace("{value}",null...
  function n (line 10) | function n(t,n){function i(t){return t=this.parsePath(t),t&&"label"===t[...
  function i (line 10) | function i(t,e){return t.getVisual("opacity")||t.getModel().get(e)}
  function o (line 10) | function o(t,e){var n=i(t,e),r=t.getGraphicEl();null==n&&(n=1),r.travers...
  function a (line 10) | function a(t,e){var n=i(t,e);t.getGraphicEl().traverse(function(t){t.tri...
  function i (line 10) | function i(t,e,n){for(var i,r=t[0],o=t[1],f=t[2],d=1/0,p=n*n,g=.1,v=.1;v...
  function n (line 10) | function n(t){var e=t.getVisual("symbolSize");return e instanceof Array&...
  function i (line 10) | function i(t,e,n){var i=t.getBoxLayoutParams();return i.aspect=n,o.getLa...
  function n (line 10) | function n(t){return t instanceof Array||(t=[t,t]),t}
  function i (line 10) | function i(){var t=r.createCanvas();this.canvas=t,this.blurSize=30,this....
  function i (line 10) | function i(t,e,n){var i=t[1]-t[0];e=l.map(e,function(e){return{interval:...
  function r (line 10) | function r(t,e){var n=t[1]-t[0];return e=[(e[0]-t[0])/n,(e[1]-t[0])/n],f...
  function o (line 10) | function o(t){var e=t.dimensions;return"lng"===e[0]&&"lat"===e[1]}
  function i (line 11) | function i(t,e,n){a.call(this,t,e,n),this._lastFrame=0,this._lastFramePe...
  function i (line 11) | function i(t){return a.isArray(t)||(t=[+t,+t]),t}
  function r (line 11) | function r(t,e){t.eachChild(function(t){t.attr({z:e.z,zlevel:e.zlevel,st...
  function o (line 11) | function o(t,e){h.call(this);var n=new c(t,e),i=new h;this.add(n),this.a...
  function i (line 11) | function i(){this.group=new r.Group,this._lineEl=new s}
  function i (line 11) | function i(){this.group=new r.Group,this._symbolEl=new a({})}
  function i (line 11) | function i(t){return isNaN(+t.cpx1)||isNaN(+t.cpy1)}
  function i (line 11) | function i(t,e,n,i){l.Group.call(this),this.bodyIndex,this.whiskerIndex,...
  function r (line 11) | function r(t,e,n){return s.map(t,function(t){return t=t.slice(),t[e]=n.i...
  function o (line 11) | function o(t){var e={};return s.each(t,function(t,n){e["ends"+n]=t}),e}
  function a (line 11) | function a(t){this.group=new l.Group,this.styleUpdater=t}
  function i (line 11) | function i(t,e){if(t.length===e.length){for(var n=0;n<t.length;n++){var ...
  function r (line 11) | function r(t){return"number"==typeof t?t:t?.3:0}
  function o (line 11) | function o(t){var e=t.getGlobalExtent();if(t.onBand){var n=t.getBandWidt...
  function a (line 11) | function a(t){return t>=0?1:-1}
  function s (line 11) | function s(t,e){var n=t.getBaseAxis(),i=t.getOtherAxis(n),r=n.onZero?0:i...
  function l (line 11) | function l(t,e,n){var i=o(t.getAxis("x")),r=o(t.getAxis("y")),a=t.getBas...
  function u (line 11) | function u(t,e,n){var i=t.getAngleAxis(),r=t.getRadiusAxis(),o=r.getExte...
  function c (line 11) | function c(t,e,n){return"polar"===t.type?u(t,e,n):l(t,e,n)}
  function h (line 11) | function h(t,e,n){for(var i=e.getBaseAxis(),r="x"===i.dim||"radius"===i....
  function f (line 11) | function f(t,e){var n=t.getVisual("visualMeta");if(n&&n.length&&t.count(...
  function n (line 11) | function n(t){return t>=0?1:-1}
  function i (line 11) | function i(t,e,i){for(var r,o=t.getBaseAxis(),a=t.getOtherAxis(o),s=o.on...
  function r (line 11) | function r(t,e){var n=[];return e.diff(t).add(function(t){n.push({cmd:"+...
  function i (line 11) | function i(t){var e=t.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(__DEV__,t.d...
  function n (line 11) | function n(t){return t instanceof Array||(t=[t,t]),t}
  function i (line 11) | function i(t,e){var n={},i=["value"];return r.each(t,function(t){t.each(...
  function i (line 11) | function i(t,e,n){var i=t.get("data"),o=r(e);i&&i.length&&s.each(n,funct...
  function r (line 11) | function r(t){return+t.replace("dim","")}
  function o (line 11) | function o(t,e){var n=0;s.each(t,function(t){var e=r(t);e>n&&(n=e)});var...
  function i (line 11) | function i(t,e,n){var i=t.model,r=t.getRect(),o=new l.Rect({shape:{x:r.x...
  function r (line 11) | function r(t,e,n,i){for(var r=[],o=0;o<n.length;o++){var a=n[o],l=t.get(...
  function o (line 11) | function o(t,e,n,i,o){var a=r(t,n,i,o),s=new l.Polyline({shape:{points:a...
  function a (line 11) | function a(t,e){var n=t.hostModel.getModel("lineStyle.normal"),i=n.getLi...
  function s (line 11) | function s(t,e){return"category"===e?null==t:null==t||isNaN(t)}
  function e (line 11) | function e(t){o(h,u,t,p,d,null,v)}
  function n (line 11) | function n(e,n){var i=f.getItemGraphicEl(n),o=r(h,e,p,d);h.setItemGraphi...
  function s (line 11) | function s(t){var e=f.getItemGraphicEl(t);u.remove(e)}
  function i (line 12) | function i(t,e,n,i){var o=e.getData(),a=this.dataIndex,s=o.getName(a),l=...
  function r (line 12) | function r(t,e,n,i,r){var o=(e.startAngle+e.endAngle)/2,a=Math.cos(o),s=...
  function o (line 12) | function o(t,e){function n(){o.ignore=o.hoverIgnore,a.ignore=a.hoverIgno...
  function a (line 12) | function a(t,e,n,i,r){var o=i.getModel("textStyle"),a="inside"===r||"inn...
  function i (line 12) | function i(){a.stopAnimation(!0),a.animateTo({shape:{r:h.r+10}},300,"ela...
  function o (line 12) | function o(){a.stopAnimation(!0),a.animateTo({shape:{r:h.r}},300,"elasti...
  function i (line 12) | function i(t,e,n,i,r,o,a){function s(e,n,i,r){for(var o=e;o<n;o++)if(t[o...
  function r (line 12) | function r(t,e,n,r,o,a){for(var s=[],l=[],u=0;u<t.length;u++)t[u].x<e?s....
  function i (line 12) | function i(t){return o.isArray(t)||(t=[+t,+t]),t}
  function s (line 12) | function s(t,e){var n=t.getItemVisual(e,"symbol")||"circle",r=t.getItemV...
  function l (line 12) | function l(e,n,i,o,a,l){i.removeAll();for(var u=0;u<n.length-1;u++){var ...
  function u (line 12) | function u(t){return o.map(t,function(t){return[c.cx,c.cy]})}
  function i (line 12) | function i(){u.attr("ignore",m)}
  function a (line 12) | function a(){u.attr("ignore",v)}
  function e (line 12) | function e(t,e){i[e]=i[e]||[],i[e][o]=r.dataToPoint(t,o)}
  function i (line 12) | function i(t,e,n){var i=new r.Rect({shape:{x:t.x-10,y:t.y-10,width:0,hei...
  function i (line 12) | function i(t,e){return M.getLayoutRect(t.getBoxLayoutParams(),{width:e.g...
  function r (line 12) | function r(t,e,n,i,r,o,s){a(t,n,r),u(t,e,o,i,s),v(t)}
  function o (line 12) | function o(t){T.each(t,function(t){var e=x(t.outEdges,S),n=x(t.inEdges,S...
  function a (line 12) | function a(t,e,n){for(var i=t,r=null,o=0,a=0;i.length;){r=[];for(var u=0...
  function s (line 12) | function s(t,e){T.each(t,function(t){t.outEdges.length||t.setLayout({x:e...
  function l (line 12) | function l(t,e){T.each(t,function(t){var n=t.getLayout().x*e;t.setLayout...
  function u (line 12) | function u(t,e,n,i,r){var o=A().key(function(t){return t.getLayout().x})...
  function c (line 12) | function c(t,e,n,i,r){var o=[];T.each(e,function(t){var e=t.length,n=0;T...
  function h (line 12) | function h(t,e,n){T.each(t,function(t){var i,r,o,a=0,s=t.length;for(t.so...
  function f (line 12) | function f(t,e){T.each(t.slice().reverse(),function(t){T.each(t,function...
  function d (line 12) | function d(t){return _(t.node2)*t.getValue()}
  function p (line 12) | function p(t,e){T.each(t,function(t){T.each(t,function(t){if(t.inEdges.l...
  function g (line 12) | function g(t){return _(t.node1)*t.getValue()}
  function v (line 12) | function v(t){T.each(t,function(t){t.outEdges.sort(m),t.inEdges.sort(y)}...
  function m (line 12) | function m(t,e){return t.node2.getLayout().y-e.node2.getLayout().y}
  function y (line 12) | function y(t,e){return t.node1.getLayout().y-e.node1.getLayout().y}
  function x (line 12) | function x(t,e){for(var n=0,i=t.length,r=-1;++r<i;){var o=+e.call(t,t[r]...
  function _ (line 12) | function _(t){return t.getLayout().y+t.getLayout().dy/2}
  function b (line 12) | function b(t,e){return t.getLayout().y-e.getLayout().y}
  function w (line 12) | function w(t,e){return t<e?-1:t>e?1:t===e?0:NaN}
  function S (line 12) | function S(t){return t.getValue()}
  function t (line 12) | function t(t,n){return e.get("time",t)-e.get("time",n)}
  function i (line 12) | function i(t,e,n){var i=new o.Rect({shape:{x:t.x-10,y:t.y-10,width:0,hei...
  function l (line 12) | function l(t){return t.name}
  function u (line 12) | function u(e,n,s){var l=this._layers;if("remove"===e)return void f.remov...
  function i (line 12) | function i(t,e,n){if(t.count())for(var i,a=e.coordinateSystem,s=e.getLay...
  function r (line 12) | function r(t){for(var e,n=t.length,i=t[0].length,r=[],o=[],a=0,s={},l=0;...
  function i (line 12) | function i(t){this.group=new a.Group,t.add(this.group)}
  function r (line 12) | function r(t,e,n,i,r,o){var a=[[r?t:t-h,e],[t+n,e],[t+n,e+i],[r?t:t-h,e+...
  function o (line 12) | function o(t,e,n){t.eventData={componentType:"series",componentSubType:"...
  function i (line 12) | function i(t,e){var n=0;s.each(t.children,function(t){i(t,e);var r=t.val...
  function r (line 12) | function r(t,e){var n=e.get("color");if(n){t=t||[];var i;return s.each(t...
  function i (line 13) | function i(){return{nodeGroup:[],background:[],content:[]}}
  function r (line 13) | function r(t,e,n,i,r,l,u,c,h,f){function d(e){R.dataIndex=u.dataIndex,R....
  function o (line 13) | function o(t,e){var n=t*w+e;return(n-1)/n}
  function o (line 13) | function o(t,e,n,i,r){function s(t){return t.getId()}function u(a,s){var...
  function s (line 13) | function s(t){var e=i();return t&&y(t,function(t,n){var i=e[n];y(t,funct...
  function u (line 13) | function u(){y(m,function(t){y(t,function(t){t.parent&&t.parent.remove(t...
  function e (line 13) | function e(t){var e=this.seriesModel.get("nodeClick",!0);if(e){var n=thi...
  function i (line 13) | function i(e){"animating"!==this._state&&(u.aboveViewRoot(t.getViewRoot(...
  function n (line 13) | function n(e,n){var i=r.retrieveTargetInfo(t,e);if(i){var o=e.getViewRoo...
  function i (line 13) | function i(t,e,n){var i={mainType:"series",subType:"treemap",query:n};t....
  function r (line 13) | function r(t,e,n,i){var a,s;if(!t.isRemoved()){var l=t.getLayout();a=l.w...
  function o (line 13) | function o(t,e,n,i,r,o){var u=t.children||[],c=i.sort;"asc"!==c&&"desc"!...
  function a (line 13) | function a(t,e,n,i,r){if(!i)return n;for(var o=t.get("visibleMin"),a=r.l...
  function s (line 13) | function s(t,e){return e&&t.sort(function(t,n){return"asc"===e?t.getValu...
  function l (line 13) | function l(t,e,n){for(var i=0,r=0,o=e.length;r<o;r++)i+=e[r].getValue();...
  function u (line 13) | function u(t,e,n){for(var i,r=0,o=1/0,a=0,s=t.length;a<s;a++)i=t[a].getL...
  function c (line 13) | function c(t,e,n,i,r){var o=e===n.width?0:1,a=1-o,s=["x","y"],l=["width"...
  function h (line 13) | function h(t,e,n,i,r){var o=(e||{}).node,a=[i,r];if(!o||o===n)return a;f...
  function f (line 13) | function f(t,e,n){if(e)return{x:e.x,y:e.y};var i={x:0,y:0};if(!n)return ...
  function d (line 13) | function d(t,e,n,i,r){var o=t.getLayout(),a=n[r],s=a&&a===t;if(!(a&&!s||...
  function i (line 13) | function i(t,e,n,s,u,h){var f=t.getModel(),p=t.getLayout();if(p&&!p.invi...
  function r (line 13) | function r(t,e,n,i){var r=d.extend({},e);return d.each(["color","colorAl...
  function o (line 13) | function o(t){var e=s(t,"color");if(e){var n=s(t,"colorAlpha"),i=s(t,"co...
  function a (line 13) | function a(t,e){return null!=e?f.modifyHSL(e,null,null,t):null}
  function s (line 13) | function s(t,e){var n=t[e];if(null!=n&&"none"!==n)return n}
  function l (line 13) | function l(t,e,n,i,r,o){if(o&&o.length){var a=u(e,"color")||null!=r.colo...
  function u (line 13) | function u(t,e){var n=t.get(e);return p(n)&&n.length?{name:e,range:n}:null}
  function c (line 13) | function c(t,e,n,i,r,o){var a=d.extend({},e);if(r){var s=r.type,l="color...
  function i (line 13) | function i(t,e,n,i){var r=t.coordToPoint([e,i]),o=t.coordToPoint([n,i]);...
  function i (line 13) | function i(t,e){function n(t,e){var n=i.getAxis(t);return n.toGlobalCoor...
  function i (line 13) | function i(t,e,n){return n&&"axisAreaSelect"===n.type&&e.findComponents(...
  function i (line 13) | function i(t,e,n){return{position:[t.cx,t.cy],rotation:n/180*Math.PI,lab...
  function i (line 13) | function i(t){var e=t.coordinateSystem,n=t.axis,i={},r=n.position,o=n.or...
  function i (line 13) | function i(t,e,n,i){(!i||i.$from!==t.id)&&this._brushController.setPanel...
  function i (line 13) | function i(t){var e={};r.each(t,function(t){e[t]=1}),t.length=0,r.each(e...
  function i (line 13) | function i(t){var e=["x","y"],n=["width","height"];return{point:function...
  function r (line 13) | function r(t,e){return e[0]<=t&&t<=e[1]}
  function o (line 13) | function o(t,e,n,i,r){for(var o=0,s=r[r.length-1];o<r.length;o++){var l=...
  function a (line 13) | function a(t,e,n,i,r,o,a,u){var c=l(n-t,r-a,i-e,o-u);if(s(c))return!1;va...
  function s (line 13) | function s(t){return t<=1e-6&&t>=-1e-6}
  function l (line 13) | function l(t,e,n,i){return t*i-e*n}
  function i (line 13) | function i(t,e,n,i,o){if(o){var a=t.getZr();a[x]||(a[y]||(a[y]=r),g.crea...
  function r (line 13) | function r(t,e){if(!t.isDisposed()){var n=t.getZr();n[x]=!0,t.dispatchAc...
  function o (line 13) | function o(t,e,n,i){for(var r=n.getItemLayout(i),o=0,a=e.length;o<a;o++)...
  function a (line 13) | function a(t){var e=t.brushSelector;if(f.isString(e)){var n=[];return f....
  function s (line 13) | function s(t,e){var n=t.option.seriesIndex;
  function l (line 14) | function l(t){var e=t.selectors={};return f.each(p[t.brushType],function...
  function u (line 14) | function u(t){return new d(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][...
  function i (line 14) | function i(t){return"all"===_||w[t]}
  function d (line 14) | function d(t){return!!t.length}
  function p (line 14) | function p(t,e){var n=t.coordinateSystem;A|=n.hasAxisbrushed(),i(e)&&n.e...
  function g (line 14) | function g(t,n,r){var l=a(t);if(l&&!s(e,n)&&(f.each(T,function(n){l[n.br...
  function i (line 14) | function i(t,e){var n=[1/0,-(1/0)];return u(e,function(e){var i=e.getDat...
  function r (line 14) | function r(t,e){var n=e.getMin(!0);null!=n&&"dataMin"!==n&&(t[0]=n);var ...
  function o (line 14) | function o(t,e){var n=t.getAxisModel(),i=t._percentWindow,r=t._valueWind...
  function e (line 14) | function e(t){return t>=o[0]&&t<=o[1]}
  function i (line 14) | function i(t){var e=[0,100];return!(t[0]<=e[1])&&(t[0]=e[1]),!(t[1]<=e[1...
  function i (line 14) | function i(t){return{x:"y",y:"x",radius:"angle",angle:"radius"}[t]}
  function e (line 14) | function e(t){var e=o.getTransform(i.handles[t].parent,this.group),n=o.t...
  function i (line 14) | function i(t){var e=t.getZr();return e[p]||(e[p]={})}
  function r (line 14) | function r(t,e,n){var i=new h(t.getZr());return i.enable(),i.on("pan",d(...
  function o (line 14) | function o(t){c.each(t,function(e,n){e.count||(e.controller.dispose(),de...
  function a (line 14) | function a(t,e,n,i,r,o,a){l(t,function(s){return s.panGetRange(t.control...
  function s (line 14) | function s(t,e,n,i){l(t,function(r){return r.zoomGetRange(t.controller,e...
  function l (line 14) | function l(t,e){var n=[];c.each(t.dataZoomInfos,function(t){var i=e(t);i...
  function u (line 14) | function u(t,e){t.dispatchAction({type:"dataZoom",batch:e})}
  function i (line 14) | function i(t,e){e.update="updateView",r.registerAction(e,function(e,n){v...
  function i (line 14) | function i(t,e,n,i){var r=n.type;__DEV__&&l.assert(r,"graphic type MUST ...
  function r (line 14) | function r(t,e){var n=t&&t.parent;n&&("group"===t.type&&t.traverse(funct...
  function o (line 14) | function o(t){return t=l.extend({},t),l.each(["id","parentId","$action",...
  function a (line 14) | function a(t,e){var n;return l.each(e,function(e){null!=t[e]&&"auto"!==t...
  function i (line 14) | function i(t,e){e.dispatchAction({type:"legendToggleSelect",name:t})}
  function r (line 14) | function r(t,e,n){var i=n.getZr().storage.getDisplayList()[0];i&&i.useHo...
  function o (line 14) | function o(t,e,n){var i=n.getZr().storage.getDisplayList()[0];i&&i.useHo...
  function i (line 14) | function i(t,e,n){var i,r={},a="toggleSelected"===t;return n.eachCompone...
  function i (line 14) | function i(t){return!isNaN(t)&&!isFinite(t)}
  function r (line 14) | function r(t,e,n,r){var o=1-t;return i(e[o])&&i(n[o])}
  function o (line 14) | function o(t,e){var n=e.coord[0],i=e.coord[1];return!("cartesian2d"!==t....
  function a (line 14) | function a(t,e,n,r,o){var a,s=r.coordinateSystem,l=t.getItemModel(e),u=c...
  function s (line 14) | function s(t,e,n){var i,r,a=["x0","y0","x1","y1"];t?(i=l.map(t&&t.dimens...
  function i (line 15) | function i(t){return!isNaN(t)&&!isFinite(t)}
  function r (line 15) | function r(t,e,n,r){var o=1-t,a=r.dimensions[t];return i(e[o])&&i(n[o])&...
  function o (line 15) | function o(t,e){if("cartesian2d"===t.type){var n=e[0].coord,i=e[1].coord...
  function a (line 15) | function a(t,e,n,r,o){var a,s=r.coordinateSystem,l=t.getItemModel(e),u=c...
  function s (line 15) | function s(t,e,n){var i;i=t?l.map(t&&t.dimensions,function(t){var n=e.ge...
  function r (line 15) | function r(e,n,r){var o=e.getItemModel(n);a(e,n,r,t,i),e.setItemVisual(n...
  function i (line 15) | function i(t,e,n){var i=e.coordinateSystem;t.each(function(r){var o,a=t....
  function r (line 15) | function r(t,e,n){var i;i=t?a.map(t&&t.dimensions,function(t){var n=e.ge...
  function e (line 15) | function e(t,e,n){var i=n%e.length;return t[i]=t[i]||[],i}
  function i (line 15) | function i(t,e){return u.getLayoutRect(t.getBoxLayoutParams(),{width:e.g...
  function r (line 15) | function r(t,e,n,i){return l.makePath(t.get(e).replace(/^path:\/\//,""),...
  function o (line 15) | function o(t,e,n,i,r,o){var a=e.get("color");if(r)r.setColor(a),n.add(r)...
  function a (line 15) | function a(t,e,n,i,r){if(!t.dragging){var o=i.getModel("checkpointStyle"...
  function n (line 15) | function n(t){var e=t.position;t.origin=[h[0][0]-e[0],h[1][0]-e[1]]}
  function i (line 15) | function i(t){return[[t.x,t.x+t.width],[t.y,t.y+t.height]]}
  function r (line 15) | function r(t,e,n,i,r){t[i]+=n[i][r]-e[i][r]}
  function o (line 15) | function o(t,n,o,f){if(t){var d={position:t,origin:[a/2,0],rotation:f?-s...
  function t (line 15) | function t(){var t=this.model;this._changeTimeline(t.getCurrentIndex()+(...
  function i (line 15) | function i(t){var e=t.type,n={number:"value",time:"time"};if(n[e]&&(t.ax...
  function r (line 15) | function r(t){var e=t.itemStyle||(t.itemStyle={}),n=e.emphasis||(e.empha...
  function o (line 15) | function o(t,e){return t.hasOwnProperty(e)}
  function i (line 15) | function i(t){return 0===t.indexOf("my")}
  function f (line 15) | function f(o,a){var l,u=y[o],c=y[a],f=v[u],p=new s(f,t,t.ecModel);if(u&&...
  function d (line 15) | function d(i,r,s){var l=i.getModel("iconStyle"),u=r.getIcons?r.getIcons(...
  function i (line 15) | function i(t,e,n){this.model=t,this.ecModel=e,this.api=n,this._brushType...
  function i (line 15) | function i(t){var e={},n=[],i=[];return t.eachRawSeries(function(t){var ...
  function r (line 15) | function r(t){var e=[];return p.each(t,function(t,n){var i=t.categoryAxi...
  function o (line 15) | function o(t){return p.map(t,function(t){var e=t.getRawData(),n=[t.name]...
  function a (line 15) | function a(t){var e=i(t);return{value:p.filter([r(e.seriesGroupByCategor...
  function s (line 16) | function s(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}
  function l (line 16) | function l(t){if(t.slice(0,t.indexOf("\n")).indexOf(m)>=0)return!0}
  function u (line 16) | function u(t){for(var e=t.split(/\n+/g),n=s(e.shift()).split(y),i=[],r=p...
  function c (line 16) | function c(t){for(var e=t.split(/\n+/g),n=s(e.shift()),i=[],r=0;r<e.leng...
  function h (line 16) | function h(t,e){var n=t.split(new RegExp("\n*"+v+"\n*","g")),i={series:[...
  function f (line 16) | function f(t){this._dom=null,this.model=t}
  function d (line 16) | function d(t,e){return p.map(t,function(t,n){var i=e&&e[n];return p.isOb...
  function n (line 16) | function n(){i.removeChild(o),M._dom=null}
  function i (line 16) | function i(t,e,n){(this._brushController=new l(n.getZr())).on("brush",s....
  function r (line 16) | function r(t){var e={};return s.each(["xAxisIndex","yAxisIndex"],functio...
  function o (line 16) | function o(t,e){t.setIconStatus("back",c.count(e)>1?"emphasis":"normal")}
  function a (line 16) | function a(t,e,n,i){var o=n._isZoomActive;i&&"takeGlobalCursor"===i.type...
  function n (line 16) | function n(t,e,n){var r=i(t,n[t],a);r&&(o[r.id]={dataZoomId:r.id,startVa...
  function i (line 16) | function i(t,e,n){var i;return n.eachComponent({mainType:"dataZoom",subT...
  function e (line 16) | function e(t,e){if(e){var r=t+"Index",o=e[r];null==o||"all"==o||s.isArra...
  function n (line 16) | function n(e,n){var i=t[e];s.isArray(i)||(i=i?[i]:[]),h(i,n)}
  function i (line 16) | function i(t){this.model=t}
  function i (line 16) | function i(t){this.model=t}
  function i (line 16) | function i(t){this.model=t}
  function i (line 16) | function i(t){var e="cubic-bezier(0.23, 1, 0.32, 1)",n="left "+t+"s "+e+...
  function r (line 16) | function r(t){var e=[],n=t.get("fontSize"),i=t.getTextColor();return i&&...
  function o (line 16) | function o(t){t=t;var e=[],n=t.get("transitionDuration"),o=t.get("backgr...
  function a (line 16) | function a(t,e){var n=document.createElement("div"),i=e.getZr();this.el=...
  function i (line 16) | function i(t,e){if(!t||!e)return!1;var n=v.round;return n(t[0])===n(e[0]...
  function r (line 16) | function r(t,e,n,i){return{x1:t,y1:e,x2:n,y2:i}}
  function o (line 16) | function o(t,e,n,i){return{x:t,y:e,width:n,height:i}}
  function a (line 16) | function a(t,e,n,i,r,o){return{cx:t,cy:e,r0:n,r:i,startAngle:r,endAngle:...
  function s (line 16) | function s(t,e,n,i,r){var o=n.clientWidth,a=n.clientHeight,s=20;return t...
  function l (line 16) | function l(t,e,n,i,r){var o=n.clientWidth,a=n.clientHeight;return t=Math...
  function u (line 16) | function u(t,e,n){var i=n.clientWidth,r=n.clientHeight,o=5,a=0,s=0,l=e.w...
  function c (line 16) | function c(t,e,n,i,r,o,a,c){var h=c.getWidth(),f=c.getHeight(),d=a&&a.ge...
  function h (line 16) | function h(t){var e=t.coordinateSystem,n=t.get("tooltip.trigger",!0);ret...
  function r (line 16) | function r(t){var e=t.getData(),n=m.queryDataIndex(e,i);if(null!=n&&!p.i...
  function s (line 16) | function s(n,i,o){var a="x"===n?r(i[0],o[0],i[0],o[1]):r(o[0],i[1],o[1],...
  function l (line 16) | function l(n,i,r){var a=e.getAxis(n),s=a.getBandWidth(),l=r[1]-r[0],c="x...
  function a (line 16) | function a(n,i,o){var a=e.getAxis(),l=a.orient,c="horizontal"===l?r(i[0]...
  function s (line 16) | function s(n,i,o){var a,s=e.pointToCoord(i);if("angle"===n){var l=e.coor...
  function l (line 16) | function l(n,i,r){var o,s=e.getAxis(n),l=s.getBandWidth(),c=e.pointToCoo...
  function i (line 16) | function i(t,e,n){if(n[0]===n[1])return n.slice();for(var i=200,r=(n[1]-...
  function e (line 16) | function e(e,n){o.push({value:e,color:t(e,n)})}
  function i (line 16) | function i(t,e,n,i){return new u.Polygon({shape:{points:t},draggable:!!n...
  function r (line 16) | function r(t,e){return 0===t?[[0,0],[e,0],[e,-e]]:[[0,0],[e,0],[e,e]]}
  function o (line 16) | function o(t,e,n,i){return t?[[0,-y(e,x(n,0))],[_,0],[0,y(e,x(i-n,0))]]:...
  function a (line 16) | function a(t,e,n){var i=6,r=t.get("hoverLinkDataSize");return r&&(i=v(r,...
  function s (line 16) | function s(t){return!t.get("realtime")&&t.get("hoverLinkOnHandle")}
  function i (line 17) | function i(t,e){var n=t.inverse;("vertical"===t.orient?!n:n)&&e.reverse()}
  function t (line 17) | function t(t,e,n){return t&&t[e]&&(o.isObject(t[e])?t[e].hasOwnProperty(...
  function e (line 17) | function e(e,o){var a=r.getRepresentValue({interval:e});o||(o=r.getValue...
  function t (line 17) | function t(t){var a=t.piece,s=new o.Group;s.onclick=r.bind(this._onItemC...
  function n (line 17) | function n(t){var n=this.visualMapModel;n.option.hoverLink&&this.api.dis...
  function i (line 17) | function i(t){return this._axes[t]}
  function i (line 17) | function i(t){o.call(this,t)}
  function i (line 17) | function i(t,e,n,i,r){l.call(this,t),this.map=e,this._nameCoordMap={},th...
  function r (line 17) | function r(t,e,n,i){var r=n.geoModel,o=n.seriesModel,a=r?r.coordinateSys...
  function i (line 17) | function i(t){if(!t.UTF8Encoding)return t;for(var e=t.features,n=0;n<e.l...
  function r (line 17) | function r(t,e){for(var n=[],i=e[0],r=e[1],o=0;o<t.length;o+=2){var a=t....
  function o (line 17) | function o(t){for(var e=[],n=0;n<t.length;n++)for(var i=0;i<t[n].length;...
  function i (line 17) | function i(t,e){return e.type||(e.data?"category":"value")}
  function i (line 17) | function i(t,e,n){this._axesMap={},this._axesLayout={},this.dimensions=t...
  function i (line 17) | function i(t){if(!t.parallel){var e=!1;o.each(t.series,function(t){t&&"p...
  function r (line 17) | function r(t){var e=a.normalizeToArray(t.parallelAxis);o.each(e,function...
  function i (line 17) | function i(t,e){e=e||[0,360],o.call(this,"angle",t,e),this.type="category"}
  function i (line 17) | function i(t,e){return e.type||(e.data?"category":"value")}
  function i (line 17) | function i(t,e){o.call(this,"radius",t,e),this.type="category"}
  function i (line 18) | function i(t,e,n){o.call(this,t,e,n),this.type="value",this.angle=0,this...
  function i (line 18) | function i(t,e,n){this._model=t,this.dimensions=[],this._indicatorAxes=r...
  function n (line 18) | function n(t){var e=Math.pow(10,Math.floor(Math.log(t)/Math.LN10)),n=t/e...
  function i (line 18) | function i(t,e){return s.defaults({show:e},t)}
  function i (line 18) | function i(t,e){return e.type||(e.data?"category":"value")}
  function i (line 18) | function i(t,e,n){this.dimension="single",this.dimensions=["single"],thi...
  function i (line 18) | function i(t,e){var n=[];return t.eachComponent("singleAxis",function(i,...
  function i (line 18) | function i(t,e){this.id=null==t?"":t,this.inEdges=[],this.outEdges=[],th...
  function r (line 18) | function r(t,e,n){this.node1=t,this.node2=e,this.dataIndex=null==n?-1:n}
  function i (line 18) | function i(t,e){this.root,this.data,this._nodes=[],this.hostModel=t,this...
  function r (line 18) | function r(t,e){var n=e.children;t.parentNode!==e&&(n.push(t),t.parentNo...
  function o (line 18) | function o(t,e){h.push(t);var n=new c(t.name,a);e?r(n,e):a.root=n,a._nod...
  function i (line 18) | function i(t,e){c.each(e,function(e,n){x.hasClass(n)||("object"==typeof ...
  function r (line 18) | function r(t){t=t,this.option={},this.option[b]=1,this._componentsMap={}...
  function o (line 18) | function o(t,e){c.isArray(e)||(e=e?[e]:[]);var n={};return d(e,function(...
  function a (line 18) | function a(t,e,n){return e.type?e.type:n?n.subType:x.determineSubType(t,e)}
  function s (line 18) | function s(t){return g(t,function(t){return t.componentIndex})||[]}
  function l (line 18) | function l(t,e){return e.hasOwnProperty("subType")?p(t,function(t){retur...
  function u (line 18) | function u(t){if(__DEV__&&!t._seriesIndices)throw new Error("Series has ...
  function e (line 18) | function e(e,r){var l=h.normalizeToArray(t[e]),u=h.mappingToExists(i[e],...
  function e (line 18) | function e(t){var e=r+"Index",n=r+"Id",i=r+"Name";return!t||null==t[e]&&...
  function n (line 18) | function n(e){return t.filter?p(e,t.filter):e}
  function i (line 18) | function i(t){this._api=t,this._timelineOptions=[],this._mediaList=[],th...
  function r (line 18) | function r(t,e,n){var i,r,o=[],a=[],s=t.timeline;return t.baseOption&&(r...
  function o (line 18) | function o(t,e,n){var i={width:e,height:n,aspectratio:e/n},r=!0;return u...
  function a (line 18) | function a(t,e,n){return"min"===n?t>=e:"max"===n?t<=e:t===e}
  function s (line 18) | function s(t,e){return t.join(",")===e.join(",")}
  function l (line 18) | function l(t,e){e=e||{},f(e,function(e,n){if(null!=e){var i=t[n];if(h.ha...
  function i (line 18) | function i(t,e){return t&&t.getShallow(e)}
  function i (line 18) | function i(t,e){e=e.split(",");for(var n=t,i=0;i<e.length&&(n=n&&n[e[i]]...
  function r (line 18) | function r(t,e,n,i){e=e.split(",");for(var r,o=t,a=0;a<e.length-1;a++)r=...
  function o (line 18) | function o(t){h(l,function(e){e[0]in t&&!(e[1]in t)&&(t[e[1]]=t[e[0]])})}
  function i (line 18) | function i(t){var e=t&&t.itemStyle;e&&r.each(o,function(n){var i=e.norma...
  function i (line 18) | function i(t,e){return h(t,c(e))}
  function i (line 19) | function i(){var t,e=[],n={};return{add:function(t,i,o,a,s){return r.isS...
  function e (line 19) | function e(e){var n=(e.visualColorAccessPath||"itemStyle.normal.color")....
  function e (line 19) | function e(t,e){function n(){e(t)}if(!r(t))throw new Error("Element is n...
  function n (line 19) | function n(t,e,n){function r(t,e){function n(){function n(){if("static"=...
  function r (line 19) | function r(t){return l(t).object}
  function o (line 19) | function o(t){i.isIE(8)?t.detachEvent("onresize",l(t).object.proxy):t.re...
  function e (line 19) | function e(){var t=500,e=500,n=document.createElement("div");n.style.css...
  function n (line 19) | function n(t,e){function n(e,n){n=n||function(t){document.head.appendChi...
  function r (line 19) | function r(t){t.className+=" "+m+"_animation_active"}
  function o (line 19) | function o(t,e,n){if(t.addEventListener)t.addEventListener(e,n);else{if(...
  function a (line 19) | function a(t,e,n){if(t.removeEventListener)t.removeEventListener(e,n);el...
  function s (line 19) | function s(t){return p(t).container.childNodes[0].childNodes[0].childNod...
  function l (line 19) | function l(t){return p(t).container.childNodes[0].childNodes[0].childNod...
  function u (line 19) | function u(t,e){if(!p(t).listeners.push)throw new Error("Cannot add list...
  function c (line 19) | function c(t,e,n){function a(){if(t.debug){var n=Array.prototype.slice.c...
  function h (line 19) | function h(t){var e=p(t);e&&(e.onExpandScroll&&a(s(t),"scroll",e.onExpan...
  function i (line 19) | function i(t){return Array.isArray(t)||void 0!==t.length}
  function r (line 19) | function r(t){if(Array.isArray(t))return t;var e=[];return s(t,function(...
  function o (line 19) | function o(t){return t&&1===t.nodeType}
  function a (line 19) | function a(t,e,n){var i=t[e];return void 0!==i&&null!==i||void 0===n?i:n}
  function e (line 19) | function e(t,e,n){function l(t){s(S.get(t),function(e){e(t)})}function u...
  function n (line 19) | function n(t){if(!t)return x.error("At least one element is required.");...
  function e (line 19) | function e(t){var e=o(t);return e&&!!e.isDetectable}
  function n (line 19) | function n(t){o(t).isDetectable=!0}
  function i (line 19) | function i(t){return!!o(t).busy}
  function r (line 19) | function r(t,e){o(t).busy=!!e}
  function t (line 19) | function t(){return e++}
  function e (line 19) | function e(t){var e=r(t);return e&&void 0!==e.id?e.id:null}
  function n (line 19) | function n(t){var e=r(t);if(!e)throw new Error("setId required the eleme...
  function e (line 19) | function e(e){var n=t.get(e);return void 0===n?[]:o[n]||[]}
  function n (line 19) | function n(e,n){var i=t.get(e);o[i]||(o[i]=[]),o[i].push(n)}
  function i (line 19) | function i(t,n){for(var i=e(t),r=0,o=i.length;r<o;++r)if(i[r]===n){i.spl...
  function r (line 19) | function r(t){var n=e(t);n&&(n.length=0)}
  function e (line 19) | function e(){}
  function n (line 19) | function n(t){return t[o]={},i(t)}
  function i (line 19) | function i(t){return t[o]}
  function r (line 19) | function r(t){delete t[o]}
  function i (line 19) | function i(t,e,n){return{type:t,event:n,target:e,cancelBubble:!1,offsetX...
  function r (line 19) | function r(){}
  function o (line 19) | function o(t,e,n){if(t[t.rectHover?"rectContain":"contain"](e,n)){for(va...
  function i (line 19) | function i(){return!1}
  function r (line 19) | function r(t,e,n,i){var r=document.createElement(e),o=n.getWidth(),a=n.g...
  function i (line 19) | function i(t){return parseInt(t,10)}
  function r (line 19) | function r(t){return!!t&&(!!t.isBuildin||"function"==typeof t.resize&&"f...
  function o (line 19) | function o(t){t.__unusedCount++}
  function a (line 19) | function a(t){1==t.__unusedCount&&t.clear()}
  function s (line 19) | function s(t,e,n){return x.copy(t.getBoundingRect()),t.transform&&x.appl...
  function l (line 19) | function l(t,e){if(t==e)return!1;if(!t||!e||t.length!==e.length)return!0...
  function u (line 19) | function u(t,e){for(var n=0;n<t.length;n++){var i=t[n],r=i.path;i.setTra...
  function c (line 19) | function c(t,e){var n=document.createElement("div");return n.style.cssTe...
  function t (line 19) | function t(){n===e._progressiveToken&&e.storage&&(e._doPaintList(e.stora...
  function n (line 19) | function n(t){var e=o.dpr||1;o.save(),o.globalAlpha=1,o.shadowBlur=0,i._...
  function i (line 19) | function i(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t...
  function t (line 20) | function t(){e._running&&(o(t),!e._paused&&e._update())}
  function i (line 20) | function i(t){this._target=t.target,this._life=t.life||1e3,this._delay=t...
  function i (line 20) | function i(t,e){return Math.abs(t-e)<x}
  function r (line 20) | function r(){var t=b[0];b[0]=b[1],b[1]=t}
  function o (line 20) | function o(t,e,n,i,o,a,s,l,u,c){if(c>e&&c>i&&c>a&&c>l||c<e&&c<i&&c<a&&c<...
  function a (line 20) | function a(t,e,n,i,r,o,a,s){if(s>e&&s>i&&s>o||s<e&&s<i&&s<o)return 0;var...
  function s (line 20) | function s(t,e,n,i,r,o,a,s){if(s-=e,s>n||s<-n)return 0;var l=Math.sqrt(n...
  function l (line 20) | function l(t,e,n,r,l){for(var c=0,p=0,g=0,y=0,x=0,_=0;_<t.length;){var b...
  function i (line 20) | function i(t){var e=t[1][0]-t[0][0],n=t[1][1]-t[0][1];return Math.sqrt(e...
  function r (line 20) | function r(t){return[(t[0][0]+t[1][0])/2,(t[0][1]+t[1][1])/2]}
  function i (line 20) | function i(t){return"mousewheel"===t&&f.browser.firefox?"DOMMouseScroll":t}
  function r (line 20) | function r(t,e,n){var i=t._gestureMgr;"start"===n&&i.clear();var r=i.rec...
  function o (line 20) | function o(t){t._touching=!0,clearTimeout(t._touchTimer),t._touchTimer=s...
  function a (line 20) | function a(t){var e=t.pointerType;return"pen"===e||"touch"===e}
  function s (line 20) | function s(t){function e(t,e){return function(){if(!e._touching)return t...
  function l (line 20) | function l(t){function e(e,n){c.each(e,function(e){p(t,i(e),n._handlers[...
  function i (line 20) | function i(t,e,n,i,r,o,a){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*...
  function i (line 20) | function i(t,e,n){var i=t.cpx2,r=t.cpy2;return null===i||null===r?[(n?h:...
  function s (line 20) | function s(){u--,u||r&&r()}
  function n (line 20) | function n(){this.on("mousedown",this._dragStart,this),this.on("mousemov...
  function i (line 20) | function i(t,e,n,i,r,o,a,s,l,u,c){var g=l*(p/180),y=d(g)*(t-n)/2+f(g)*(e...
  function r (line 20) | function r(t){if(!t)return[];var e,n=t.replace(/-/g," -").replace(/  /g,...
  function o (line 20) | function o(t,e){var n,i=r(t);return e=e||{},e.buildPath=function(t){t.se...
  function i (line 20) | function i(t,e){var n,i,o,c,h,f,d=t.data,p=r.M,g=r.C,v=r.L,m=r.R,y=r.A,x...
  function i (line 20) | function i(t){return parseInt(t,10)}
  function r (line 20) | function r(t,e){s.initVML(),this.root=t,this.storage=e;var n=document.cr...
  function o (line 20) | function o(t){return function(){a('In IE8.0 VML mode painter not support...
  function i (line 21) | function i(t,e){t||"undefined"!=typeof console&&console.warn("[vue-route...
  function r (line 21) | function r(t,e){switch(typeof e){case"undefined":return;case"object":ret...
  function o (line 21) | function o(t,e){if(void 0===e&&(e={}),t){var n;try{n=a(t)}catch(t){n={}}...
  function a (line 21) | function a(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.spl...
  function s (line 21) | function s(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void ...
  function l (line 21) | function l(t,e,n){var i={name:e.name||t&&t.name,meta:t&&t.meta||{},path:...
  function u (line 21) | function u(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}
  function c (line 21) | function c(t){var e=t.path,n=t.query;void 0===n&&(n={});var i=t.hash;ret...
  function h (line 21) | function h(t,e){return e===Ot?t===e:!!e&&(t.path&&e.path?t.path.replace(...
  function f (line 21) | function f(t,e){void 0===t&&(t={}),void 0===e&&(e={});var n=Object.keys(...
  function d (line 21) | function d(t,e){return 0===t.path.replace(Et,"/").indexOf(e.path.replace...
  function p (line 21) | function p(t,e){for(var n in e)if(!(n in t))return!1;return!0}
  function g (line 21) | function g(t){if(!(t.metaKey||t.ctrlKey||t.shiftKey||t.defaultPrevented|...
  function v (line 21) | function v(t){if(t)for(var e,n=0;n<t.length;n++){if(e=t[n],"a"===e.tag)r...
  function m (line 21) | function m(t){if(!m.installed){m.installed=!0,Tt=t,Object.defineProperty...
  function y (line 21) | function y(t,e,n){if("/"===t.charAt(0))return t;if("?"===t.charAt(0)||"#...
  function x (line 21) | function x(t){var e="",n="",i=t.indexOf("#");i>=0&&(e=t.slice(i),t=t.sli...
  function _ (line 21) | function _(t){return t.replace(/\/\//g,"/")}
  function b (line 21) | function b(t,e,n){var i=e||Object.create(null),r=n||Object.create(null);...
  function w (line 21) | function w(t,e,n,i,r){var o=n.path,a=n.name,s={path:S(o,i),components:n....
  function S (line 21) | function S(t,e){return t=t.replace(/\/$/,""),"/"===t[0]?t:null==e?t:_(e....
  function M (line 21) | function M(t,e){for(var n,i=[],r=0,o=0,a="",s=e&&e.delimiter||"/";null!=...
  function A (line 21) | function A(t,e){return C(M(t,e))}
  function T (line 21) | function T(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%...
  function I (line 21) | function I(t){return encodeURI(t).replace(/[?#]/g,function(t){return"%"+...
  function C (line 21) | function C(t){for(var e=new Array(t.length),n=0;n<t.length;n++)"object"=...
  function L (line 21) | function L(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}
  function D (line 21) | function D(t){return t.replace(/([=!:$\/()])/g,"\\$1")}
  function k (line 21) | function k(t,e){return t.keys=e,t}
  function P (line 21) | function P(t){return t.sensitive?"":"i"}
  function E (line 21) | function E(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var i=0;i<n.l...
  function O (line 21) | function O(t,e,n){for(var i=[],r=0;r<t.length;r++)i.push(z(t[r],e,n).sou...
  function R (line 21) | function R(t,e,n){return N(M(t,n),e,n)}
  function N (line 21) | function N(t,e,n){Ft(e)||(n=e||n,e=[]),n=n||{};for(var i=n.strict,r=n.en...
  function z (line 21) | function z(t,e,n){return Ft(e)||(n=e||n,e=[]),n=n||{},t instanceof RegEx...
  function V (line 21) | function V(t){var e,n,i=qt[t];return i?(e=i.keys,n=i.regexp):(e=[],n=Gt(...
  function B (line 21) | function B(t,e,n){try{var i=Zt[t]||(Zt[t]=Gt.compile(t));return i(e||{},...
  function F (line 21) | function F(t,e,n){var i="string"==typeof t?{path:t}:t;if(i.name||i._norm...
  function G (line 21) | function G(t,e){for(var n in e)t[n]=e[n];return t}
  function H (line 21) | function H(t){function e(t){b(t,u,c)}function n(t,e,n){var i=F(t,e),r=i....
  function j (line 21) | function j(t,e,n){var i=V(t),r=i.regexp,o=i.keys,a=n.match(r);if(!a)retu...
  function W (line 21) | function W(t,e){return y(t,e.parent?e.parent.path:"/",!0)}
  function $ (line 21) | function $(){window.addEventListener("popstate",function(t){q(),t.state&...
  function U (line 21) | function U(t,e,n,i){if(t.app){var r=t.options.scrollBehavior;r&&t.app.$n...
  function q (line 21) | function q(){var t=tt();t&&(Xt[t]={x:window.pageXOffset,y:window.pageYOf...
  function Z (line 21) | function Z(){var t=tt();if(t)return Xt[t]}
  function X (line 21) | function X(t){var e=document.documentElement.getBoundingClientRect(),n=t...
  function Y (line 21) | function Y(t){return K(t.x)||K(t.y)}
  function J (line 21) | function J(t){return{x:K(t.x)?t.x:window.pageXOffset,y:K(t.y)?t.y:window...
  function K (line 21) | function K(t){return"number"==typeof t}
  function Q (line 21) | function Q(){return Jt.now().toFixed(3)}
  function tt (line 21) | function tt(){return Kt}
  function et (line 21) | function et(t){Kt=t}
  function nt (line 21) | function nt(t,e){q();var n=window.history;try{e?n.replaceState({key:Kt},...
  function it (line 21) | function it(t){nt(t,!0)}
  function rt (line 21) | function rt(t,e,n){var i=function(r){r>=t.length?n():t[r]?e(t[r],functio...
  function ot (line 21) | function ot(t){if(!t)if(Vt){var e=document.querySelector("base");t=e?e.g...
  function at (line 21) | function at(t,e){var n,i=Math.max(t.length,e.length);for(n=0;n<i&&t[n]==...
  function st (line 21) | function st(t,e,n,i){var r=vt(t,function(t,i,r,o){var a=lt(t,e);if(a)ret...
  function lt (line 21) | function lt(t,e){return"function"!=typeof t&&(t=Tt.extend(t)),t.options[e]}
  function ut (line 21) | function ut(t){return st(t,"beforeRouteLeave",ht,!0)}
  function ct (line 21) | function ct(t){return st(t,"beforeRouteUpdate",ht)}
  function ht (line 21) | function ht(t,e){return function(){return t.apply(e,arguments)}}
  function ft (line 21) | function ft(t,e,n){return st(t,"beforeRouteEnter",function(t,i,r,o){retu...
  function dt (line 21) | function dt(t,e,n,i,r){return function(o,a,s){return t(o,a,function(t){s...
  function pt (line 21) | function pt(t,e,n,i){e[n]?t(e[n]):i()&&setTimeout(function(){pt(t,e,n,i)...
  function gt (line 21) | function gt(t){return vt(t,function(t,e,n,r){if("function"==typeof t&&!t...
  function vt (line 21) | function vt(t,e){return mt(t.map(function(t){return Object.keys(t.compon...
  function mt (line 21) | function mt(t){return Array.prototype.concat.apply([],t)}
  function yt (line 21) | function yt(t){var e=!1;return function(){if(!e)return e=!0,t.apply(this...
  function xt (line 21) | function xt(t){var e=window.location.pathname;return t&&0===e.indexOf(t)...
  function _t (line 21) | function _t(t){var e=xt(t);if(!/^\/#/.test(e))return window.location.rep...
  function bt (line 21) | function bt(){var t=wt();return"/"===t.charAt(0)||(Mt("/"+t),!1)}
  function wt (line 21) | function wt(){var t=window.location.href,e=t.indexOf("#");return e===-1?...
  function St (line 21) | function St(t){window.location.hash=t}
  function Mt (line 21) | function Mt(t){var e=window.location.href.indexOf("#");window.location.r...
  function At (line 21) | function At(t,e,n){var i="hash"===n?"#"+e:e;return t?_(t+"/"+i):i}
  function e (line 21) | function e(e,n){var i=this;t.call(this,e,n);var r=e.options.scrollBehavi...
  function e (line 21) | function e(e,n,i){t.call(this,e,n),i&&_t(this.base)||bt()}
  function e (line 21) | function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}
  function n (line 26) | function n(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null...
  function i (line 26) | function i(t){var e=parseFloat(t);return isNaN(e)?t:e}
  function r (line 26) | function r(t,e){for(var n=Object.create(null),i=t.split(","),r=0;r<i.len...
  function o (line 26) | function o(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(...
  function a (line 26) | function a(t,e){return ar.call(t,e)}
  function s (line 26) | function s(t){return"string"==typeof t||"number"==typeof t}
  function l (line 26) | function l(t){var e=Object.create(null);return function(n){var i=e[n];re...
  function u (line 26) | function u(t,e){function n(n){var i=arguments.length;return i?i>1?t.appl...
  function c (line 26) | function c(t,e){e=e||0;for(var n=t.length-e,i=new Array(n);n--;)i[n]=t[n...
  function h (line 26) | function h(t,e){for(var n in e)t[n]=e[n];return t}
  function f (line 26) | function f(t){return null!==t&&"object"==typeof t}
  function d (line 26) | function d(t){return fr.call(t)===dr}
  function p (line 26) | function p(t){for(var e={},n=0;n<t.length;n++)t[n]&&h(e,t[n]);return e}
  function g (line 26) | function g(){}
  function v (line 26) | function v(t){return t.reduce(function(t,e){return t.concat(e.staticKeys...
  function m (line 26) | function m(t,e){var n=f(t),i=f(e);return n&&i?JSON.stringify(t)===JSON.s...
  function y (line 26) | function y(t,e){for(var n=0;n<t.length;n++)if(m(t[n],e))return n;return-1}
  function x (line 26) | function x(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}
  function _ (line 26) | function _(t,e,n,i){Object.defineProperty(t,e,{value:n,enumerable:!!i,wr...
  function b (line 26) | function b(t){if(!mr.test(t)){var e=t.split(".");return function(t){for(...
  function w (line 26) | function w(t){return/native code/.test(t.toString())}
  function S (line 26) | function S(t){Pr.target&&Er.push(Pr.target),Pr.target=t}
  function M (line 26) | function M(){Pr.target=Er.pop()}
  function A (line 26) | function A(t,e){t.__proto__=e}
  function T (line 26) | function T(t,e,n){for(var i=0,r=n.length;i<r;i++){var o=n[i];_(t,o,e[o])}}
  function I (line 26) | function I(t,e){if(f(t)){var n;return a(t,"__ob__")&&t.__ob__ instanceof...
  function C (line 26) | function C(t,e,n,i){var r=new Pr,o=Object.getOwnPropertyDescriptor(t,e);...
  function L (line 26) | function L(t,e,n){if(Array.isArray(t))return t.length=Math.max(t.length,...
  function D (line 26) | function D(t,e){var n=t.__ob__;t._isVue||n&&n.vmCount||a(t,e)&&(delete t...
  function k (line 26) | function k(t){for(var e=void 0,n=0,i=t.length;n<i;n++)e=t[n],e&&e.__ob__...
  function P (line 26) | function P(t,e){if(!e)return t;for(var n,i,r,o=Object.keys(e),s=0;s<o.le...
  function E (line 26) | function E(t,e){return e?t?t.concat(e):Array.isArray(e)?e:[e]:t}
  function O (line 26) | function O(t,e){var n=Object.create(t||null);return e?h(n,e):n}
  function R (line 26) | function R(t){var e=t.props;if(e){var n,i,r,o={};if(Array.isArray(e))for...
  function N (line 26) | function N(t){var e=t.directives;if(e)for(var n in e){var i=e[n];"functi...
  function z (line 26) | function z(t,e,n){function i(i){var r=Br[i]||Fr;c[i]=r(t[i],e[i],n,i)}R(...
  function V (line 26) | function V(t,e,n,i){if("string"==typeof n){var r=t[e];if(a(r,n))return r...
  function B (line 26) | function B(t,e,n,i){var r=e[t],o=!a(n,t),s=n[t];if(H(Boolean,r.type)&&(o...
  function F (line 26) | function F(t,e,n){if(a(e,"default")){var i=e.default;return f(i),t&&t.$o...
  function G (line 26) | function G(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e...
  function H (line 26) | function H(t,e){if(!Array.isArray(e))return G(e)===G(t);for(var n=0,i=e....
  function j (line 26) | function j(t){return new Hr(void 0,void 0,void 0,String(t))}
  function W (line 26) | function W(t){var e=new Hr(t.tag,t.data,t.children,t.text,t.elm,t.contex...
  function $ (line 26) | function $(t){for(var e=new Array(t.length),n=0;n<t.length;n++)e[n]=W(t[...
  function U (line 26) | function U(t,e,n,i,r){if(t){var o=n.$options._base;if(f(t)&&(t=o.extend(...
  function q (line 26) | function q(t,e,n,i,r){var o={},a=t.options.props;if(a)for(var s in a)o[s...
  function Z (line 26) | function Z(t,e,n,i){var r=t.componentOptions,o={_isComponent:!0,parent:e...
  function X (line 26) | function X(t,e,n,i){if(!t.componentInstance||t.componentInstance._isDest...
  function Y (line 26) | function Y(t,e){var n=e.componentOptions,i=e.componentInstance=t.compone...
  function J (line 26) | function J(t){t.componentInstance._isMounted||(t.componentInstance._isMo...
  function K (line 26) | function K(t){t.componentInstance._isDestroyed||(t.data.keepAlive?(t.com...
  function Q (line 26) | function Q(t,e,n){if(!t.requested){t.requested=!0;var i=t.pendingCallbac...
  function tt (line 26) | function tt(t,e){var n=e.options.props;if(n){var i={},r=t.attrs,o=t.prop...
  function et (line 26) | function et(t,e,n,i,r){if(e){if(a(e,n))return t[n]=e[n],r||delete e[n],!...
  function nt (line 26) | function nt(t){t.hook||(t.hook={});for(var e=0;e<qr.length;e++){var n=qr...
  function it (line 26) | function it(t,e){return function(n,i,r,o){t(n,i,r,o),e(n,i,r,o)}}
  function rt (line 26) | function rt(t,e,n,i){i+=e;var r=t.__injected||(t.__injected={});if(!r[i]...
  function ot (line 26) | function ot(t){var e={fn:t,invoker:function(){var t=arguments,n=e.fn;if(...
  function at (line 26) | function at(t,e,n,i,r){var o,a,s,l;for(o in t)a=t[o],s=e[o],l=Zr(o),a&&(...
  function st (line 26) | function st(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return ...
  function lt (line 26) | function lt(t){return s(t)?[j(t)]:Array.isArray(t)?ut(t):void 0}
  function ut (line 26) | function ut(t,e){var n,i,r,o=[];for(n=0;n<t.length;n++)i=t[n],null!=i&&"...
  function ct (line 26) | function ct(t){return t&&t.filter(function(t){return t&&t.componentOptio...
  function ht (line 26) | function ht(t,e,n,i,r,o){return(Array.isArray(n)||s(n))&&(r=i,i=n,n=void...
  function ft (line 26) | function ft(t,e,n,i,r){if(n&&n.__ob__)return $r();if(!e)return $r();Arra...
  function dt (line 26) | function dt(t,e){if(t.ns=e,"foreignObject"!==t.tag&&t.children)for(var n...
  function pt (line 26) | function pt(t){t.$vnode=null,t._vnode=null,t._staticTrees=null;var e=t.$...
  function gt (line 26) | function gt(t){function e(t,e,n){if(Array.isArray(t))for(var i=0;i<t.len...
  function vt (line 26) | function vt(t,e){var n={};if(!t)return n;for(var i,r,o=[],a=0,s=t.length...
  function mt (line 26) | function mt(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t....
  function yt (line 26) | function yt(t,e,n){n?Wr.$once(t,e):Wr.$on(t,e)}
  function xt (line 26) | function xt(t,e){Wr.$off(t,e)}
  function _t (line 26) | function _t(t,e,n){Wr=t,at(e,n||{},yt,xt,t)}
  function bt (line 26) | function bt(t){var e=/^hook:/;t.prototype.$on=function(t,n){var i=this;r...
  function wt (line 26) | function wt(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$op...
  function St (line 26) | function St(t){t.prototype._mount=function(t,e){var n=this;return n.$el=...
  function Mt (line 26) | function Mt(t,e){var n=t.$options[e];if(n)for(var i=0,r=n.length;i<r;i++...
  function At (line 26) | function At(){Kr.length=0,Qr={},to=eo=!1}
  function Tt (line 26) | function Tt(){eo=!0;var t,e,n;for(Kr.sort(function(t,e){return t.id-e.id...
  function It (line 26) | function It(t){var e=t.id;if(null==Qr[e]){if(Qr[e]=!0,eo){for(var n=Kr.l...
  function Ct (line 26) | function Ct(t){oo.clear(),Lt(t,oo)}
  function Lt (line 26) | function Lt(t,e){var n,i,r=Array.isArray(t);if((r||f(t))&&Object.isExten...
  function Dt (line 26) | function Dt(t){t._watchers=[];var e=t.$options;e.props&&kt(t,e.props),e....
  function kt (line 26) | function kt(t,e){var n=t.$options.propsData||{},i=t.$options._propKeys=O...
  function Pt (line 26) | function Pt(t){var e=t.$options.data;e=t._data="function"==typeof e?e.ca...
  function Et (line 26) | function Et(t,e){for(var n in e){var i=e[n];"function"==typeof i?(ao.get...
  function Ot (line 26) | function Ot(t,e){var n=new ro(e,t,g,{lazy:!0});return function(){return ...
  function Rt (line 26) | function Rt(t,e){for(var n in e)t[n]=null==e[n]?g:u(e[n],t)}
  function Nt (line 26) | function Nt(t,e){for(var n in e){var i=e[n];if(Array.isArray(i))for(var ...
  function zt (line 26) | function zt(t,e,n){var i;d(n)&&(i=n,n=n.handler),"string"==typeof n&&(n=...
  function Vt (line 26) | function Vt(t){var e={};e.get=function(){return this._data},Object.defin...
  function Bt (line 26) | function Bt(t,e){x(e)||Object.defineProperty(t,e,{configurable:!0,enumer...
  function Ft (line 26) | function Ft(t){t.prototype._init=function(t){var e=this;e._uid=so++,e._i...
  function Gt (line 26) | function Gt(t,e){var n=t.$options=Object.create(t.constructor.options);n...
  function Ht (line 26) | function Ht(t){var e=t.options;if(t.super){var n=t.super.options,i=t.sup...
  function jt (line 26) | function jt(t){this._init(t)}
  function Wt (line 26) | function Wt(t){t.use=function(t){if(!t.installed){var e=c(arguments,1);r...
  function $t (line 26) | function $t(t){t.mixin=function(t){this.options=z(this.options,t)}}
  function Ut (line 26) | function Ut(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,i...
  function qt (line 26) | function qt(t){vr._assetTypes.forEach(function(e){t[e]=function(t,n){ret...
  function Zt (line 26) | function Zt(t){return t&&(t.Ctor.options.name||t.tag)}
  function Xt (line 26) | function Xt(t,e){return"string"==typeof t?t.split(",").indexOf(e)>-1:t.t...
  function Yt (line 26) | function Yt(t,e){for(var n in t){var i=t[n];if(i){var r=Zt(i.componentOp...
  function Jt (line 26) | function Jt(t){t&&(t.componentInstance._inactive||Mt(t.componentInstance...
  function Kt (line 26) | function Kt(t){var e={};e.get=function(){return vr},Object.definePropert...
  function Qt (line 26) | function Qt(t){for(var e=t.data,n=t,i=t;i.componentInstance;)i=i.compone...
  function te (line 26) | function te(t,e){return{staticClass:ne(t.staticClass,e.staticClass),clas...
  function ee (line 26) | function ee(t){var e=t.class,n=t.staticClass;return n||e?ne(n,ie(e)):""}
  function ne (line 26) | function ne(t,e){return t?e?t+" "+e:t:e||""}
  function ie (line 26) | function ie(t){var e="";if(!t)return e;if("string"==typeof t)return t;if...
  function re (line 26) | function re(t){return Mo(t)?"svg":"math"===t?"math":void 0}
  function oe (line 26) | function oe(t){if(!xr)return!0;if(To(t))return!1;if(t=t.toLowerCase(),nu...
  function ae (line 26) | function ae(t){if("string"==typeof t){if(t=document.querySelector(t),!t)...
  function se (line 26) | function se(t,e){var n=document.createElement(t);return"select"!==t?n:(e...
  function le (line 26) | function le(t,e){return document.createElementNS(wo[t],e)}
  function ue (line 26) | function ue(t){return document.createTextNode(t)}
  function ce (line 26) | function ce(t){return document.createComment(t)}
  function he (line 26) | function he(t,e,n){t.insertBefore(e,n)}
  function fe (line 26) | function fe(t,e){t.removeChild(e)}
  function de (line 26) | function de(t,e){t.appendChild(e)}
  function pe (line 26) | function pe(t){return t.parentNode}
  function ge (line 26) | function ge(t){return t.nextSibling}
  function ve (line 26) | function ve(t){return t.tagName}
  function me (line 26) | function me(t,e){t.textContent=e}
  function ye (line 26) | function ye(t,e,n){t.setAttribute(e,n)}
  function xe (line 26) | function xe(t,e){var n=t.data.ref;if(n){var i=t.context,r=t.componentIns...
  function _e (line 26) | function _e(t){return null==t}
  function be (line 26) | function be(t){return null!=t}
  function we (line 26) | function we(t,e){return t.key===e.key&&t.tag===e.tag&&t.isComment===e.is...
  function Se (line 26) | function Se(t,e,n){var i,r,o={};for(i=e;i<=n;++i)r=t[i].key,be(r)&&(o[r]...
  function Me (line 26) | function Me(t){function e(t){return new Hr(I.tagName(t).toLowerCase(),{}...
  function Ae (line 26) | function Ae(t,e){(t.data.directives||e.data.directives)&&Te(t,e)}
  function Te (line 26) | function Te(t,e){var n,i,r,o=t===Do,a=e===Do,s=Ie(t.data.directives,t.co...
  function Ie (line 26) | function Ie(t,e){var n=Object.create(null);if(!t)return n;var i,r;for(i=...
  function Ce (line 26) | function Ce(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{})...
  function Le (line 26) | function Le(t,e,n,i,r){var o=t.def&&t.def[e];o&&o(n.elm,t,n,i,r)}
  function De (line 26) | function De(t,e){if(t.data.attrs||e.data.attrs){var n,i,r,o=e.elm,a=t.da...
  function ke (line 26) | function ke(t,e,n){mo(e)?bo(n)?t.removeAttribute(e):t.setAttribute(e,e):...
  function Pe (line 26) | function Pe(t,e){var n=e.elm,i=e.data,r=t.data;if(i.staticClass||i.class...
  function Ee (line 26) | function Ee(t,e,n,i){if(n){var r=e,o=ho;e=function(n){Oe(t,e,i,o),1===ar...
  function Oe (line 26) | function Oe(t,e,n,i){(i||ho).removeEventListener(t,e,n)}
  function Re (line 26) | function Re(t,e){if(t.data.on||e.data.on){var n=e.data.on||{},i=t.data.o...
  function Ne (line 26) | function Ne(t,e){if(t.data.domProps||e.data.domProps){var n,i,r=e.elm,o=...
  function ze (line 26) | function ze(t,e,n){return!t.composing&&("option"===e.tag||Ve(t,n)||Be(e,...
  function Ve (line 26) | function Ve(t,e){return document.activeElement!==t&&t.value!==e}
  function Be (line 26) | function Be(t,e){var n=t.elm.value,r=t.elm._vModifiers;return r&&r.numbe...
  function Fe (line 26) | function Fe(t){var e=Ge(t.style);return t.staticStyle?h(t.staticStyle,e):e}
  function Ge (line 26) | function Ge(t){return Array.isArray(t)?p(t):"string"==typeof t?Bo(t):t}
  function He (line 26) | function He(t,e){var n,i={};if(e)for(var r=t;r.componentInstance;)r=r.co...
  function je (line 26) | function je(t,e){var n=e.data,i=t.data;if(n.staticStyle||n.style||i.stat...
  function We (line 26) | function We(t,e){if(e&&e.trim())if(t.classList)e.indexOf(" ")>-1?e.split...
  function $e (line 26) | function $e(t,e){if(e&&e.trim())if(t.classList)e.indexOf(" ")>-1?e.split...
  function Ue (line 26) | function Ue(t){Qo(function(){Qo(t)})}
  function qe (line 26) | function qe(t,e){(t._transitionClasses||(t._transitionClasses=[])).push(...
  function Ze (line 26) | function Ze(t,e){t._transitionClasses&&o(t._transitionClasses,e),$e(t,e)}
  function Xe (line 26) | function Xe(t,e,n){var i=Ye(t,e),r=i.type,o=i.timeout,a=i.propCount;if(!...
  function Ye (line 26) | function Ye(t,e){var n,i=window.getComputedStyle(t),r=i[Xo+"Delay"].spli...
  function Je (line 26) | function Je(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.a...
  function Ke (line 26) | function Ke(t){return 1e3*Number(t.slice(0,-1))}
  function Qe (line 26) | function Qe(t,e){var n=t.elm;n._leaveCb&&(n._leaveCb.cancelled=!0,
  function tn (line 27) | function tn(t,e){function n(){m.cancelled||(t.data.show||((i.parentNode....
  function en (line 27) | function en(t){if(t){if("object"==typeof t){var e={};return t.css!==!1&&...
  function nn (line 27) | function nn(t){var e=!1;return function(){e||(e=!0,t())}}
  function rn (line 27) | function rn(t,e){e.data.show||Qe(e)}
  function on (line 27) | function on(t,e,n){var i=e.value,r=t.multiple;if(!r||Array.isArray(i)){f...
  function an (line 27) | function an(t,e){for(var n=0,i=e.length;n<i;n++)if(m(sn(e[n]),t))return!...
  function sn (line 27) | function sn(t){return"_value"in t?t._value:t.value}
  function ln (line 27) | function ln(t){t.target.composing=!0}
  function un (line 27) | function un(t){t.target.composing=!1,cn(t.target,"input")}
  function cn (line 27) | function cn(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,...
  function hn (line 27) | function hn(t){return!t.componentInstance||t.data&&t.data.transition?t:h...
  function fn (line 27) | function fn(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abst...
  function dn (line 27) | function dn(t){var e={},n=t.$options;for(var i in n.propsData)e[i]=t[i];...
  function pn (line 27) | function pn(t,e){return/\d-keep-alive$/.test(e.tag)?t("keep-alive"):null}
  function gn (line 27) | function gn(t){for(;t=t.parent;)if(t.data.transition)return!0}
  function vn (line 27) | function vn(t,e){return e.key===t.key&&e.tag===t.tag}
  function mn (line 27) | function mn(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._ent...
  function yn (line 27) | function yn(t){t.data.newPos=t.elm.getBoundingClientRect()}
  function xn (line 27) | function xn(t){var e=t.data.pos,n=t.data.newPos,i=e.left-n.left,r=e.top-...
  function _n (line 27) | function _n(t,e){var n=document.createElement("div");return n.innerHTML=...
  function bn (line 27) | function bn(t){return pa=pa||document.createElement("div"),pa.innerHTML=...
  function wn (line 27) | function wn(t,e){return e&&(t=t.replace(ss,"\n")),t.replace(os,"<").repl...
  function Sn (line 27) | function Sn(t,e){function n(e){h+=e,t=t.substring(e)}function i(){var e=...
  function Mn (line 27) | function Mn(t){function e(){(a||(a=[])).push(t.slice(p,r).trim()),p=r+1}...
  function An (line 27) | function An(t,e){var n=e.indexOf("(");if(n<0)return'_f("'+e+'")('+t+")";...
  function Tn (line 27) | function Tn(t,e){var n=e?fs(e):cs;if(n.test(t)){for(var i,r,o=[],a=n.las...
  function In (line 27) | function In(t){console.error("[Vue parser]: "+t)}
  function Cn (line 27) | function Cn(t,e){return t?t.map(function(t){return t[e]}).filter(functio...
  function Ln (line 27) | function Ln(t,e,n){(t.props||(t.props=[])).push({name:e,value:n})}
  function Dn (line 27) | function Dn(t,e,n){(t.attrs||(t.attrs=[])).push({name:e,value:n})}
  function kn (line 27) | function kn(t,e,n,i,r,o){(t.directives||(t.directives=[])).push({name:e,...
  function Pn (line 27) | function Pn(t,e,n,i,r){i&&i.capture&&(delete i.capture,e="!"+e),i&&i.onc...
  function En (line 27) | function En(t,e,n){var i=On(t,":"+e)||On(t,"v-bind:"+e);if(null!=i)retur...
  function On (line 27) | function On(t,e){var n;if(null!=(n=t.attrsMap[e]))for(var i=t.attrsList,...
  function Rn (line 27) | function Rn(t){if(Ea=t,Pa=Ea.length,Ra=Na=za=0,t.indexOf("[")<0||t.lastI...
  function Nn (line 27) | function Nn(){return Ea.charCodeAt(++Ra)}
  function zn (line 27) | function zn(){return Ra>=Pa}
  function Vn (line 27) | function Vn(t){return 34===t||39===t}
  function Bn (line 27) | function Bn(t){var e=1;for(Na=Ra;!zn();)if(t=Nn(),Vn(t))Fn(t);else if(91...
  function Fn (line 27) | function Fn(t){for(var e=t;!zn()&&(t=Nn(),t!==e););}
  function Gn (line 27) | function Gn(t,e){Va=e.warn||In,Ba=e.getTagNamespace||pr,Fa=e.mustUseProp...
  function Hn (line 27) | function Hn(t){null!=On(t,"v-pre")&&(t.pre=!0)}
  function jn (line 27) | function jn(t){var e=t.attrsList.length;if(e)for(var n=t.attrs=new Array...
  function Wn (line 27) | function Wn(t){var e=En(t,"key");e&&(t.key=e)}
  function $n (line 27) | function $n(t){var e=En(t,"ref");e&&(t.ref=e,t.refInFor=ei(t))}
  function Un (line 27) | function Un(t){var e;if(e=On(t,"v-for")){var n=e.match(ps);if(!n)return;...
  function qn (line 27) | function qn(t){var e=On(t,"v-if");if(e)t.if=e,Yn(t,{exp:e,block:t});else...
  function Zn (line 27) | function Zn(t,e){var n=Xn(e.children);n&&n.if&&Yn(n,{exp:t.elseif,block:...
  function Xn (line 27) | function Xn(t){for(var e=t.length;e--;){if(1===t[e].type)return t[e];t.p...
  function Yn (line 27) | function Yn(t,e){t.ifConditions||(t.ifConditions=[]),t.ifConditions.push...
  function Jn (line 27) | function Jn(t){var e=On(t,"v-once");null!=e&&(t.once=!0)}
  function Kn (line 27) | function Kn(t){if("slot"===t.tag)t.slotName=En(t,"name");else{var e=En(t...
  function Qn (line 27) | function Qn(t){var e;(e=En(t,"is"))&&(t.component=e),null!=On(t,"inline-...
  function ti (line 27) | function ti(t){var e,n,i,r,o,a,s,l,u=t.attrsList;for(e=0,n=u.length;e<n;...
  function ei (line 27) | function ei(t){for(var e=t;e;){if(void 0!==e.for)return!0;e=e.parent}ret...
  function ni (line 27) | function ni(t){var e=t.match(xs);if(e){var n={};return e.forEach(functio...
  function ii (line 27) | function ii(t){for(var e={},n=0,i=t.length;n<i;n++)e[t[n].name]=t[n].val...
  function ri (line 27) | function ri(t){return"style"===t.tag||"script"===t.tag&&(!t.attrsMap.typ...
  function oi (line 27) | function oi(t){for(var e=[],n=0;n<t.length;n++){var i=t[n];bs.test(i.nam...
  function ai (line 27) | function ai(t,e){t&&(Ua=Ss(e.staticKeys||""),qa=e.isReservedTag||pr,li(t...
  function si (line 27) | function si(t){return r("type,tag,attrsList,attrsMap,plain,parent,childr...
  function li (line 27) | function li(t){if(t.static=hi(t),1===t.type){if(!qa(t.tag)&&"slot"!==t.t...
  function ui (line 27) | function ui(t,e){if(1===t.type){if((t.static||t.once)&&(t.staticInFor=e)...
  function ci (line 27) | function ci(t,e){for(var n=1,i=t.length;n<i;n++)ui(t[n].block,e)}
  function hi (line 27) | function hi(t){return 2!==t.type&&(3===t.type||!(!t.pre&&(t.hasBindings|...
  function fi (line 27) | function fi(t){for(;t.parent;){if(t=t.parent,"template"!==t.tag)return!1...
  function di (line 27) | function di(t,e){var n=e?"nativeOn:{":"on:{";for(var i in t)n+='"'+i+'":...
  function pi (line 27) | function pi(t,e){if(e){if(Array.isArray(e))return"["+e.map(function(e){r...
  function gi (line 27) | function gi(t){return"if("+t.map(vi).join("&&")+")return;"}
  function vi (line 27) | function vi(t){var e=parseInt(t,10);if(e)return"$event.keyCode!=="+e;var...
  function mi (line 27) | function mi(t,e){t.wrapData=function(n){return"_b("+n+",'"+t.tag+"',"+e....
  function yi (line 27) | function yi(t,e){var n=Qa,i=Qa=[],r=ts;ts=0,es=e,Za=e.warn||In,Xa=Cn(e.m...
  function xi (line 27) | function xi(t){if(t.staticRoot&&!t.staticProcessed)return _i(t);if(t.onc...
  function _i (line 27) | function _i(t){return t.staticProcessed=!0,Qa.push("with(this){return "+...
  function bi (line 27) | function bi(t){if(t.onceProcessed=!0,t.if&&!t.ifProcessed)return wi(t);i...
  function wi (line 27) | function wi(t){return t.ifProcessed=!0,Si(t.ifConditions.slice())}
  function Si (line 27) | function Si(t){function e(t){return t.once?bi(t):xi(t)}if(!t.length)retu...
  function Mi (line 27) | function Mi(t){var e=t.for,n=t.alias,i=t.iterator1?","+t.iterator1:"",r=...
  function Ai (line 27) | function Ai(t){var e="{",n=Ti(t);n&&(e+=n+","),t.key&&(e+="key:"+t.key+"...
  function Ti (line 27) | function Ti(t){var e=t.directives;if(e){var n,i,r,o,a="directives:[",s=!...
  function Ii (line 27) | function Ii(t){var e=t.children[0];if(1===e.type){var n=yi(e,es);return"...
  function Ci (line 27) | function Ci(t){return"scopedSlots:{"+Object.keys(t).map(function(e){retu...
  function Li (line 27) | function Li(t,e){return t+":function("+String(e.attrsMap.scope)+"){retur...
  function Di (line 27) | function Di(t,e){var n=t.children;if(n.length){var i=n[0];if(1===n.lengt...
  function ki (line 27) | function ki(t){for(var e=0,n=0;n<t.length;n++){var i=t[n];if(1===i.type)...
  function Pi (line 27) | function Pi(t){return void 0!==t.for||"template"===t.tag||"slot"===t.tag}
  function Ei (line 27) | function Ei(t){return!Ka(t.tag)}
  function Oi (line 27) | function Oi(t){return 1===t.type?xi(t):Ri(t)}
  function Ri (line 27) | function Ri(t){return"_v("+(2===t.type?t.expression:Bi(JSON.stringify(t....
  function Ni (line 27) | function Ni(t){var e=t.slotName||'"default"',n=Di(t),i="_t("+e+(n?","+n:...
  function zi (line 27) | function zi(t,e){var n=e.inlineTemplate?null:Di(e,!0);return"_c("+t+","+...
  function Vi (line 27) | function Vi(t){for(var e="",n=0;n<t.length;n++){var i=t[n];e+='"'+i.name...
  function Bi (line 27) | function Bi(t){return t.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"...
  function Fi (line 27) | function Fi(t,e){var n=Gn(t.trim(),e);ai(n,e);var i=yi(n,e);return{ast:n...
  function Gi (line 27) | function Gi(t,e){var n=(e.warn||In,On(t,"class"));n&&(t.staticClass=JSON...
  function Hi (line 27) | function Hi(t){var e="";return t.staticClass&&(e+="staticClass:"+t.stati...
  function ji (line 27) | function ji(t,e){var n=(e.warn||In,On(t,"style"));if(n){t.staticStyle=JS...
  function Wi (line 27) | function Wi(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.stati...
  function $i (line 27) | function $i(t,e,n){ns=n;var i=e.value,r=e.modifiers,o=t.tag,a=t.attrsMap...
  function Ui (line 27) | function Ui(t,e,n){var i=n&&n.number,r=En(t,"value")||"null",o=En(t,"tru...
  function qi (line 27) | function qi(t,e,n){var i=n&&n.number,r=En(t,"value")||"null";r=i?"_n("+r...
  function Zi (line 27) | function Zi(t,e,n){var i=t.attrsMap.type,r=n||{},o=r.lazy,a=r.number,s=r...
  function Xi (line 27) | function Xi(t,e,n){var i=n&&n.number,r='Array.prototype.filter.call($eve...
  function Yi (line 27) | function Yi(t,e){var n=Rn(t);return null===n.idx?t+"="+e:"var $$exp = "+...
  function Ji (line 27) | function Ji(t,e){e.value&&Ln(t,"textContent","_s("+e.value+")")}
  function Ki (line 27) | function Ki(t,e){e.value&&Ln(t,"innerHTML","_s("+e.value+")")}
  function Qi (line 27) | function Qi(t,e){return e=e?h(h({},Os),e):Os,Fi(t,e)}
  function tr (line 27) | function tr(t,e,n){var i=(e&&e.warn||Dr,e&&e.delimiters?String(e.delimit...
  function er (line 27) | function er(t){try{return new Function(t)}catch(t){return g}}
  function nr (line 27) | function nr(t){if(t.outerHTML)return t.outerHTML;var e=document.createEl...
  function t (line 27) | function t(){i=!1;var t=n.slice(0);n.length=0;for(var e=0;e<t.length;e++...
  function t (line 27) | function t(){this.set=Object.create(null)}
  method _Set (line 27) | get _Set(){return rr}
  method warn (line 27) | get warn(){return Dr}
  method formatComponentName (line 27) | get formatComponentName(){return Lr}
  function i (line 28) | function i(t){var e=new a(t),n=o(a.prototype.request,e);return r.extend(...
  function i (line 28) | function i(t){if("function"!=typeof t)throw new TypeError("executor must...
  function i (line 28) | function i(t){this.defaults=t,this.interceptors={request:new a,response:...
  function i (line 28) | function i(){this.handlers=[]}
  function i (line 28) | function i(t){t.cancelToken&&t.cancelToken.throwIfRequested()}
  function i (line 28) | function i(){this.message="String contains an invalid character"}
  function r (line 28) | function r(t){for(var e,n,r=String(t),a="",s=0,l=o;r.charAt(0|s)||(l="="...
  function i (line 28) | function i(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(...
  function t (line 28) | function t(t){var e=t;return n&&(r.setAttribute("href",e),e=r.href),r.se...
  function t (line 28) | function t(){}
  function i (line 28) | function i(t){return isFinite(t=+t)&&0!=t?t<0?-i(-t):Math.log(t+Math.sqr...
  function t (line 29) | function t(){}
  function i (line 29) | function i(t,e){var n,s,c=arguments.length<3?t:arguments[2];return u(t)=...
  function i (line 29) | function i(t,e,n){var l,f,d=arguments.length<4?t:arguments[3],p=o.f(c(t)...
  function i (line 29) | function i(t,e,n,i){var r=e&&e.prototype instanceof o?e:o,a=Object.creat...
  function r (line 29) | function r(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){ret...
  function o (line 29) | function o(){}
  function a (line 29) | function a(){}
  function s (line 29) | function s(){}
  function l (line 29) | function l(t){["next","throw","return"].forEach(function(e){t[e]=functio...
  function u (line 29) | function u(t){function e(n,i,o,a){var s=r(t[n],t,i);if("throw"!==s.type)...
  function c (line 29) | function c(t,e,n){var i=M;return function(o,a){if(i===T)throw new Error(...
  function h (line 29) | function h(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.f...
  function f (line 29) | function f(t){var e=t.completion||{};e.type="normal",delete e.arg,t.comp...
  function d (line 29) | function d(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(h,this),this.r...
  function p (line 29) | function p(t){if(t){var e=t[_];if(e)return e.call(t);if("function"==type...
  function g (line 29) | function g(){return{value:v,done:!0}}
  function e (line 29) | function e(e,i){return o.type="throw",o.arg=t,n.next=e,!!i}
Condensed preview — 239 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (2,218K chars).
[
  {
    "path": ".babelrc",
    "chars": 234,
    "preview": "{\n  \"presets\": [\n    [\"env\", { \"modules\": false }],\n    \"stage-2\"\n  ],\n  \"plugins\": [\"transform-runtime\"],\n  \"comments\":"
  },
  {
    "path": ".editorconfig",
    "chars": 147,
    "preview": "root = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size = 4\nend_of_line = lf\ninsert_final_newline = true\ntrim_"
  },
  {
    "path": ".gitignore",
    "chars": 117,
    "preview": ".DS_Store\nnode_modules/\ndist/\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n.idea\npackage-lock.js\npackage-lock.json\n"
  },
  {
    "path": ".postcssrc.js",
    "chars": 196,
    "preview": "// https://github.com/michael-ciniawsky/postcss-load-config\n\nmodule.exports = {\n  \"plugins\": {\n    // to edit target bro"
  },
  {
    "path": "README.md",
    "chars": 2686,
    "preview": "有同学反馈 启动报错,应该是npm 依赖的问题\n\n我的版本信息附上,供参考,但以上版本应该都支持\n\n- npm 5.4.1\n- node v8.4.0\n- vue  大于 2.4.4\n- vue-echarts-v3 的版本要注意下,之前开"
  },
  {
    "path": "build/build.js",
    "chars": 1150,
    "preview": "require('./check-versions')();\nvar server = require('pushstate-server');\nvar opn = require('opn')\nvar ora = require('ora"
  },
  {
    "path": "build/check-versions.js",
    "chars": 1257,
    "preview": "var chalk = require('chalk')\nvar semver = require('semver')\nvar packageConfig = require('../package.json')\nvar shell = r"
  },
  {
    "path": "build/dev-client.js",
    "chars": 245,
    "preview": "/* eslint-disable */\nrequire('eventsource-polyfill')\nvar hotClient = require('webpack-hot-middleware/client?noInfo=true&"
  },
  {
    "path": "build/dev-server.js",
    "chars": 2741,
    "preview": "//检查NodeJS和npm的版本\nrequire('./check-versions')()\n\n// 获取配置\nvar config = require('../config')\n\n// 如果Node的环境变量中没有设置当前的环境(NOD"
  },
  {
    "path": "build/utils.js",
    "chars": 1949,
    "preview": "var path = require('path')\nvar config = require('../config')\nvar ExtractTextPlugin = require('extract-text-webpack-plugi"
  },
  {
    "path": "build/vendor-manifest.json",
    "chars": 32585,
    "preview": "{\n  \"name\": \"vendor_library\",\n  \"content\": {\n    \"./node_modules/core-js/modules/_export.js\": {\n      \"id\": 0,\n      \"me"
  },
  {
    "path": "build/vue-loader.conf.js",
    "chars": 398,
    "preview": "var utils = require('./utils')\nvar config = require('../config')\nvar isProduction = process.env.NODE_ENV === 'production"
  },
  {
    "path": "build/webpack.base.conf.js",
    "chars": 1713,
    "preview": "var path = require('path');\nvar utils = require('./utils');\nvar config = require('../config');\nvar vueLoaderConfig = req"
  },
  {
    "path": "build/webpack.dev.conf.js",
    "chars": 1225,
    "preview": "var utils = require('./utils')\nvar webpack = require('webpack')\nvar config = require('../config')\nvar merge = require('w"
  },
  {
    "path": "build/webpack.dll.conf.js",
    "chars": 672,
    "preview": "const path = require('path');\nconst webpack = require('webpack');\n\nmodule.exports = {\n  entry: {\n    vendor: ['vue/dist/"
  },
  {
    "path": "build/webpack.prod.conf.js",
    "chars": 3886,
    "preview": "var path = require('path')\nvar utils = require('./utils')\nvar webpack = require('webpack')\nvar config = require('../conf"
  },
  {
    "path": "config/dev.env.js",
    "chars": 73,
    "preview": "module.exports = {\n    NODE_ENV: '\"development\"',\n    BASE_API: '\"\"',\n};\n"
  },
  {
    "path": "config/index.js",
    "chars": 2287,
    "preview": "// see http://vuejs-templates.github.io/webpack for documentation.\nvar path = require('path');\n\nmodule.exports = {\n    b"
  },
  {
    "path": "config/prod.env.js",
    "chars": 91,
    "preview": "module.exports = {\n    NODE_ENV: '\"production\"',\n    BASE_API: '\"https://api-prod.com\"'\n};\n"
  },
  {
    "path": "config/sit.env.js",
    "chars": 90,
    "preview": "module.exports = {\n    NODE_ENV: '\"production\"',\n    BASE_API: '\"https://api-sit.com\"'\n};\n"
  },
  {
    "path": "index.html",
    "chars": 932,
    "preview": "<!DOCTYPE html>\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <title>Sys-Admin</title>\n    <meta name=\"viewport\" content="
  },
  {
    "path": "package.json",
    "chars": 2628,
    "preview": "{\n  \"name\": \"vue-admin-manager\",\n  \"version\": \"1.0.0\",\n  \"description\": \"后台管理系统\",\n  \"author\": \"fantasykai <kai.fantasy@g"
  },
  {
    "path": "src/App.vue",
    "chars": 1184,
    "preview": "<template>\n\t<div id=\"app\">\n\t\t<transition name=\"fade\"\n\t\t            mode=\"out-in\">\n\t\t\t<router-view></router-view>\n\t\t</tra"
  },
  {
    "path": "src/api/aggregate.js",
    "chars": 257,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/15 0015.\n */\nimport fetch from '../utils/fetch';\n\nexport function aggregate(data"
  },
  {
    "path": "src/api/index.js",
    "chars": 6665,
    "preview": "/**\n * Created by kai.fantasy on 2017/4/11 0011.\n * 两种封装调用的方式\n * 1. api.request(), 在调用的地方在输入uri\n * 2. 把请求的uri列表放在此js中,方便"
  },
  {
    "path": "src/api/manage.js",
    "chars": 1821,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/19 0019.\n */\nimport fetch from '../utils/fetch'\n\n/**\n * 设置定时任务\n * @param data\n *"
  },
  {
    "path": "src/api/messages.js",
    "chars": 358,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/15 0015.\n */\nimport fetch from '../utils/fetch'\n\n/**\n * 获取消息记录,强制不使用缓存\n * @param"
  },
  {
    "path": "src/api/sts.js",
    "chars": 226,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/15 0015.\n */\nimport fetch from 'utils/fetch';\n\nexport function getSTSToken() {\n "
  },
  {
    "path": "src/api/users.js",
    "chars": 2017,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/15 0015.\n */\nimport fetch from '../utils/fetch'\n/**\n * 获取用户昵称\n * @returns {*|Pro"
  },
  {
    "path": "src/api/userstats.js",
    "chars": 377,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/15 0015.\n */\nimport fetch from '../utils/fetch'\n\n/**\n * 获取主播数据统计信息\n * @param par"
  },
  {
    "path": "src/assets/iconfont/iconfont.js",
    "chars": 38512,
    "preview": "(function(window){var svgSprite=\"<svg>\"+\"\"+'<symbol id=\"icon-favorfill\" viewBox=\"0 0 1024 1024\">'+\"\"+'<path d=\"M957.216 "
  },
  {
    "path": "src/assets/theme/theme-darkblue/alert.css",
    "chars": 989,
    "preview": "@charset \"UTF-8\";.el-alert{width:100%;padding:8px 16px;margin:0;box-sizing:border-box;border-radius:4px;position:relativ"
  },
  {
    "path": "src/assets/theme/theme-darkblue/autocomplete.css",
    "chars": 6099,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-input{position:rel"
  },
  {
    "path": "src/assets/theme/theme-darkblue/badge.css",
    "chars": 583,
    "preview": "@charset \"UTF-8\";.el-badge{position:relative;vertical-align:middle;display:inline-block}.el-badge__content{background-co"
  },
  {
    "path": "src/assets/theme/theme-darkblue/base.css",
    "chars": 3799,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/breadcrumb-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/breadcrumb.css",
    "chars": 830,
    "preview": "@charset \"UTF-8\";.el-breadcrumb{font-size:13px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;co"
  },
  {
    "path": "src/assets/theme/theme-darkblue/button-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/button.css",
    "chars": 7684,
    "preview": "@charset \"UTF-8\";.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:"
  },
  {
    "path": "src/assets/theme/theme-darkblue/card.css",
    "chars": 311,
    "preview": "@charset \"UTF-8\";.el-card{border:1px solid rgb(209, 219, 229);border-radius:4px;background-color:#fff;overflow:hidden;bo"
  },
  {
    "path": "src/assets/theme/theme-darkblue/carousel-item.css",
    "chars": 601,
    "preview": "@charset \"UTF-8\";.el-carousel__item,.el-carousel__mask{position:absolute;height:100%;top:0;left:0}.el-carousel__item{wid"
  },
  {
    "path": "src/assets/theme/theme-darkblue/carousel.css",
    "chars": 1741,
    "preview": "@charset \"UTF-8\";.el-carousel__arrow,.el-carousel__button{outline:0;margin:0;cursor:pointer;transition:.3s}.el-carousel{"
  },
  {
    "path": "src/assets/theme/theme-darkblue/cascader.css",
    "chars": 7312,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-darkblue/checkbox-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/checkbox.css",
    "chars": 2713,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{white-space:nowrap;cursor:pointer;display:inline-block;position:relati"
  },
  {
    "path": "src/assets/theme/theme-darkblue/col.css",
    "chars": 20411,
    "preview": "@charset \"UTF-8\";.el-col-pull-1,.el-col-pull-10,.el-col-pull-11,.el-col-pull-12,.el-col-pull-13,.el-col-pull-14,.el-col-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/collapse-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/collapse.css",
    "chars": 807,
    "preview": "@charset \"UTF-8\";.el-collapse{border:1px solid rgb(223, 230, 236);border-radius:0}.el-collapse-item:last-child{margin-bo"
  },
  {
    "path": "src/assets/theme/theme-darkblue/color-picker.css",
    "chars": 4173,
    "preview": ".el-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}"
  },
  {
    "path": "src/assets/theme/theme-darkblue/date-picker.css",
    "chars": 16511,
    "preview": "@charset \"UTF-8\";.el-month-table,.el-year-table{margin:-1px;border-collapse:collapse}.el-date-picker table,.el-date-rang"
  },
  {
    "path": "src/assets/theme/theme-darkblue/dialog.css",
    "chars": 1452,
    "preview": "@charset \"UTF-8\";.v-modal-enter{animation:v-modal-in .2s ease}.v-modal-leave{animation:v-modal-out .2s ease forwards}@ke"
  },
  {
    "path": "src/assets/theme/theme-darkblue/dropdown-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/dropdown-menu.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/dropdown.css",
    "chars": 8753,
    "preview": "@charset \"UTF-8\";.el-button-group:after,.el-button-group:before{display:table;content:\"\"}.el-button,.el-button-group,.el"
  },
  {
    "path": "src/assets/theme/theme-darkblue/form-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/form.css",
    "chars": 1582,
    "preview": "@charset \"UTF-8\";.el-form--inline .el-form-item,.el-form--inline .el-form-item__content{display:inline-block;vertical-al"
  },
  {
    "path": "src/assets/theme/theme-darkblue/icon.css",
    "chars": 2262,
    "preview": "@font-face{font-family:element-icons;src:url(fonts/element-icons.woff?t=1472440741) format('woff'),url(fonts/element-ico"
  },
  {
    "path": "src/assets/theme/theme-darkblue/index.css",
    "chars": 127455,
    "preview": "@charset \"UTF-8\";.el-breadcrumb:after,.el-breadcrumb:before,.el-button-group:after,.el-button-group:before,.el-form-item"
  },
  {
    "path": "src/assets/theme/theme-darkblue/input-number.css",
    "chars": 6730,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-darkblue/input.css",
    "chars": 4758,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-darkblue/loading.css",
    "chars": 1099,
    "preview": "@charset \"UTF-8\";.el-loading-mask{position:absolute;z-index:10000;background-color:rgba(255,255,255,.9);margin:0;top:0;r"
  },
  {
    "path": "src/assets/theme/theme-darkblue/menu-item-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/menu-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/menu.css",
    "chars": 3716,
    "preview": "@charset \"UTF-8\";.el-menu,.el-menu li{list-style:none}.el-menu:after,.el-menu:before{display:table;content:\"\"}.el-menu:a"
  },
  {
    "path": "src/assets/theme/theme-darkblue/message-box.css",
    "chars": 14755,
    "preview": "@charset \"UTF-8\";.el-button,.el-input__inner{-webkit-appearance:none;line-height:1;outline:0}.el-button-group:after,.el-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/message.css",
    "chars": 1185,
    "preview": "@charset \"UTF-8\";.el-message{box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04);min-width:300px;padding:10px 1"
  },
  {
    "path": "src/assets/theme/theme-darkblue/notification.css",
    "chars": 1196,
    "preview": "@charset \"UTF-8\";.el-notification{width:330px;padding:20px;box-sizing:border-box;border-radius:2px;position:fixed;right:"
  },
  {
    "path": "src/assets/theme/theme-darkblue/option-group.css",
    "chars": 269,
    "preview": "@charset \"UTF-8\";.el-select-group{margin:0;padding:0}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-se"
  },
  {
    "path": "src/assets/theme/theme-darkblue/option.css",
    "chars": 659,
    "preview": "@charset \"UTF-8\";.el-select-dropdown__item{font-size:14px;padding:8px 10px;position:relative;white-space:nowrap;overflow"
  },
  {
    "path": "src/assets/theme/theme-darkblue/pagination.css",
    "chars": 14168,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-pagination:after,."
  },
  {
    "path": "src/assets/theme/theme-darkblue/popover.css",
    "chars": 1851,
    "preview": "@charset \"UTF-8\";.el-popover{position:absolute;background:#fff;min-width:150px;border-radius:2px;border:1px solid rgb(20"
  },
  {
    "path": "src/assets/theme/theme-darkblue/progress.css",
    "chars": 1741,
    "preview": "@charset \"UTF-8\";.el-progress-bar__inner:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-pro"
  },
  {
    "path": "src/assets/theme/theme-darkblue/radio-button.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/radio-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/radio.css",
    "chars": 3545,
    "preview": "@charset \"UTF-8\";.el-radio-button__inner,.el-radio__input{line-height:1;vertical-align:middle;outline:0}.el-radio,.el-ra"
  },
  {
    "path": "src/assets/theme/theme-darkblue/rate.css",
    "chars": 504,
    "preview": "@charset \"UTF-8\";.el-rate__icon,.el-rate__item{position:relative;display:inline-block}.el-rate{height:20px;line-height:1"
  },
  {
    "path": "src/assets/theme/theme-darkblue/reset.css",
    "chars": 3260,
    "preview": "progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing"
  },
  {
    "path": "src/assets/theme/theme-darkblue/row.css",
    "chars": 717,
    "preview": "@charset \"UTF-8\";.el-row:after,.el-row:before{display:table;content:\"\"}.el-row:after{clear:both}.el-row{position:relativ"
  },
  {
    "path": "src/assets/theme/theme-darkblue/scrollbar.css",
    "chars": 904,
    "preview": "@charset \"UTF-8\";.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active .el-scrollbar__bar,.el-scrollbar:f"
  },
  {
    "path": "src/assets/theme/theme-darkblue/select-dropdown.css",
    "chars": 985,
    "preview": "@charset \"UTF-8\";.el-select-dropdown{position:absolute;z-index:1001;border:1px solid rgb(209, 219, 229);border-radius:2p"
  },
  {
    "path": "src/assets/theme/theme-darkblue/select.css",
    "chars": 11160,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-select .el-tag,.el-select-dropdown,.el-select-dropdown__item,.el-tag,.el-textarea_"
  },
  {
    "path": "src/assets/theme/theme-darkblue/slider.css",
    "chars": 11716,
    "preview": "@charset \"UTF-8\";.el-slider__button-wrapper:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/spinner.css",
    "chars": 511,
    "preview": "@charset \"UTF-8\";.el-time-spinner{width:100%;white-space:nowrap}.el-spinner{display:inline-block;vertical-align:middle}."
  },
  {
    "path": "src/assets/theme/theme-darkblue/step.css",
    "chars": 2560,
    "preview": "@charset \"UTF-8\";.el-step.is-horizontal,.el-step.is-vertical .el-step__head,.el-step.is-vertical .el-step__main,.el-step"
  },
  {
    "path": "src/assets/theme/theme-darkblue/steps.css",
    "chars": 184,
    "preview": "@charset \"UTF-8\";.el-steps{font-size:0}.el-steps>:last-child .el-step__line{display:none}.el-steps.is-horizontal{white-s"
  },
  {
    "path": "src/assets/theme/theme-darkblue/submenu.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/switch.css",
    "chars": 1848,
    "preview": "@charset \"UTF-8\";.el-switch{display:inline-block;position:relative;font-size:14px;line-height:22px;height:22px;vertical-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/tab-pane.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-darkblue/table-column.css",
    "chars": 5608,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{cursor:pointer;display:inline-block;position:relative;white-space:nowr"
  },
  {
    "path": "src/assets/theme/theme-darkblue/table.css",
    "chars": 10224,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{cursor:pointer;display:inline-block;position:relative;white-space:nowr"
  },
  {
    "path": "src/assets/theme/theme-darkblue/tabs.css",
    "chars": 4513,
    "preview": "@charset \"UTF-8\";.el-tabs__header{border-bottom:1px solid rgb(209, 219, 229);padding:0;position:relative;margin:0 0 15px"
  },
  {
    "path": "src/assets/theme/theme-darkblue/tag.css",
    "chars": 1669,
    "preview": "@charset \"UTF-8\";.el-tag{background-color:rgb(131, 145, 165);display:inline-block;padding:0 5px;height:24px;line-height:"
  },
  {
    "path": "src/assets/theme/theme-darkblue/time-picker.css",
    "chars": 9653,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/time-select.css",
    "chars": 5842,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-darkblue/tooltip.css",
    "chars": 2622,
    "preview": "@charset \"UTF-8\";.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-h"
  },
  {
    "path": "src/assets/theme/theme-darkblue/tree.css",
    "chars": 1630,
    "preview": "@charset \"UTF-8\";.el-tree{cursor:default;background:#fff;border:1px solid rgb(209, 219, 229)}.el-tree__empty-block{posit"
  },
  {
    "path": "src/assets/theme/theme-darkblue/upload.css",
    "chars": 10210,
    "preview": "@charset \"UTF-8\";.el-upload-cover__title,.el-upload-list__item-name{overflow:hidden;text-overflow:ellipsis;white-space:n"
  },
  {
    "path": "src/assets/theme/theme-green/alert.css",
    "chars": 989,
    "preview": "@charset \"UTF-8\";.el-alert{width:100%;padding:8px 16px;margin:0;box-sizing:border-box;border-radius:4px;position:relativ"
  },
  {
    "path": "src/assets/theme/theme-green/autocomplete.css",
    "chars": 6100,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-input{position:rel"
  },
  {
    "path": "src/assets/theme/theme-green/badge.css",
    "chars": 583,
    "preview": "@charset \"UTF-8\";.el-badge{position:relative;vertical-align:middle;display:inline-block}.el-badge__content{background-co"
  },
  {
    "path": "src/assets/theme/theme-green/base.css",
    "chars": 3799,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-green/breadcrumb-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/breadcrumb.css",
    "chars": 831,
    "preview": "@charset \"UTF-8\";.el-breadcrumb{font-size:13px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;co"
  },
  {
    "path": "src/assets/theme/theme-green/button-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/button.css",
    "chars": 7684,
    "preview": "@charset \"UTF-8\";.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:"
  },
  {
    "path": "src/assets/theme/theme-green/card.css",
    "chars": 311,
    "preview": "@charset \"UTF-8\";.el-card{border:1px solid rgb(209, 229, 227);border-radius:4px;background-color:#fff;overflow:hidden;bo"
  },
  {
    "path": "src/assets/theme/theme-green/carousel-item.css",
    "chars": 601,
    "preview": "@charset \"UTF-8\";.el-carousel__item,.el-carousel__mask{position:absolute;height:100%;top:0;left:0}.el-carousel__item{wid"
  },
  {
    "path": "src/assets/theme/theme-green/carousel.css",
    "chars": 1741,
    "preview": "@charset \"UTF-8\";.el-carousel__arrow,.el-carousel__button{outline:0;margin:0;cursor:pointer;transition:.3s}.el-carousel{"
  },
  {
    "path": "src/assets/theme/theme-green/cascader.css",
    "chars": 7313,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-green/checkbox-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/checkbox.css",
    "chars": 2713,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{white-space:nowrap;cursor:pointer;display:inline-block;position:relati"
  },
  {
    "path": "src/assets/theme/theme-green/col.css",
    "chars": 20411,
    "preview": "@charset \"UTF-8\";.el-col-pull-1,.el-col-pull-10,.el-col-pull-11,.el-col-pull-12,.el-col-pull-13,.el-col-pull-14,.el-col-"
  },
  {
    "path": "src/assets/theme/theme-green/collapse-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/collapse.css",
    "chars": 808,
    "preview": "@charset \"UTF-8\";.el-collapse{border:1px solid rgb(223, 236, 234);border-radius:0}.el-collapse-item:last-child{margin-bo"
  },
  {
    "path": "src/assets/theme/theme-green/color-picker.css",
    "chars": 4173,
    "preview": ".el-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}"
  },
  {
    "path": "src/assets/theme/theme-green/date-picker.css",
    "chars": 16515,
    "preview": "@charset \"UTF-8\";.el-month-table,.el-year-table{margin:-1px;border-collapse:collapse}.el-date-picker table,.el-date-rang"
  },
  {
    "path": "src/assets/theme/theme-green/dialog.css",
    "chars": 1453,
    "preview": "@charset \"UTF-8\";.v-modal-enter{animation:v-modal-in .2s ease}.v-modal-leave{animation:v-modal-out .2s ease forwards}@ke"
  },
  {
    "path": "src/assets/theme/theme-green/dropdown-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/dropdown-menu.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/dropdown.css",
    "chars": 8755,
    "preview": "@charset \"UTF-8\";.el-button-group:after,.el-button-group:before{display:table;content:\"\"}.el-button,.el-button-group,.el"
  },
  {
    "path": "src/assets/theme/theme-green/form-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/form.css",
    "chars": 1583,
    "preview": "@charset \"UTF-8\";.el-form--inline .el-form-item,.el-form--inline .el-form-item__content{display:inline-block;vertical-al"
  },
  {
    "path": "src/assets/theme/theme-green/icon.css",
    "chars": 2262,
    "preview": "@font-face{font-family:element-icons;src:url(fonts/element-icons.woff?t=1472440741) format('woff'),url(fonts/element-ico"
  },
  {
    "path": "src/assets/theme/theme-green/index.css",
    "chars": 127487,
    "preview": "@charset \"UTF-8\";.el-breadcrumb:after,.el-breadcrumb:before,.el-button-group:after,.el-button-group:before,.el-form-item"
  },
  {
    "path": "src/assets/theme/theme-green/input-number.css",
    "chars": 6730,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-green/input.css",
    "chars": 4758,
    "preview": "@charset \"UTF-8\";.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input.is-disabled .el-in"
  },
  {
    "path": "src/assets/theme/theme-green/loading.css",
    "chars": 1099,
    "preview": "@charset \"UTF-8\";.el-loading-mask{position:absolute;z-index:10000;background-color:rgba(255,255,255,.9);margin:0;top:0;r"
  },
  {
    "path": "src/assets/theme/theme-green/menu-item-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/menu-item.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/menu.css",
    "chars": 3720,
    "preview": "@charset \"UTF-8\";.el-menu,.el-menu li{list-style:none}.el-menu:after,.el-menu:before{display:table;content:\"\"}.el-menu:a"
  },
  {
    "path": "src/assets/theme/theme-green/message-box.css",
    "chars": 14756,
    "preview": "@charset \"UTF-8\";.el-button,.el-input__inner{-webkit-appearance:none;line-height:1;outline:0}.el-button-group:after,.el-"
  },
  {
    "path": "src/assets/theme/theme-green/message.css",
    "chars": 1185,
    "preview": "@charset \"UTF-8\";.el-message{box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04);min-width:300px;padding:10px 1"
  },
  {
    "path": "src/assets/theme/theme-green/notification.css",
    "chars": 1196,
    "preview": "@charset \"UTF-8\";.el-notification{width:330px;padding:20px;box-sizing:border-box;border-radius:2px;position:fixed;right:"
  },
  {
    "path": "src/assets/theme/theme-green/option-group.css",
    "chars": 269,
    "preview": "@charset \"UTF-8\";.el-select-group{margin:0;padding:0}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-se"
  },
  {
    "path": "src/assets/theme/theme-green/option.css",
    "chars": 660,
    "preview": "@charset \"UTF-8\";.el-select-dropdown__item{font-size:14px;padding:8px 10px;position:relative;white-space:nowrap;overflow"
  },
  {
    "path": "src/assets/theme/theme-green/pagination.css",
    "chars": 14173,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-pagination:after,."
  },
  {
    "path": "src/assets/theme/theme-green/popover.css",
    "chars": 1851,
    "preview": "@charset \"UTF-8\";.el-popover{position:absolute;background:#fff;min-width:150px;border-radius:2px;border:1px solid rgb(20"
  },
  {
    "path": "src/assets/theme/theme-green/progress.css",
    "chars": 1742,
    "preview": "@charset \"UTF-8\";.el-progress-bar__inner:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-pro"
  },
  {
    "path": "src/assets/theme/theme-green/radio-button.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/radio-group.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/radio.css",
    "chars": 3545,
    "preview": "@charset \"UTF-8\";.el-radio-button__inner,.el-radio__input{line-height:1;vertical-align:middle;outline:0}.el-radio,.el-ra"
  },
  {
    "path": "src/assets/theme/theme-green/rate.css",
    "chars": 504,
    "preview": "@charset \"UTF-8\";.el-rate__icon,.el-rate__item{position:relative;display:inline-block}.el-rate{height:20px;line-height:1"
  },
  {
    "path": "src/assets/theme/theme-green/reset.css",
    "chars": 3260,
    "preview": "progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing"
  },
  {
    "path": "src/assets/theme/theme-green/row.css",
    "chars": 717,
    "preview": "@charset \"UTF-8\";.el-row:after,.el-row:before{display:table;content:\"\"}.el-row:after{clear:both}.el-row{position:relativ"
  },
  {
    "path": "src/assets/theme/theme-green/scrollbar.css",
    "chars": 904,
    "preview": "@charset \"UTF-8\";.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active .el-scrollbar__bar,.el-scrollbar:f"
  },
  {
    "path": "src/assets/theme/theme-green/select-dropdown.css",
    "chars": 985,
    "preview": "@charset \"UTF-8\";.el-select-dropdown{position:absolute;z-index:1001;border:1px solid rgb(209, 229, 227);border-radius:2p"
  },
  {
    "path": "src/assets/theme/theme-green/select.css",
    "chars": 11164,
    "preview": "@charset \"UTF-8\";.el-input__inner,.el-select .el-tag,.el-select-dropdown,.el-select-dropdown__item,.el-tag,.el-textarea_"
  },
  {
    "path": "src/assets/theme/theme-green/slider.css",
    "chars": 11716,
    "preview": "@charset \"UTF-8\";.el-slider__button-wrapper:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-"
  },
  {
    "path": "src/assets/theme/theme-green/spinner.css",
    "chars": 511,
    "preview": "@charset \"UTF-8\";.el-time-spinner{width:100%;white-space:nowrap}.el-spinner{display:inline-block;vertical-align:middle}."
  },
  {
    "path": "src/assets/theme/theme-green/step.css",
    "chars": 2561,
    "preview": "@charset \"UTF-8\";.el-step.is-horizontal,.el-step.is-vertical .el-step__head,.el-step.is-vertical .el-step__main,.el-step"
  },
  {
    "path": "src/assets/theme/theme-green/steps.css",
    "chars": 184,
    "preview": "@charset \"UTF-8\";.el-steps{font-size:0}.el-steps>:last-child .el-step__line{display:none}.el-steps.is-horizontal{white-s"
  },
  {
    "path": "src/assets/theme/theme-green/submenu.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/switch.css",
    "chars": 1848,
    "preview": "@charset \"UTF-8\";.el-switch{display:inline-block;position:relative;font-size:14px;line-height:22px;height:22px;vertical-"
  },
  {
    "path": "src/assets/theme/theme-green/tab-pane.css",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/assets/theme/theme-green/table-column.css",
    "chars": 5612,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{cursor:pointer;display:inline-block;position:relative;white-space:nowr"
  },
  {
    "path": "src/assets/theme/theme-green/table.css",
    "chars": 10229,
    "preview": "@charset \"UTF-8\";.el-checkbox,.el-checkbox__input{cursor:pointer;display:inline-block;position:relative;white-space:nowr"
  },
  {
    "path": "src/assets/theme/theme-green/tabs.css",
    "chars": 4513,
    "preview": "@charset \"UTF-8\";.el-tabs__header{border-bottom:1px solid rgb(209, 229, 227);padding:0;position:relative;margin:0 0 15px"
  },
  {
    "path": "src/assets/theme/theme-green/tag.css",
    "chars": 1672,
    "preview": "@charset \"UTF-8\";.el-tag{background-color:rgb(131, 165, 162);display:inline-block;padding:0 5px;height:24px;line-height:"
  },
  {
    "path": "src/assets/theme/theme-green/time-picker.css",
    "chars": 9653,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-green/time-select.css",
    "chars": 5844,
    "preview": "@charset \"UTF-8\";.el-fade-in-enter,.el-fade-in-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-"
  },
  {
    "path": "src/assets/theme/theme-green/tooltip.css",
    "chars": 2622,
    "preview": "@charset \"UTF-8\";.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-h"
  },
  {
    "path": "src/assets/theme/theme-green/tree.css",
    "chars": 1630,
    "preview": "@charset \"UTF-8\";.el-tree{cursor:default;background:#fff;border:1px solid rgb(209, 229, 227)}.el-tree__empty-block{posit"
  },
  {
    "path": "src/assets/theme/theme-green/upload.css",
    "chars": 10216,
    "preview": "@charset \"UTF-8\";.el-upload-cover__title,.el-upload-list__item-name{overflow:hidden;text-overflow:ellipsis;white-space:n"
  },
  {
    "path": "src/components/common/HomeMenu.vue",
    "chars": 12457,
    "preview": "<template>\n    <el-row class=\"blu-container\">\n        <el-col :span=\"24\" class=\"header\">\n            <el-col :span=\"10\" "
  },
  {
    "path": "src/components/common/Icon-svg/index.vue",
    "chars": 362,
    "preview": "<template>\n  <svg class=\"svg-icon\" aria-hidden=\"true\">\n    <use :xlink:href=\"iconName\"></use>\n  </svg>\n</template>\n\n<scr"
  },
  {
    "path": "src/components/common/ShowVideo.vue",
    "chars": 3607,
    "preview": "<template>\n    <div class=\"item\">\n        <div class=\"player\">\n            <video-player ref=\"videoPlayer\"\n             "
  },
  {
    "path": "src/components/common/error/401.vue",
    "chars": 2197,
    "preview": "<template>\n  <div class=\"errPage-container\">\n    <el-button @click=\"back\" icon='arrow-left' class=\"pan-back-btn\">返回</el-"
  },
  {
    "path": "src/components/common/error/404.vue",
    "chars": 5377,
    "preview": "<template>\n  <div style=\"background:#f0f2f5;margin-top: -20px;\">\n    <div class=\"wscn-http404\">\n      <div class=\"pic-40"
  },
  {
    "path": "src/components/page/Login.vue",
    "chars": 4698,
    "preview": "<template>\n    <div>\n        <el-form :model=\"ruleForm\" :rules=\"rules\" ref=\"ruleForm\" label-position=\"left\" label-width="
  },
  {
    "path": "src/components/page/dashboard/Dashboard.vue",
    "chars": 43440,
    "preview": "<template>\n    <section class=\"toolbar\">\n        <section class=\"content\">\n            <div class=\"col-md-3 col-sm-6 col"
  },
  {
    "path": "src/components/page/dashboard/HelloSys.vue",
    "chars": 905,
    "preview": "<template>\n    <div class=\"app-container\">\n        <div class=\"wrapper\">\n            <ul>\n                <h1 class=\"tex"
  },
  {
    "path": "src/components/page/dashboard/index.vue",
    "chars": 778,
    "preview": "<template>\n    <div class=\"dashboard-container\">\n        <component v-bind:is=\"currentRole\"></component>\n    </div>\n</te"
  },
  {
    "path": "src/components/page/friends/FriendRows.vue",
    "chars": 14388,
    "preview": "<template>\n    <section>\n        <p></p>\n        <P><strong>个人资料</strong> /\n            <router-link :to=\"{ path: filter"
  },
  {
    "path": "src/components/page/friends/FriendsInRow.vue",
    "chars": 7306,
    "preview": "<template>\n    <section>\n        <template>\n            <section class=\"toolbar\">\n                <p></p>\n              "
  },
  {
    "path": "src/components/page/friends/FriendsManage.vue",
    "chars": 4145,
    "preview": "<template>\n    <section class=\"toolbar\">\n        <el-tabs v-model=\"activeName\" type=\"card\" @tab-click=\"handleClick\">\n   "
  },
  {
    "path": "src/components/page/friends/UserRelationInfo.vue",
    "chars": 16436,
    "preview": "<template>\n    <section>\n        <p></p>\n        <P><strong>个人资料</strong> /\n            <router-link :to=\"{ path: filter"
  },
  {
    "path": "src/components/page/friends/stat/FrisNumCycleCharts.vue",
    "chars": 10134,
    "preview": "<template>\n    <section>\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n            <el-form :"
  },
  {
    "path": "src/components/page/msg/stat/MsgNumCycleCharts.vue",
    "chars": 11135,
    "preview": "<template>\n    <section>\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n            <el-form :"
  },
  {
    "path": "src/components/page/operation/AnchorMsgMass.vue",
    "chars": 12354,
    "preview": "<template>\n    <section>\n        <!--工具条-->\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n   "
  },
  {
    "path": "src/components/page/operation/AutoReplyCfg.vue",
    "chars": 1566,
    "preview": "<template>\n    <section>\n        <!--<hr/>-->\n        <template>\n            <section class=\"toolbar\">\n                <"
  },
  {
    "path": "src/components/page/operation/AutoReplyCfgList.vue",
    "chars": 40792,
    "preview": "<template>\n    <section>\n        <!--<hr/>-->\n        <template>\n            <section>\n                <el-col :span=\"24"
  },
  {
    "path": "src/components/page/operation/OperatingAccountManage.vue",
    "chars": 6356,
    "preview": "<template>\n    <section>\n        <!--工具条-->\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n   "
  },
  {
    "path": "src/components/page/uploadOSS/UploadOSS.vue",
    "chars": 4586,
    "preview": "<template>\n    <div>\n        <div class=\"oss_file\">{{ this.inputName }}\n            <input type=\"file\" :id=\"id\" :multipl"
  },
  {
    "path": "src/components/page/userDataStat/GeoUserNumCityRanked.vue",
    "chars": 20515,
    "preview": "<template>\n    <section>\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n            <div class"
  },
  {
    "path": "src/components/page/userDataStat/LoggedUserNumCycleCharts.vue",
    "chars": 8094,
    "preview": "<template>\n    <section>\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n            <el-form :"
  },
  {
    "path": "src/components/page/userDataStat/UserNumCycleCharts.vue",
    "chars": 8328,
    "preview": "<template>\n    <section>\n        <!--<div class=\"crumbs\">-->\n        <!--<el-breadcrumb separator=\"/\">-->\n        <!--<e"
  },
  {
    "path": "src/components/page/userManage/UserManage.vue",
    "chars": 19257,
    "preview": "<template>\n    <section>\n        <!--工具条-->\n        <el-col :span=\"24\" class=\"toolbar\" style=\"padding-bottom: 0px;\">\n   "
  },
  {
    "path": "src/config/index.js",
    "chars": 314,
    "preview": "/**\n * Created by kai.fantasy on 2017/4/11 0011.\n */\nexport default {\n    serverURI: '',\n    // serverURI: 'https://api-"
  },
  {
    "path": "src/filters/index.js",
    "chars": 6156,
    "preview": "/**\n * Created by kai.fantasy on 2017/7/18 0018.\n */\nimport moment from 'moment';\nimport channelCode from 'static/channe"
  },
  {
    "path": "src/main.js",
    "chars": 2980,
    "preview": "// import babelpolyfill from 'babel-polyfill'\nimport Vue from 'vue'\nimport App from './App.vue'\nimport ElementUI from 'e"
  },
  {
    "path": "src/mock/data/dashboard.js",
    "chars": 9901,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/20 0020.\n */\nconst TotalALL = {\"result\": [{\"_id\": {\"deviceType\": 1}, \"num\": 1304"
  },
  {
    "path": "src/mock/data/msgData.js",
    "chars": 777,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/22 0022.\n */\nimport Mock from 'mockjs';\n\nconst MsgData = [];\n\nfor (let i = 0; i "
  },
  {
    "path": "src/mock/data/ststoken.js",
    "chars": 318,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/21 0021.\n */\n\nconst StsToken = {\n    \"AccessKeySecret\": \"Dne12K9TUPjpsSWXSZ49h9C"
  },
  {
    "path": "src/mock/data/trendData.js",
    "chars": 9516,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/21 0021.\n */\nimport moment from 'moment';\nimport Mock from 'mockjs';\n\nconst addU"
  },
  {
    "path": "src/mock/data/users.js",
    "chars": 2892,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/20 0020.\n */\nimport Mock from 'mockjs';\n\nconst Token = {\n    \"account\": \"56abcde"
  },
  {
    "path": "src/mock/index.js",
    "chars": 103,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/20 0020.\n */\n\nimport mock from './mock';\n\nexport default mock;\n"
  },
  {
    "path": "src/mock/mock.js",
    "chars": 6356,
    "preview": "/**\n * Created by kai.fantasy on 2017/6/20 0020.\n */\n\nimport axios from 'axios';\nimport fetch from '../utils/fetch';\nimp"
  },
  {
    "path": "src/routes.js",
    "chars": 4068,
    "preview": "import Vue from 'vue';\nimport Router from 'vue-router';\nimport Login from './components/page/Login.vue';\nimport NotFound"
  },
  {
    "path": "src/store/actions.js",
    "chars": 18,
    "preview": "export default {}\n"
  },
  {
    "path": "src/store/getters.js",
    "chars": 441,
    "preview": "const getters = {\n    token: state => state.user.token,\n    roles: state => state.user.roles,\n    avatar: state => state"
  }
]

// ... and 39 more files (download for full content)

About this extraction

This page contains the full source code of the fantasykai/vue-admin-manager GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 239 files (2.0 MB), approximately 545.2k tokens, and a symbol index with 1269 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!