Commit 069e0118 by 无尘

feat: 更换项目整体框架

parent a6e72051
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"]
}
# http://editorconfig.org
root = true root = true
[*] [*]
...@@ -11,4 +10,4 @@ trim_trailing_whitespace = true ...@@ -11,4 +10,4 @@ trim_trailing_whitespace = true
[*.md] [*.md]
insert_final_newline = false insert_final_newline = false
trim_trailing_whitespace = false trim_trailing_whitespace = false
\ No newline at end of file
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}
# office-mobile # 好办 APP 移动端 webview 项目
> 好办 APP webview 模板前端代码 > h5 webview 模板前端代码
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
```
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
module.exports = {
presets: ['@vue/app'],
plugins: [
[
'import',
{ libraryName: 'vant', libraryDirectory: 'es', style: true },
'vant'
]
]
};
'use strict'
require('./check-versions')()
process.env.NODE_ENV = 'production'
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
const spinner = ora('building for production...')
spinner.start()
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})
'use strict'
const chalk = require('chalk')
const semver = require('semver')
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}
'use strict'
const path = require('path')
const config = require('../config')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const packageConfig = require('../package.json')
exports.assetsPath = function (_path) {
const assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
const cssLoader = {
loader: 'css-loader',
options: {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {
sourceMap: options.sourceMap
}
}
// generate loader string to be used with extract text plugin
function generateLoaders (loader, loaderOptions) {
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
if (loader) {
loaders.push({
loader: loader + '-loader',
options: Object.assign({}, loaderOptions, {
sourceMap: options.sourceMap
})
})
}
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
publicPath: '../../', //注意: 此处根据路径, 自动更改
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
}
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
return {
css: generateLoaders(),
postcss: generateLoaders(),
less: generateLoaders('less'),
sass: generateLoaders('sass', { indentedSyntax: true }),
scss: generateLoaders('sass'),
stylus: generateLoaders('stylus'),
styl: generateLoaders('stylus')
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
const output = []
const loaders = exports.cssLoaders(options)
for (const extension in loaders) {
const loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
use: loader
})
}
return output
}
exports.createNotifierCallback = () => {
const notifier = require('node-notifier')
return (severity, errors) => {
if (severity !== 'error') return
const error = errors[0]
const filename = error.file && error.file.split('!').pop()
notifier.notify({
title: packageConfig.name,
message: severity + ': ' + error.name,
subtitle: filename || '',
icon: path.join(__dirname, 'logo.png')
})
}
}
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
'components': resolve('src/components'),
'views': resolve('src/views')
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.scss$/,
loaders: ["style", "css", "scss", "sass"]
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
},
node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const HOST = process.env.HOST
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
// cheap-module-eval-source-map is faster for development
devtool: config.dev.devtool,
// these devServer options should be customized in /config/index.js
devServer: {
clientLogLevel: 'warning',
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,
contentBase: false, // since we use CopyWebpackPlugin.
compress: true,
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon: './favicon.ico'
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})
'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const env = require('../config/prod.env')
const webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true,
usePostCSS: true
})
},
devtool: config.build.productionSourceMap ? config.build.devtool : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks: true,
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
if (config.build.productionGzip) {
const CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig
## [1.0.4](http://115.159.76.241/office/office-mobile/compare/v1.0.3...v1.0.4) (2019-03-06)
## [1.0.3](http://115.159.76.241/office/office-mobile/compare/v1.0.2...v1.0.3) (2018-12-19)
### Bug Fixes
* 修改数据处理 ([a6e7205](http://115.159.76.241/office/office-mobile/commits/a6e7205))
## [1.0.2](http://115.159.76.241/office/office-mobile/compare/v1.0.1...v1.0.2) (2018-12-18)
## 1.0.1 (2018-12-17)
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})
'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path');
const proxyConfig = require('./proxyList');
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},//proxyConfig.proxyList,
// Various Dev Server settings
// host: '0.0.0.0', // can be overwritten by process.env.HOST
host: 'localhost',//'192.168.1.20',//localhost
port: 8005, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
/**
* Source Maps
*/
// https://webpack.js.org/configuration/devtool/#development
devtool: 'cheap-module-eval-source-map',
// If you have problems debugging vue-files in devtools,
// set this to false - it *may* help
// https://vue-loader.vuejs.org/en/options.html#cachebusting
cacheBusting: true,
cssSourceMap: true
},
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
/**
* Source Maps
*/
productionSourceMap: true,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
}
'use strict'
module.exports = {
NODE_ENV: '"production"'
}
module.exports = {
proxyList: {
'/api-auth/': {
target: 'http://gicdev.demogic.com/api-auth/',
changeOrigin: true,
pathRewrite: {
'^/api-auth': ''
}
},
'/api-admin/': {
target: 'http://gicdev.demogic.com/api-admin/',
changeOrigin: true,
pathRewrite: {
'^/api-admin': ''
}
},
'/api-plug/': {
target: 'http://gicdev.demogic.com/api-plug/',
changeOrigin: true,
pathRewrite: {
'^/api-plug': ''
}
},
'/api-mall/': {
target: 'http://gicdev.demogic.com/api-mall/',
changeOrigin: true,
pathRewrite: {
'^/api-mall': ''
}
}
}
}
body{background-color:#fff}@font-face{font-family:iconfont;src:url(../fonts/iconfont.92fe21c5.eot);src:url(../fonts/iconfont.92fe21c5.eot#iefix) format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAACA8AAsAAAAAMVAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8jEs7Y21hcAAAAYAAAAGZAAAEVA8dnAFnbHlmAAADHAAAGT4AACT8vlB6KGhlYWQAABxcAAAAMQAAADYTzWCQaGhlYQAAHJAAAAAgAAAAJAgiA+hobXR4AAAcsAAAACoAAACwsNH/+GxvY2EAABzcAAAAWgAAAFrAELdsbWF4cAAAHTgAAAAfAAAAIAFNAOduYW1lAAAdWAAAAUUAAAJtPlT+fXBvc3QAAB6gAAABmwAAArB79C4HeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWWcwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGBye8b00Z27438AQw9zL0AEUZgTJAQDlEgxFeJzd1NlLW1EUxeFfEmurtVFTOw+2tk0HY6ihQSgIJUJffRBK/d8VO66jIHb21a7jSsFHn3s3X8g97MC5Z68b4ALQsp5NQPMNDX+j8dqrjdP1FtOn6xONtu9f8MB905pVR131NdBQ6xppS9va1b4OdVxapVeGZaNsHqydnIDamnfvilbP9O5oz71H497Rv95zXg3vo0ff9ZLBmXrFW9e7cb13wSzz7m7S8bPOee+XmPTvLzPDRa6ywDWuc4Ob3OI2d7jLPe6z6Kd8yBKPeMwTujzlGc99Di2u0GaZKW9h8ty7/X+vmfrRXBjfLddZh08djfn80ZgngTrhmaBuUNdWomZS/fDE0GrUfGoQniIahueJ1qNmVqPwjNFW1J1qOzx3tBNOANoNZwHthVOBPoTzgT6Gk4I+hTODPofTg76Ec4S+hhOFFM4WKuGUof1w3tBhOHnoKJxB9C2cRvQ9nEv0I5xQ9DOcVfQrnFr0O6hn/CecZHQczjSlFU43pRf1fS/DqP8NZRTOPmUj/BZQNqPO/WAtmPoL9ffBGwAAAHictXoJlBzFlWD+iDwqj8qsrKrMuu/uqr6vOrJbLXVXt45W68TiEOhCjQAhaAmQLQEGrAsjDcY2yIxhhDFCAw8zbw57Zgz47QAN3h3PrmHBsJ6xPOsF78wAnrXB3vHu22VVqf2R2Wo1+M288b63UtTPyIgfkfF//PhXNCdw3PmzdI4c5eJcO9fPLeVWcZxQ6IOKOQajMAZONQux6pAdM3WQAH/4iq2IUCiKUXuoUSuXAN+wDXsYTq3BxmSgRO8794tYFiAbe6Lck/hZeaj9Cf/VvW3bHYTcsW0rg1uBqqGQHQqpbmvlVkK2rlzB4Ar3lCI1AspVFRwAP4jlpB2iuEPKxdx+nIRIOHBhEiNmYHF/By6MXbkV4O8kBUCRwhxHkMbD9HF6mFO5AY5rj4rFcqU+BkO21V6o+wtnlDCikACrhMDEtgJ2mdhGBtPdaQAGelvvkL2bNu0j8fY40K/fdtvX6ap0G0BbmryQagdoT33aSqetZxj49ZZNs4TMbgrH4+GDj1H62MEtiNf6VYrhp4iB4/y1PUPP083c5dwVuLZ6wWLMtnToBn+Vo+C3ZSAqLmqrNaqFeglfcZ+qBSTFZN1WgSH+xgz0Bveb0yEbwA69bLKHudr9znQoFgu94reuCSpw9XG/DmOmbZvH4QZZn/jYmE99Z9Mm23yZ9SJYXN+jBp+KhaCTvbp/E4o9FVT3XOzl8F8A6fwz+hpdj3sQ5SrcEm4dUjzDHeI48MXJEy1hDGplJldCzSl3M3GzcCPMKm5Dvb0oMSZIDWcIJXAZEzoJf2y3rKjNkMagjkN8oVwsqrEicobt+jJAjiHnHGQfY1RsyI6K8P7AOMD4QD+D0OwZGdm8ZIk7mlDV2zsd3Pb4G3YCnlPVRKy6fLBTN8Dp/AYs7T3asxRyyf+azLvL/SGksOYaQnZNM3hNWUs4aljdJqtaYJtfUcmtMNbfPwYetMjI5SNYbuxvo9DofDjdE3R/DIo1kv+ItvU/2dPeBpZejD7c2YArekYBRnuezA0G3ZdgIjiYg78Gf3Tr78nM6ukZ4sEXtuJH5K2qqcIWVtsCWEXe88j7e+kWlH/KGXjOOzjOKZiF9nKlJEqWHas2HLrA9/mj7xQY33X4Kam2XoPLQD2gggdGo6lURzIJfa3XshWASpZUMx0AHZvIC8MMRWWn7tyXIFFOJsuJlVDO0P2ZMuDz3JcyZY6cP3/+EM/RIygDvbj3lTrbwkq5aIC3kZIYzQHb82rMHhqHKq6k7jRqUHFiEKPvzcJQ+fa9qRWpvbeVh2BvIrGXNcxiw+wd2DCbaP3JG85XYEM3vDB7+0WM27wht3sYCTbHHTjEPf9mYj+siCBXuPOfp7+kB7kwV+a6cFV4liRRwvX4RZTMdsEsV/qoV6BSroDQC/SXEi+HA2FNMwPDhwfGh1vvwA9HhhPLJibyQTtkBgIyrwD9odvtdsMb5AZ3JpTU4gk1qgV0IT6QiMdJ6pW/av1DLKcl82lD0E0roEW0RBx++corf+HrhvN0jgIX41K4KnbMY95BLxWK5brJVAC2CIV6gXAyfCZeFElbpiVk29ozsCTbBu4RGHdfJocTlqK4NIPN5K5Me1t2rMkxvT+HczfxZJpckiuh7uciOBPTfVXUI96Zq0DJU4T1TmJ52rDUXi9ZJauKvYX6YWi6c6jNmjAHzSbqtBbHIGulnIttrM893XznnSYgk1kfth5uzne5nD/aH7MTsc5zwDWRUJSRw/xKlFdcU7tvW3wd4asJ3RMQO7awP3j6cXV1D4H8G0mRcv1GNA6gqYF7ZmbuCahBiEfTDeyIryznz+qxOH03Yetn8+WVZwPj7fFVXYHudLSo3fX7lP7+XVoxmu4ObBzoWCHHy2F196WhQUoHQ5fuVsMX5BdQfh/h/hItpYOfHEO1gZrW+/wyGKNVZ4wys1Jr1IfGSJ3pqloZzWStXKnNo2HpB1YvoqAZRDTgIjFiVLSiWYImCclk1jdLYwxCDHUYdl+US50yXiAn/O4qVIrlfmCTsvlK2JmDLFjIn1HGwSE7h6ahUa/UGuPQKJPpyKqIqrRlrhKoIGu8QEAASQgKshLgeUH0nkQMCIRXZCGiC2EZDCUdVPRMOqbrajKq6L1ymBd4HgeKIgmwQTz+QyBj0WVBAoLTCKaiZyPx3VE9nQkKPJGoLKQi+Q+fuBSenDUSQo/A49geIWHM6kRZp8gRXg5eLRiqIVwdFAIRWVkH4padqyJ9/RlcH7CZTTkvKHIgiN9RBMEQsC3AaqacZAuPdMQixXikzWBdmiAL+FmC+yYrotKj5yKxYiRSjuAMKq4uogps0YTNaygKLxoC0pvEoVhENgEvFlXEy0TyqXA+KAgKL2UJhIOWslOQJGGnYgWRN+uUpDErK1X2qaoizxpJbDJ8/wN13mHO5orsHNdLTkWqSDE8SOwwWdU6NlGbi4mcVOYqDY7k575yundurvf0V+bm5ppzc/mzUBBF9+2zZ923RREKeIr8/mYTe5ukuajvLOJ6On+OJ3i+KSdxCqfjdwtWwfuZgokPEm+9T+Lws3OI654D/hyhLjy/3/35fuDhrhfhxc9w87bjX54H/pHEWj9zbZ47xwHvnqPnz8FvzsN4cJQepIfQAjFddsHgx0oyDI6BsMiDpAf4tx5//C0ekniEV8CKeNK9b+ONhNy48ZI9hOwh2mM/4PkfPFbd0ekOwuudO46TPRs3sJ4NG/d4632Jvozr5TjNt3VQWHBZdeZgOBe/7fsXTtVuOKg9COc2hdaLL50ThHMvvdiC50fWEbJuZGQdwLqbr1u9k8DO6etWoXXfCYcvIAlC69+TtcPDa4kHk2THlFIyAIySMrUD18D07Mv0JTrOhVDHtnHjnoLDI6oTPOOoHmpliiqgWGHKoL7gROMCSwssqS4sGN9Ldbp04vS3zxyZnDx85tkn8HG9MzV9enrKGR7l33766bcFGB1+wG52TFxJyObJjqa9Lf3ptdfeS8i91677dGob+YuJyeVHTj/7xOHlk0eeePZ06wMnm83mGsNfvgTHCm8/fcmXh1/KlmDz8snNBIq5yY1A770Wx8MlTTSUMuq/szxP29BqFNCCj3DTnh+3l9uHutpGxSOWK7Q8RlDD2LH2C37pvLmKMM8M39DRqDqL6vSTeKx1FLzg4p8Zg06tK7bl7spUhT1EMhOhz+YGRXdXrrs7d1Ouu5D/jGIYyk0fBz/K9fRgLwJeNQx1l4pajGdgN3vdfbG2GueKCG058kgoFTf4iNCeW96da32KzU7+JNfd+iiSjmA5Gs2Ew5ko3LO40z0fTkej6bD7QiQVDqcih8IMCeMQ5mf8Af0BvRR9n+XcFiaZqP6tkk/ObzwvRiC0UK/6lP/Gs0B9w+dbQc8yeoEMPdaaLPZAJRyNhiuLIfQUyYuFHoCeQmuyYlqWWVkMyYu/itiwslZbCXakcxBmTs4QGKSbevMHUVU9Nv87yCbozVOt0HvuKb+jzfoa/g64J83+VG0lIStrqX4zvblrpLd3pGvz/zfaK2U8PX3Ema8xU/j/Tvrd6ULvYL8dWjHdpyXNSscSOz26febxfz31rUdjSzoqZjLYN70yZPcP9BXTmcdntg37e3+Gl+kOLs01MPrh0EAzP6DhRAoRG1deRg1Q8tuKJanqbSPC6pCDkZzEvPK6jYTH0FjAptD+1UvXAhR2kw+v74qMjB7vjQWk0P6p6pQKtLgiMbVpKrEivrqzLU9GelqnekZIodS5Or4CzqxaGwxuHRvthpr76ui9fZ2RkWx5am1QnaqeKJRKhUJJ/9ueJQBLev5WL6167TWOnnfP3+75Oyp6odd5616IqyLoC9ZLaLzQhAkY9o+JzhhxGoysSvnCf6kozTvTYkwnWZID2/dYovaCk41tls0zseX2PkDpA3s92HP3kruxuEtyGQhoRlhTeDUURNsakEhCS2hmxI4lE+lYotadMKMWL0AgQBVdC8jMeTGTFBTVMJMr8z1DBAC96md33wNzF2ZH6L7L5r+73n9luxrSVCORDvF6wjKsEL9xTSVvaIaiiTLwciGczE7lyxU5liiFFchrQVXWk3EjGdd01Qyr5kRwbVtHw84ZD8/bzFfpR2iDKlwVNf5a1Ixe1OAsNj42o92YD3HRkfdMEGXhKSo+DEtLKBN+HaVCWtRO4TlSRF2lXC6QO7dtu5MKGzSJCFoXfTqDEVl/kXyt2I8R2VIjGjX+px6N6v+Wge8ZJkSMI6zxCHt/bjWENL1i3zO9/2FKH96/+ljYaA8oJkxrA7mVxUqluDI/CFcbhRCW+8AoGviEo/7Tk+cH6c/prZ5crPmEXKBzU3EwZHNiUjvKhUc4EtgoS1j62I4zI+ed1hhCW7xgib3h5KPdJyg9sduDRv/UqsGpVf2rpgan3G/GLBKIpYB2CUSFSHFP4smlKT0KMiWmJugi2HmhSG86xUv/9LvdV3TWl8Ft9MT1/mzXn3C/PzA1NTC1amDVqoEp6FpX0MKFJcFqV0eUjL4pdUpbBg82CI0lhk1RIWSyM5+3rh+fmOwFXGrHQW4RzUPcGLcCd/W3p+1jaQmJsQh+/FsTld99nNLjSBHSNfn65+uXnLr3t6UGGgQZMz/Nn3tzeD7affT7GAd3c5OehtZJhkUgGHOgm/qJJ7ovVRZ1mcyDYd4LEsiEWswSv0ZvbNWtcjZksTSQtRiGMhWLfL+nVnu+65nLNoY6iuvz2UKbXRibjOeX9nQO04OhbNk6TuKlODmGMAE+PMGmg9FemuwdPfeKfeALX/6Pibg1uXIoFNoxu16N8UuXjcz7mifpB3Qf+poW0uHEqlYMbY1UKdUrTh1PUwwj21seeOC1Bx989UEGIXuo8W2oOeQn2PLAg6+e9Nrdyc9ha9XhfD8OBeA98gHO2YUafJLbwDj08Uwh9M3v8oWkojh/0MVSZJ5tfVBrxLw6c3aw7rU4Xgs92Ir6qSjyi/4mkPFz7ykyqGucTB4mBgcnoZB21ihEkQk5fUY2DPmMglpgofbBP8i6LjNAfkHGB1zJnwv+90Cz9R+IoQxfaoacfHU5kMlqwTHMS0dkA/Xi5WDZUWDgCGDIic9vgWVZXgvHiaj/76H/h34RvdcOrobe6wbuRqS8wXLDFV/ckUZgOryM8SXGwiTmVPE8gOREYpEx1i158rFY9CmSjRxy8K1ii4xjtsccB3nUh+E0sgS9dgl5R25qrtJDgUDsj26++QFDiOruR5JEVEmVrgimpN2w9Q4IRQfcRJB8ZBzK7erpNrOZia7eIWgeeJTSRw94sP0bVeD1Mnm8mAN1MpFLErMMZZMkc71oMSQDuJAEKg3AG6muHQM332laD98cb6bd42o+ONHhSEBN7QmQXohFBtyvCkGY1cHpDmfzu3o7soVMzf1H9qFTlJ7Cz7kz9k4hEwQitZEdpWO0h14svfwakhKEFFnD93pyijL1Lvk7LswlFmIin0sFX1tUPNtKY+bv7d37e+aVBwi5ezuxt99JyAH3d1459rl74N29X6T0/n2BQ9tnjlD+8Mz2Q+6xd15/nU0N3vzLaZBlX2UMKsySKVUIB8sb761716Ga+2Lj3dZDZPbdhndmTtH36G1clmXA2gssleHlmP2DnfUWZhVYYj8qCgUmrywLVWvQZ879cbJUSsLsrl2xzNPXIQxvm4BZbDv3Ifla0DSDrWsRRqCYvCNZOpZmKPH0N66d2GYexbbPJovLwEya4YQ5bzsfp0/SGbQrLFLsw6NXuhgNRAD3wrt4YBazVgYaKaPfAd7yKrS94gDttJgPbyO42T24D+57uPUjzTA00oHQNSZdjZqW0w2RcJ91Hn4tXOP+TY9hG1hIHmZvdR9yPzX/us2NQiDaG7ag4lhhQXX/13a+BaZnBx6ij9KbcH0DzA4EYT5pWh3yMjEOW9IosAyqSPvQyFdYbpXlYhyWK2qUqc4SRuV+KDNNMZQlePi3ty7LdwF05e+P5C1p4PhgUFLy4ftZ21e0nPb3Z4L5uPaUYYXthPS+At8x+xp9YTUAIVjtJPtK0ciOIHTnydZ8N5jZQB8MBBW0+N2F1lPj8GuVqD/7qpbIa6d1HSCk/JOaA8qcYi1IsqXhaYi29df75+PVr9Ev0OtQJpeiv3c3d9K7MZF84RS9TBtT9o1xXwGgi5cFKyr5Th1DsKOeY8Nq3pUKU4mNcoM5gyL6MRWxxLJUZdFXHdVYxVcKLOZlX6mNU197smR/zKL2OEPDzfYY2ecFf+TEZRsv2QHS53M2AfIqkazi/keoZOiGGl27Jp+WNV7XQxrLARKCrlE/L0Nh6dCEbi+5nyidihSAcl4PBm3dpnIwFAN15Q3Vhi0GhoUA2DdOrbghDkFy44aNewgBQeo4OmGszhHYpykiQCQZjiRkyauEv6XcI2qHZP6ynv4dVNyb71j/fCa7bHBL2/JPmyKIUU0OaOFoMFptFLr0cCbSvoSWgltlakjSyFhAbuSz9RMD5bAaBjMoWCYE+jt77ls/5VB+03WEXL1evX73/ZR+4YZQQLIB2sbTPUFVCkpGCK6BgIhrj6QiCxXO91Eep4/h+UlwE9xlfv4UdSu6YyUphvx1PBUTK6AQLiRUaw0f1hE6nv5hshrzcu9jINmS5W9NveHglmIPvbL7lJzdpeR0vVPXo1eHxf5jfR08pR1K+yHr8xkVfZcIHwQ+LZjljbzRvV+ApGzp+9auv1kzaPdG3JXdGzZcT6zIVYdHpJRxPDsEn32avqnE48oP176p0sHe+qOBocdIZfUE6v4k7aO0n/KDAuml4TpZGj05s2aUz+z4DJCDO4ghfWm/IPDXHCXk6DVtxVoKstFa3NNpX6a/8nzUPKpDkZNsLtbgnDLHaEcJrpQ902v42WTCveW+LwgQf+stiAuC+/7r0WMBqTq6Xg7E5+IBef2SakA+Rm/BnrcWYZ57W7rFKjz41IyWAkhpO586WbBuuZA7e5b+hJY9H7nE4gBYpMsqi+vVi5mNiBcWYjhQY0dm/nbL27WMd2C8UKFWKdNnHwlZVuiRkG2HFmrfWHjNSye2W6EK9HY6K646SHrar/ycmCoSuTNJnsl2CaEQvG4VLCyP+I/1/sN1+GrUtJ0Vd1WvzHYge7fcVb08Y/VTbSjzmJjIljNfTSeS83eqf+XdqQ75tutC8srLh0fw+KN+qJeZvHgU4FvES2LPh7OE2/cQpQ/t82Dr30Fz4JYriV5kltPs7AiTRDIZgs239jcJmXJaNzmrAW4Vvr1n9zGCPuueb7rfq22P19z/hr4Hlp/yPTyWn5IUwQJWLb69NlWdBJisenePnu/239G2DXAbuRnuKPck9z3ux3g62A1qnalrJ+a5bUP2Ba8twyL0elkaLEssxS7FLAe3BY1RGQ3j/ICKN2A+nmOGkQ0ofXwAU2lO7eIX5jN83g0GS+hbBQ+j8THPcQGBaUnqJXdy/lWUdcE78DKG/cyisLhx/rtR9l1n0MGFgfaShQIJymgnSRaguq4K+WTnEpVAapOuaTovSNmOjlyAJz+fs1JEWYJoeYDq+ipADhEVkrpUV0HVeZ4hZgN86687GgB89NZLaHUcdq1ds4vA2NAlt1rsAtO9f3gNepO8ecV4rkhu33LV7RSKubErTAHVVmTgh2t3QaWUzk9sDfEAjQ44wOZCv2pLs5Buq5BdajYB8WzYGL8cLm8a4S8mo7wglh0ZlK50+8BAe6pblhsVUeAjqWPA7hgx2JeW5SC/TArc+dsgvwH1Dp5XlQ17TYheMeJdnk4PXxENz25QlUClAe1kephKoeDyPfnshu6rDlJ68KqeDZn8nuXBkFKvRCLkOziiezoZ1RLXLscxHXUApxxQleXXJrRoYk339Ix7hEQJFsgbhyZh8pCev5BL9+7cSlwFYyx24+aLU2P+Qn/+8t6/6r9wzxexCnUwq97/uZ2GaRrvmAY0DfMdVt9pGq05w5wD7jzXPNwkTdPArp3zXVhtnWZ1mm82z3NuE+bYj0N9xJ1/gp6kV3MyWook+nzdnMMtx9OxjbuBu5m7hbudO8zdh9b/FHeG+0Puz7kXuL/EM8PhEc4zs54XI/N/dbBwGQl+NFjCqAjb7ZiAtoR1eoQ5PqJfn293/DpTBz71tF7ASJn9xUMfRLKAKlGU2u0hp45P8J5FCUQLlWajVinhAY1VsQIXMNC/8jGkT2C0M0cVfTOx4v95QL1c+V3+u1D+Ls9/1/3xd/8zfEuSZcndKAVkEdYlCprsOqqmqfBkCI2reyiA/+CIGAB58cvHu7w3UcYJ8G3K3YCuLYU/ShTeQu8oakHrTQijZsPgCxgutL4uQyAmyzFyKQ+CyvOtVz6B8BMZQLZl2Sa1eYwA6va8DbaJq9VlMKZlTZPlYJD8XBZb+9i3yUlRbmmkkiabNQMMtXVIMQBeFGXdCOzy4DViAF1A+RpvxVog4K4eGGD38+2U1zQtjr8rcVEKyK3neF7jeZIBWQETWv/JXxb8D1mO49JbP/IXRZZ9vP+LdtG2C7YDAR1ZasC8T+nff1HPp097tzJVsxRbnA/zLr4c7xKMlrw/x6mxaxKAd1esSD7/Ac9/8LwPF11zsSuxN6qZbtTV8VQ8CP/FPfMH/IfPPfehj71lERq7HSN/amUylh7X9Tgu6/8C8OdrLgAAeJxjYGRgYADi8AY9h3h+m68M3CwMIHDDtM8dRv//97+CxZW5F8jlYGACiQIAHdoLEQAAAHicY2BkYGBu+N/AEMPi8v/f/+8srgxAERSgAwCr3AcReJxjYWBgYMGK//9H4bsA+WxQMUcgdgBiRjzqGf7/w24uITn8GAC/hw1vAAAAAAAAAHIAwAE0AfICOAKCAs4C/ANKA5gEsgTsBRAFNAVoBbAGGAa2BzQHtAgQCKoJHAmWCgYKagqUCxALvgvuDAQMSAyaDQgN6A5uDq4PHA9yELYQ/BIyEn4AAHicY2BkYGDQYbjNIM4AAkxAzAWEDAz/wXwGACRiAjUAeJxlj01OwzAQhV/6B6QSqqhgh+QFYgEo/RGrblhUavdddN+mTpsqiSPHrdQDcB6OwAk4AtyAO/BIJ5s2lsffvHljTwDc4Acejt8t95E9XDI7cg0XuBeuU38QbpBfhJto41W4Rf1N2MczpsJtdGF5g9e4YvaEd2EPHXwI13CNT+E69S/hBvlbuIk7/Aq30PHqwj7mXle4jUcv9sdWL5xeqeVBxaHJIpM5v4KZXu+Sha3S6pxrW8QmU4OgX0lTnWlb3VPs10PnIhVZk6oJqzpJjMqt2erQBRvn8lGvF4kehCblWGP+tsYCjnEFhSUOjDFCGGSIyujoO1Vm9K+xQ8Jee1Y9zed0WxTU/3OFAQL0z1xTurLSeTpPgT1fG1J1dCtuy56UNJFezUkSskJe1rZUQuoBNmVXjhF6XNGJPyhnSP8ACVpuyAAAAHicbVHbdtowEPSkuWDXgEOa9N60Se+NX/JDHAUZaV2QoLCNra/vyoBPHqoHeT3SzsyOkqNkt7Lk/+sOR3iGY5zgFGcYIEWG58gxxAhjFDjHBBd4gUtc4SVe4TXe4C3e4T0+4Bof8Qk3uMVnfMFXfMN3/MBP/MIdyuSYZt5lDbFRtKSlyu8DB0s1KeM535JyUj7wsnKnG+u5psGfygVbOVOsqa3m/MgtOdN6Zy62sm0slU8YBoF0PKZ0FntaVq6YWeVrMlIuKALDmuYVBSvdDbmzYJX7raiTW1MaVbSc0mVbPbKW+0svFraeGzFnsmA5sF8LPopkRli0fIQ2dkZLDbsFp301lFn0bi4xWOxH7O2NRd50A+4uDA+si2jipNsnpvMqeM+aR7VDNOeHnu7OWgIY70WjzwiOYuzTluNPUDRudRmRklcLr/T9oKWNENkq1aqrVrSHVpRKSOaBKvc3O1TKZVFezsXcqPc0jZSTHRqeBF5sZdNM/cxXG8s1S+hzVVqmmHx8hdSrqfNzcjoXpYaicXnfJPkHScfg+wA=") format("woff"),url(../fonts/iconfont.a9c45273.ttf) format("truetype"),url(../img/iconfont.759045b4.svg#iconfont) format("svg")}.iconfont,body{font-size:.42667rem;-webkit-font-smoothing:antialiased}.iconfont{font-family:iconfont!important;font-style:normal;-moz-osx-font-smoothing:grayscale}.icon-icon:before{content:"\E63D"}.icon-xiugaimima:before{content:"\E612"}.icon-2zuzhijiagou:before{content:"\E735"}.icon-tianjiabumen:before{content:"\E631"}.icon-shouji:before{content:"\E62D"}.icon-renzheng:before{content:"\E635"}.icon-qiyefuwuyingyong:before{content:"\E659"}.icon-tongshi-zuzhijiagou:before{content:"\E632"}.icon-zidingyi:before{content:"\E937"}.icon-chengyuan:before{content:"\E72C"}.icon-chaojiguanliyuan:before{content:"\E642"}.icon-jifeizhongxin:before{content:"\E653"}.icon-zhankai:before{content:"\E742"}.icon-shouqi:before{content:"\E743"}.icon-qiyedizhi:before{content:"\E60E"}.icon-yewuduanmorentouxiang:before{content:"\E62E"}.icon-zhuzuoquan:before{content:"\E60F"}.icon-yuangongdangan:before{content:"\E626"}.icon-qiyetongxunlu:before{content:"\E6DC"}.icon-tongxunlu:before{content:"\E6DD"}.icon-mendianjiagou:before{content:"\E6DF"}.icon-tianjiachengyuan:before{content:"\E6E0"}.icon-hangzhengjiagou:before{content:"\E6E1"}.icon-yuangonglizhi:before{content:"\E6E2"}.icon-lizhi:before{content:"\E6E3"}.icon-gongxiangtongxunlu:before{content:"\E6E4"}.icon-qiyerenzheng:before{content:"\E6E5"}.icon-yuangongxiangqing:before{content:"\E6E6"}.icon-mendianquanxian:before{content:"\E6E7"}.icon-icon_yunxiazai:before{content:"\E6E8"}.icon-yd-icon-upload2:before{content:"\E6EC"}.icon-yishenhe:before{content:"\E6EE"}.icon-daishenpi:before{content:"\E6EF"}.icon-yishenpi:before{content:"\E6F0"}.icon-xingbienv:before{content:"\E6F1"}.icon-xingbienan:before{content:"\E6F2"}.icon-qiyeshezhi:before{content:"\E6F3"}.icon-tongxunlu_icon:before{content:"\E6F4"}.icon-shezhiziguanliyuan:before{content:"\E6F5"}.icon-tuanduichengyuan:before{content:"\E6F6"}.icon-shujukaifa-huishouzhan:before{content:"\E703"}.icon-oa_nofind:before{content:"\E611"}.icon-xinxixianshi:before{content:"\E74F"}*{margin:0;padding:0}body,html{font-family:-apple-system-font,Helvetica Neue,sans-serif}article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block}li{list-style:none}a{text-decoration:none}.fl{float:left}.fr{float:right}.clearfix:after,.clearfix:before{display:block;visibility:hidden;height:0;content:"";clear:both}.clearfix{zoom:1}.text-center{text-align:center}.text-right{text-align:right}.text-ellipsis{white-space:nowrap;text-overflow:ellipsis}.over-hide,.text-ellipsis{overflow:hidden}.border-box{box-sizing:border-box}.inline-block{display:inline-block}.block{display:block}.top{vertical-align:top}.middle{vertical-align:middle}.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flex-1{-webkit-box-flex:1;-webkit-flex:1;flex:1}.flex-2{-webkit-box-flex:2;-webkit-flex:2;flex:2}.flex-row{-webkit-flex-direction:row;-moz-flex-direction:row;-o-flex-direction:row;-webkit-box-orient:horizontal;flex-direction:row}.flex-column,.flex-row{-webkit-box-direction:normal}.flex-column{-webkit-flex-direction:column;-moz-flex-direction:column;-o-flex-direction:column;-webkit-box-orient:vertical;flex-direction:column}.flex-align-center{-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flex-pack-center{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.max-80{max-width:2.13333rem}.w-0{width:0}.font-12{font-size:.32rem}.font-13{font-size:.34667rem}.font-14{font-size:.37333rem}.font-15{font-size:.4rem}.font-16{font-size:.42667rem}.font-18{font-size:.48rem}.font-20{font-size:.53333rem}.font-30{font-size:.8rem}.font-50{font-size:1.33333rem}.font-w-500{font-weight:500}.color-232326{color:#232326}.color-848689{color:#848689}.color-cfa972{color:#cfa972}.color-606266{color:#606266}.color-666{color:#666}.color-000{color:#000}.bg-f4f5f6{background:#f4f5f6}.bg-fff{background:#fff}.m-r-4{margin-right:.10667rem}.m-t-6{margin-top:.16rem}.m-t-8{margin-top:.21333rem}.m-t-10{margin-top:.26667rem}.m-b-15{margin-bottom:.4rem}.padding-lr-12{padding:0 .32rem}.p-l-8{padding-left:.21333rem}.p-t-10{padding-top:.26667rem}.border-right-1{position:relative}.border-right-1:after{content:" ";position:absolute;right:0;top:0;width:.02667rem;height:100%;border-right:.02667rem solid #d9d9d9;color:#d9d9d9;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleX(.5);transform:scaleX(.5)}.border-left-1{position:relative}.border-left-1:after{content:" ";position:absolute;left:0;top:0;width:.02667rem;height:100%;border-left:.02667rem solid #d9d9d9;color:#d9d9d9;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleX(.5);transform:scaleX(.5)}.border-top-1{position:relative}.border-top-1:after{content:" ";position:absolute;left:0;top:0;width:100%;height:.02667rem;border-top:.02667rem solid #d5d5d6;color:#d5d5d6;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.border-bottom-1{position:relative}.border-bottom-1:after{content:" ";position:absolute;left:0;bottom:0;width:100%;height:.02667rem;border-top:.02667rem solid #d5d5d6;color:#d5d5d6;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.qrcode-mask{position:fixed;z-index:1;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.6)}.qrcode-dialog{position:fixed;z-index:13;width:70%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#fafafc;text-align:center;border-radius:.21333rem}.triangle-up{position:absolute;left:50%;margin-left:-.13333rem;width:0;height:0;border-left:.13333rem solid transparent;border-right:.13333rem solid transparent;border-bottom:.24rem solid #666}.no-data-contain{position:absolute;top:40%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;font-size:.42667rem;color:#848689}.no-data-contain img{width:2.13333rem;padding-bottom:.26667rem}
\ No newline at end of file
.template-wrap[data-v-065bbf0a]{width:100%;padding:0;margin:0;background-size:100% 100%}.template-wrap .el-icon-arrow-right[data-v-065bbf0a]{display:inline-block;width:.21333rem;height:.21333rem;border-top:.02667rem solid #ccc;border-right:.02667rem solid #ccc;-webkit-transform:rotate(45deg);transform:rotate(45deg);vertical-align:middle}.template-wrap .b-t-1[data-v-065bbf0a]{border-top:.02667rem solid #e4e7ed}.template-wrap .template-contain[data-v-065bbf0a]{width:100%;margin:0 auto}.template-wrap .template-head[data-v-065bbf0a]{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:2.13333rem}.template-wrap .template-head .flex-1[data-v-065bbf0a],.template-wrap .template-head[data-v-065bbf0a]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.template-wrap .template-head .flex-1[data-v-065bbf0a]{-webkit-flex:1;-moz-flex:1;-o-flex:1;-webkit-box-flex:1;flex:1}.template-wrap .template-head .flex-r[data-v-065bbf0a]{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.template-wrap .template-head .template-title-span[data-v-065bbf0a]{color:#fff;font-size:.8rem;padding-left:.48rem}.template-wrap .template-head .el-button--default.is-plain[data-v-065bbf0a]{background:hsla(0,0%,100%,0);color:#fff}.template-wrap .template-head .el-button--default.is-plain[data-v-065bbf0a]:hover{color:#1890ff}.template-wrap .template-body[data-v-065bbf0a]{width:100%;position:relative;overflow:hidden}.template-wrap .template-body .template-cell-m[data-v-065bbf0a]{width:100%;position:relative}.template-wrap .template-body .template-cell-m .view-content[data-v-065bbf0a]{position:relative}.template-wrap .template-body .drag-wrap[data-v-065bbf0a]{overflow-x:hidden;overflow-y:auto}.template-wrap .template-body .phone-container[data-v-065bbf0a]{margin-top:1.06667rem}.template-wrap .template-body .phone-view[data-v-065bbf0a]{background-size:100%;background-color:#f0eff4;width:100%;position:relative}.template-wrap .template-body .phone-show-content[data-v-065bbf0a]{width:100%;position:relative;overflow-y:auto}.template-wrap .template-body .opend-card-item[data-v-065bbf0a]{font-size:.37333rem;position:relative}.template-wrap .template-body .opend-card-item.sex[data-v-065bbf0a]:after{content:"";width:100%;height:100%;z-index:2;position:absolute;top:0;right:0;bottom:0;left:0}.template-wrap .template-body .opend-card-group-title[data-v-065bbf0a]{height:1.06667rem;line-height:1.06667rem;padding-left:.26667rem}.template-wrap .template-body .opend-card-item[data-v-065bbf0a]{height:1.22667rem;line-height:1.22667rem;background:#fff;border-bottom:.02667rem solid #e7e7eb}.template-wrap .template-body .phone-list-item[data-v-065bbf0a]{height:1.17333rem;line-height:1.17333rem;background:#fff;margin-bottom:.13333rem}.template-wrap .template-body .item-title[data-v-065bbf0a]{width:2.66667rem;float:left;padding-left:.26667rem}.template-wrap .template-body .filed-item[data-v-065bbf0a]{height:1.22667rem;width:100%;height:auto;background:#fff;position:relative;cursor:move;padding:0;margin:0;font-size:.32rem;color:#292929;box-sizing:border-box}.template-wrap .template-body .filed-item+.filed-item[data-v-065bbf0a]{margin-top:.13333rem}.template-wrap .template-body .filed-item+.filed-item.li-block[data-v-065bbf0a]{margin-top:.4rem}.template-wrap .template-body .filed-item .item-close[data-v-065bbf0a]{position:absolute;top:0;right:0;width:.48rem;height:.48rem;line-height:.48rem;text-align:center;background:#1890ff;color:#fff;font-size:.37333rem;font-weight:700;cursor:pointer;display:none;z-index:2}.template-wrap .template-body .filed-item.child-filed-item:hover .child-item-close[data-v-065bbf0a],.template-wrap .template-body .filed-item:hover .p-item-close[data-v-065bbf0a]{display:block}.template-wrap .template-body .block[data-v-065bbf0a]{background:#f0eff4}.template-wrap .template-body .block .block-head[data-v-065bbf0a]{width:100%;background:#f5f5f8;padding:0;height:.93333rem}.template-wrap .template-body .block .block-head .opencard-item-title[data-v-065bbf0a]{height:.93333rem;line-height:.93333rem}.template-wrap .template-body .block .drag-wrap[data-v-065bbf0a]{min-height:.66667rem}.template-wrap .template-body .opencard-drag[data-v-065bbf0a]{background:#fff;height:1.22667rem}.template-wrap .template-body .draged-item-show[data-v-065bbf0a]{display:inline-block;vertical-align:top;width:calc(100% - 2.66667rem)}.template-wrap .template-body .opencard-item-title[data-v-065bbf0a]{width:2.4rem;height:1.22667rem;line-height:1.22667rem;text-align:left;float:left;padding-left:.26667rem;overflow:hidden;white-space:nowrap;box-sizing:border-box}.template-wrap .template-body .opencard-item-title.title-pre-wrap[data-v-065bbf0a]{line-height:.4rem;word-break:break-all;white-space:pre-wrap;padding-top:.24rem}.template-wrap .template-body .show-warm-text[data-v-065bbf0a]{color:#c8c8cd;width:4.93333rem;text-align:left;display:inline-block;white-space:nowrap;height:1.22667rem;line-height:1.22667rem}.template-wrap .template-body .show-warm-text.select-flag[data-v-065bbf0a]{width:100%;text-align:right}.template-wrap .template-body .limit-w-340[data-v-065bbf0a] .el-input__inner{font-size:.32rem;color:#fff;background-color:hsla(0,0%,100%,.1)}.template-wrap .template-body .limit-w-340 .tip[data-v-065bbf0a]{color:hsla(0,0%,100%,.7)}
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,user-scalable=0"><meta name=screen-orientation content=portrait><meta name=apple-mobile-web-app-capable content=yes><meta name=format-detection content="telephone=no"><meta name=full-screen content=yes><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=renderer content=webkit><meta http-equiv=Pragma content=no-cache><meta http-equiv=Cache-Control content=no-cache><meta http-equiv=Expires content=0><meta name=x5-fullscreen content=true><meta content=yes name=apple-mobile-web-app-capable><meta content=yes name=apple-touch-fullscreen><meta content="telephone=no,email=no" name=format-detection><link rel="shortcut icon" href=./favicon.ico><title>好办 APP</title><link href=./static/css/app.31ac51b02c61dbf5877b94d6aa12cd0a.css rel=stylesheet></head><body style="background-color: #f0f2f5;width: 100%;"><div id=app></div><script type=text/javascript src=./static/js/manifest.402f31fbc5f103d5ca4b.js></script><script type=text/javascript src=./static/js/vendor.912df9dc36cd49585f11.js></script><script type=text/javascript src=./static/js/app.6dbbdcbb85feb53150b7.js></script></body></html> <!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel=icon href=favicon.ico><title>达摩</title><link href=css/chunk-1ee37e61.49d5e527.css rel=prefetch><link href=js/chunk-1ee37e61.ee33f334.js rel=prefetch><link href=js/chunk-2d0baaed.2ebda6d1.js rel=prefetch><link href=css/app.daa7ba22.css rel=preload as=style><link href=js/app.295ba73f.js rel=preload as=script><link href=js/chunk-vendors.09ec9b52.js rel=preload as=script><link href=css/app.daa7ba22.css rel=stylesheet></head><body><div id=app></div><script src=js/chunk-vendors.09ec9b52.js></script><script src=js/app.295ba73f.js></script></body></html>
\ No newline at end of file \ No newline at end of file
(function(e){function t(t){for(var r,o,s=t[0],u=t[1],c=t[2],d=0,l=[];d<s.length;d++)o=s[d],i[o]&&l.push(i[o][0]),i[o]=0;for(r in u)Object.prototype.hasOwnProperty.call(u,r)&&(e[r]=u[r]);f&&f(t);while(l.length)l.shift()();return a.push.apply(a,c||[]),n()}function n(){for(var e,t=0;t<a.length;t++){for(var n=a[t],r=!0,o=1;o<n.length;o++){var s=n[o];0!==i[s]&&(r=!1)}r&&(a.splice(t--,1),e=u(u.s=n[0]))}return e}var r={},o={app:0},i={app:0},a=[];function s(e){return u.p+"js/"+({}[e]||e)+"."+{"chunk-1ee37e61":"ee33f334","chunk-2d0baaed":"2ebda6d1"}[e]+".js"}function u(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,u),n.l=!0,n.exports}u.e=function(e){var t=[],n={"chunk-1ee37e61":1};o[e]?t.push(o[e]):0!==o[e]&&n[e]&&t.push(o[e]=new Promise(function(t,n){for(var r="css/"+({}[e]||e)+"."+{"chunk-1ee37e61":"49d5e527","chunk-2d0baaed":"31d6cfe0"}[e]+".css",i=u.p+r,a=document.getElementsByTagName("link"),s=0;s<a.length;s++){var c=a[s],d=c.getAttribute("data-href")||c.getAttribute("href");if("stylesheet"===c.rel&&(d===r||d===i))return t()}var l=document.getElementsByTagName("style");for(s=0;s<l.length;s++){c=l[s],d=c.getAttribute("data-href");if(d===r||d===i)return t()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=t,f.onerror=function(t){var r=t&&t.target&&t.target.src||i,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.request=r,delete o[e],f.parentNode.removeChild(f),n(a)},f.href=i;var p=document.getElementsByTagName("head")[0];p.appendChild(f)}).then(function(){o[e]=0}));var r=i[e];if(0!==r)if(r)t.push(r[2]);else{var a=new Promise(function(t,n){r=i[e]=[t,n]});t.push(r[2]=a);var c,d=document.createElement("script");d.charset="utf-8",d.timeout=120,u.nc&&d.setAttribute("nonce",u.nc),d.src=s(e),c=function(t){d.onerror=d.onload=null,clearTimeout(l);var n=i[e];if(0!==n){if(n){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src,a=new Error("Loading chunk "+e+" failed.\n("+r+": "+o+")");a.type=r,a.request=o,n[1](a)}i[e]=void 0}};var l=setTimeout(function(){c({type:"timeout",target:d})},12e4);d.onerror=d.onload=c,document.head.appendChild(d)}return Promise.all(t)},u.m=e,u.c=r,u.d=function(e,t,n){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},u.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,t){if(1&t&&(e=u(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(u.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)u.d(n,r,function(t){return e[t]}.bind(null,r));return n},u.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="",u.oe=function(e){throw console.error(e),e};var c=window["webpackJsonp"]=window["webpackJsonp"]||[],d=c.push.bind(c);c.push=t,c=c.slice();for(var l=0;l<c.length;l++)t(c[l]);var f=d;a.push([0,"chunk-vendors"]),n()})({0:function(e,t,n){e.exports=n("56d7")},"034f":function(e,t,n){"use strict";var r=n("64a9"),o=n.n(r);o.a},"4dcb":function(e,t,n){},"56d7":function(e,t,n){"use strict";n.r(t);n("cadf"),n("551c"),n("097d"),n("db4d"),n("5cfb");var r=n("2b0e"),o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{attrs:{id:"app"}},[n("router-view")],1)},i=[],a=(n("034f"),n("2877")),s={},u=Object(a["a"])(s,o,i,!1,null,null,null);u.options.__file="App.vue";var c=u.exports,d=n("2f62");r["a"].use(d["a"]);var l=new d["a"].Store({state:{bodyH:document.documentElement.clientHeight,reqLoading:!1,memberId:"ff80808163a6ab7a0163a6abd0710000"},mutations:{setReqLoading:function(e,t){e.reqLoading=t},setMemberId:function(e,t){e.memberId=t}},actions:{SetLoading:function(e,t){var n=e.commit;n("setReqLoading",t)},modifyMemberId:function(e,t){var n=e.commit;n("setMemberId",t)}}}),f=(n("ac6a"),n("8c4f"));r["a"].use(f["a"]);var p=[{path:"*",redirect:"/index"},{path:"/staffRecordsTemplate",name:"员工档案",component:function(){return n.e("chunk-1ee37e61").then(n.bind(null,"30a0"))},meta:{title:"员工档案"}},{name:"index",path:"/index",component:function(){return n.e("chunk-2d0baaed").then(n.bind(null,"37f9"))},meta:{title:"首页"}}];p.forEach(function(e){e.path=e.path||"/"+(e.name||"")});var m=new f["a"]({routes:p});m.beforeEach(function(e,t,n){var r=e.meta&&e.meta.title;r&&(document.title=r),n()});n("a342"),n("4dcb");var h=n("1368"),v=n.n(h),b=n("e814"),g=n.n(b),w=(n("28a5"),n("a481"),n("4917"),{}),y=[],_=navigator.userAgent,V=_.match(/(Android);?[\s\/]+([\d.]+)?/),k=_.match(/(iPad).*OS\s([\d_]+)/),E=_.match(/(iPod)(.*OS\s([\d_]+))?/),O=!k&&_.match(/(iPhone\sOS)\s([\d_]+)/);if(w.userAgent=_,w.ios=w.android=w.iphone=w.ipad=w.androidChrome=!1,V&&(w.os="android",w.osVersion=V[2],w.android=!0,w.androidChrome=_.toLowerCase().indexOf("chrome")>=0),(k||O||E)&&(w.os="ios",w.ios=!0),O&&!E&&(w.osVersion=O[2].replace(/_/g,"."),w.iphone=!0),k&&(w.osVersion=k[2].replace(/_/g,"."),w.ipad=!0),E&&(w.osVersion=E[3]?E[3].replace(/_/g,"."):null,w.iphone=!0),w.ios&&w.osVersion&&_.indexOf("Version/")>=0&&"10"===w.osVersion.split(".")[0]&&(w.osVersion=_.toLowerCase().split("version/")[1].split(" ")[0]),w.webView=(O||k||E)&&_.match(/.*AppleWebKit(?!.*Safari)/i),w.os&&(y.push(w.os,w.os+"-"+w.osVersion.split(".")[0],w.os+"-"+w.osVersion.replace(/\./g,"-")),"ios"===w.os))for(var x=g()(w.osVersion.split(".")[0],10),C=x-1;C>=6;C--)y.push("ios-gt-"+C);w.isWeixin=/MicroMessenger/i.test(_);var S=w;function P(e){if(window.WebViewJavascriptBridge)return e(window.WebViewJavascriptBridge);if(S.android)document.addEventListener("WebViewJavascriptBridgeReady",function(){e(WebViewJavascriptBridge)},!1);else{if(window.WVJBCallbacks)return window.WVJBCallbacks.push(e);window.WVJBCallbacks=[e];var t=document.createElement("iframe");t.style.display="none",t.src="https://__bridge_loaded__",document.documentElement.appendChild(t),setTimeout(function(){document.documentElement.removeChild(t)},0)}}var j={callhandler:function(e,t,n){P(function(r){r.callHandler(e,t,n)})},registerhandler:function(e,t){P(function(n){n.registerHandler(e,function(e,n){t(e,n)})})}};r["a"].prototype.$bridge=j,n("1368").polyfill(),v.a.polyfill(),new r["a"]({router:m,store:l,el:"#app",render:function(e){return e(c)}})},"64a9":function(e,t,n){},a342:function(e,t,n){}});
//# sourceMappingURL=app.295ba73f.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/App.vue?4241","webpack:///./src/App.vue?5086","webpack:///./src/App.vue","webpack:///./src/store/index.js","webpack:///./src/router.js","webpack:///./src/api/device.js","webpack:///./src/api/jsBridge.js","webpack:///./src/main.js"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","installedCssChunks","app","jsonpScriptSrc","p","chunk-1ee37e61","chunk-2d0baaed","exports","module","l","e","promises","cssChunks","Promise","resolve","reject","href","fullhref","existingLinkTags","document","getElementsByTagName","tag","dataHref","getAttribute","rel","existingStyleTags","linkTag","createElement","type","onload","onerror","event","request","target","src","err","Error","parentNode","removeChild","head","appendChild","then","installedChunkData","promise","onScriptComplete","script","charset","timeout","nc","setAttribute","clearTimeout","chunk","errorType","realSrc","error","undefined","setTimeout","all","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","oe","console","jsonpArray","window","oldJsonpFunction","slice","_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_index_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__","_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_index_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default","Appvue_type_template_id_6fd6c890_render","_vm","this","_h","$createElement","_c","_self","attrs","id","staticRenderFns","component","componentNormalizer","options","__file","App","Vue","use","Vuex","store","Store","state","bodyH","documentElement","clientHeight","reqLoading","memberId","mutations","setReqLoading","setMemberId","actions","SetLoading","_ref","flag","commit","modifyMemberId","_ref2","val","Router","routes","path","redirect","meta","title","forEach","route","router","beforeEach","to","from","next","device","classNames","ua","navigator","userAgent","android","match","ipad","ipod","iphone","ios","androidChrome","os","osVersion","toLowerCase","indexOf","replace","split","webView","major","parse_int_default","isWeixin","test","setupWebViewJavascriptBridge","callback","WebViewJavascriptBridge","addEventListener","WVJBCallbacks","WVJBIframe","style","display","jsBridge","callhandler","bridge","callHandler","registerhandler","registerHandler","responseCallback","$bridge","Bridge","require","polyfill","Es6Promise","el","render","h"],"mappings":"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","file":"js/app.295ba73f.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded CSS chunks\n \tvar installedCssChunks = {\n \t\t\"app\": 0\n \t}\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"js/\" + ({}[chunkId]||chunkId) + \".\" + {\"chunk-1ee37e61\":\"ee33f334\",\"chunk-2d0baaed\":\"2ebda6d1\"}[chunkId] + \".js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// mini-css-extract-plugin CSS loading\n \t\tvar cssChunks = {\"chunk-1ee37e61\":1};\n \t\tif(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);\n \t\telse if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {\n \t\t\tpromises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {\n \t\t\t\tvar href = \"css/\" + ({}[chunkId]||chunkId) + \".\" + {\"chunk-1ee37e61\":\"49d5e527\",\"chunk-2d0baaed\":\"31d6cfe0\"}[chunkId] + \".css\";\n \t\t\t\tvar fullhref = __webpack_require__.p + href;\n \t\t\t\tvar existingLinkTags = document.getElementsByTagName(\"link\");\n \t\t\t\tfor(var i = 0; i < existingLinkTags.length; i++) {\n \t\t\t\t\tvar tag = existingLinkTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\") || tag.getAttribute(\"href\");\n \t\t\t\t\tif(tag.rel === \"stylesheet\" && (dataHref === href || dataHref === fullhref)) return resolve();\n \t\t\t\t}\n \t\t\t\tvar existingStyleTags = document.getElementsByTagName(\"style\");\n \t\t\t\tfor(var i = 0; i < existingStyleTags.length; i++) {\n \t\t\t\t\tvar tag = existingStyleTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\");\n \t\t\t\t\tif(dataHref === href || dataHref === fullhref) return resolve();\n \t\t\t\t}\n \t\t\t\tvar linkTag = document.createElement(\"link\");\n \t\t\t\tlinkTag.rel = \"stylesheet\";\n \t\t\t\tlinkTag.type = \"text/css\";\n \t\t\t\tlinkTag.onload = resolve;\n \t\t\t\tlinkTag.onerror = function(event) {\n \t\t\t\t\tvar request = event && event.target && event.target.src || fullhref;\n \t\t\t\t\tvar err = new Error(\"Loading CSS chunk \" + chunkId + \" failed.\\n(\" + request + \")\");\n \t\t\t\t\terr.request = request;\n \t\t\t\t\tdelete installedCssChunks[chunkId]\n \t\t\t\t\tlinkTag.parentNode.removeChild(linkTag)\n \t\t\t\t\treject(err);\n \t\t\t\t};\n \t\t\t\tlinkTag.href = fullhref;\n\n \t\t\t\tvar head = document.getElementsByTagName(\"head\")[0];\n \t\t\t\thead.appendChild(linkTag);\n \t\t\t}).then(function() {\n \t\t\t\tinstalledCssChunks[chunkId] = 0;\n \t\t\t}));\n \t\t}\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\tvar error = new Error('Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')');\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","import mod from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&lang=css&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('router-view')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=6fd6c890&\"\nvar script = {}\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"App.vue\"\nexport default component.exports","import Vue from 'vue';\r\nimport Vuex from 'vuex';\r\n\r\nVue.use(Vuex);\r\n\r\nexport default new Vuex.Store({\r\n state: {\r\n bodyH: document.documentElement.clientHeight,\r\n reqLoading: false,\r\n memberId: 'ff80808163a6ab7a0163a6abd0710000'\r\n },\r\n mutations: {\r\n setReqLoading(state, data) {\r\n state.reqLoading = data;\r\n },\r\n setMemberId(state, data) {\r\n state.memberId = data;\r\n }\r\n },\r\n actions: {\r\n SetLoading({ commit }, flag) {\r\n commit('setReqLoading', flag);\r\n },\r\n modifyMemberId({ commit }, val) {\r\n commit('setMemberId', val);\r\n }\r\n }\r\n})\r\n","import Vue from 'vue';\nimport Router from 'vue-router';\n\nVue.use(Router);\n\nconst routes = [{\n path: '*',\n redirect: '/index'\n },\n {\n path: '/staffRecordsTemplate',\n name: '员工档案',\n component: () => import('./views/contacts/staffRecordsTemplate'),\n meta: {\n title: '员工档案'\n }\n },\n {\n name: 'index',\n path: '/index',\n component: () =>\n import ('./views/index'),\n meta: {\n title: '首页'\n }\n }\n];\n\n// add route path\nroutes.forEach(route => {\n route.path = route.path || '/' + (route.name || '');\n});\n\nconst router = new Router({\n /* mode: 'history',\n base: '/', */\n routes\n});\n\nrouter.beforeEach((to, from, next) => {\n const title = to.meta && to.meta.title;\n if (title) {\n document.title = title;\n }\n next();\n});\n\nexport {\n router\n};\n","\"use strict\";\nlet device = {};\nlet classNames = [];\nlet ua = navigator.userAgent;\n/* eslint-disable */\nlet android = ua.match(/(Android);?[\\s\\/]+([\\d.]+)?/);\nlet ipad = ua.match(/(iPad).*OS\\s([\\d_]+)/);\nlet ipod = ua.match(/(iPod)(.*OS\\s([\\d_]+))?/);\nlet iphone = !ipad && ua.match(/(iPhone\\sOS)\\s([\\d_]+)/);\n\ndevice.userAgent = ua;\ndevice.ios = device.android = device.iphone = device.ipad = device.androidChrome = false;\n\n// Android\nif (android) {\n device.os = 'android';\n device.osVersion = android[2];\n device.android = true;\n device.androidChrome = ua.toLowerCase().indexOf('chrome') >= 0;\n}\nif (ipad || iphone || ipod) {\n device.os = 'ios';\n device.ios = true;\n}\n// iOS\nif (iphone && !ipod) {\n device.osVersion = iphone[2].replace(/_/g, '.');\n device.iphone = true;\n}\nif (ipad) {\n device.osVersion = ipad[2].replace(/_/g, '.');\n device.ipad = true;\n}\nif (ipod) {\n device.osVersion = ipod[3] ? ipod[3].replace(/_/g, '.') : null;\n device.iphone = true;\n}\n// iOS 8+ changed UA\nif (device.ios && device.osVersion && ua.indexOf('Version/') >= 0) {\n if (device.osVersion.split('.')[0] === '10') {\n device.osVersion = ua.toLowerCase().split('version/')[1].split(' ')[0];\n }\n}\n\n// Webview\ndevice.webView = (iphone || ipad || ipod) && ua.match(/.*AppleWebKit(?!.*Safari)/i);\n\n\n// OS classes\nif (device.os) {\n classNames.push(device.os, device.os + '-' + device.osVersion.split('.')[0], device.os + '-' + device.osVersion.replace(/\\./g, '-'));\n if (device.os === 'ios') {\n var major = parseInt(device.osVersion.split('.')[0], 10);\n for (var i = major - 1; i >= 6; i--) {\n classNames.push('ios-gt-' + i);\n }\n }\n\n}\n\n// keng..\ndevice.isWeixin = /MicroMessenger/i.test(ua);\n\nexport default device;\n","import device from './device';\n/* eslint-disable */\nfunction setupWebViewJavascriptBridge(callback) {\n if (window.WebViewJavascriptBridge) {\n return callback(window.WebViewJavascriptBridge);\n }\n if (!!device.android) {\n document.addEventListener(\n 'WebViewJavascriptBridgeReady',\n function() {\n callback(WebViewJavascriptBridge)\n },\n false\n );\n return;\n }\n if (window.WVJBCallbacks) {\n return window.WVJBCallbacks.push(callback);\n }\n\n window.WVJBCallbacks = [callback];\n let WVJBIframe = document.createElement('iframe');\n WVJBIframe.style.display = 'none';\n WVJBIframe.src = 'https://__bridge_loaded__';\n document.documentElement.appendChild(WVJBIframe);\n setTimeout(() => {\n document.documentElement.removeChild(WVJBIframe);\n }, 0);\n}\n\nexport default {\n callhandler(name, data, callback) {\n setupWebViewJavascriptBridge(function(bridge) {\n bridge.callHandler(name, data, callback);\n })\n },\n registerhandler(name, callback) {\n setupWebViewJavascriptBridge(function(bridge) {\n bridge.registerHandler(name, function(data, responseCallback) {\n callback(data, responseCallback);\n })\n })\n }\n}\n","import 'babel-polyfill';\nimport 'amfe-flexible';\nimport Vue from 'vue';\nimport App from './App';\nimport store from './store/index'\nimport { router } from './router';\nimport './assets/font/iconfont.css';\nimport './assets/css/common.css';\nimport Es6Promise from 'es6-promise';\nimport Bridge from './api/jsBridge.js'\nVue.prototype.$bridge = Bridge\n\nrequire('es6-promise').polyfill();\nEs6Promise.polyfill();\n/* eslint-disable */\n// import VConsole from 'vconsole';\n// let vConsole = new VConsole();\n\nnew Vue({\n router,\n store,\n el: '#app',\n render: h => h(App)\n});\n"],"sourceRoot":""}
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1ee37e61"],{"168f":function(module,__webpack_exports__,__webpack_require__){"use strict";var F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_json_stringify__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("f499"),F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_json_stringify__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_json_stringify__WEBPACK_IMPORTED_MODULE_0__),F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("e814"),F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("ac6a"),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_array_sort__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("55dd"),core_js_modules_es6_array_sort__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_array_sort__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es6_array_iterator__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("cadf"),core_js_modules_es6_array_iterator__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es6_array_iterator__WEBPACK_IMPORTED_MODULE_4__),core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("551c"),core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_5__),core_js_modules_es7_promise_finally__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("097d"),core_js_modules_es7_promise_finally__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(core_js_modules_es7_promise_finally__WEBPACK_IMPORTED_MODULE_6__);__webpack_exports__["a"]={name:"staffRecordsTemplate",data:function(){return{bodyHeight:(document.documentElement.clientHeight||document.body.clientHeight)+"px",selectKey:"",baseInfo:[],jobInfo:[],selfInfo:[],eduInfo:[],contractInfo:[],contactInfo:[],personalInfo:[],defineInfo:[],currentIndex:0,currentChildKey:null,currentChildIndex:null,childIndex:0,tempaletDataList:[{fieldTemplateId:"b23057f563444b16b58247e340a424a9",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"基本信息",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"baseInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:0,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3,children:[{fieldTemplateId:"3eee3c3353414e2986fa13132bc5fb51",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"姓名",fieldEdited:0,isMust:0,fieldDescription:"请输入",fieldCode:"clerkName",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:0,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3},{fieldTemplateId:"3d582cf08e7442e397da587c46fdb82d",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"部门",fieldEdited:0,isMust:0,fieldDescription:"请输入",fieldCode:"groupName",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:0,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:1,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3},{fieldTemplateId:"3168545ac47844449fd669f9258552fd",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"手机号",fieldEdited:0,isMust:0,fieldDescription:"请输入",fieldCode:"clerkPhone",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:6,fieldOperations:{ruleContent:[],unit:"",fieldContent:[]},fixed:0,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:2,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3},{fieldTemplateId:"c14f91649d6146ef89dc3a48a8cebb09",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"邮箱",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"clerkEmail",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:"/^[A-Za-z\\d]+([-_.][A-Za-z\\d]+)*@([A-Za-z\\d]+[-.])+[A-Za-z\\d]{2,4}$/",status:1,sort:3,systemFlag:1,createTime:1550739689e3,updateTime:1550740247e3},{fieldTemplateId:"54d0b99864ac4fefafd3c37eb86b9886",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"单选框",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"k629157",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"选项1",type:"radio",key:"选项1"},{name:"选项2",type:"radio",key:"选项2"},{name:"选项3",type:"radio",key:"选项3"}]},fixed:0,minCount:null,maxCount:null,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:4,systemFlag:0,createTime:1550547876e3,updateTime:1550740247e3},{fieldTemplateId:"0727f6db9e6540f1bd74fcdab31aee70",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"code",fieldEdited:0,isMust:0,fieldDescription:"请输入",fieldCode:"clerkCode",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:0,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:5,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3},{fieldTemplateId:"7a165731592742b28084bbd3b0a10279",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"职位",fieldEdited:0,isMust:0,fieldDescription:"请输入",fieldCode:"positionName",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:0,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:6,systemFlag:1,createTime:1548397769e3,updateTime:1550740247e3},{fieldTemplateId:"c00939073a21485fb5c95ab32a35fb48",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"图片",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"k354922",parentCode:"baseInfo",parentFieldTemplateId:"b23057f563444b16b58247e340a424a9",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:0,minCount:null,maxCount:null,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:7,systemFlag:0,createTime:1548397769e3,updateTime:1550740247e3}]},{fieldTemplateId:"a698c1bbf483413b9f351eaebf248f2e",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"工作信息",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"jobInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3,children:[{fieldTemplateId:"a75b6072bfe1456aa47c840e6d227460",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"员工类型",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"clerkType",parentCode:"jobInfo",parentFieldTemplateId:"a698c1bbf483413b9f351eaebf248f2e",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"全职",type:"radio",key:"1"},{name:"兼职",type:"radio",key:"2"},{name:"外包",type:"radio",key:"3"},{name:"实习",type:"radio",key:"4"},{name:"无类型",type:"radio",key:"5"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"c1b1351a87824af2b35b06f6ed6b233c",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"员工状态",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"clerkStatus",parentCode:"jobInfo",parentFieldTemplateId:"a698c1bbf483413b9f351eaebf248f2e",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"正式",type:"radio",key:"1"},{name:"试用",type:"radio",key:"2"},{name:"无状态",type:"radio",key:"-1"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"e1ed067dde63441b9cc23420d9446672",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"转正日期",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"correctionDate",parentCode:"jobInfo",parentFieldTemplateId:"a698c1bbf483413b9f351eaebf248f2e",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:2,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"394c7c9d0d9f4be9a02ebb906521fd11",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"岗位职级",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"positionRank",parentCode:"jobInfo",parentFieldTemplateId:"a698c1bbf483413b9f351eaebf248f2e",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:3,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3}]},{fieldTemplateId:"032a365aa79e4256bd948be8da508979",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"个人信息",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"selfInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:2,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3,children:[{fieldTemplateId:"dfda308010664492b5841f72b8d645a9",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"身份证姓名",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"identifyName",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"acf404e5e11c4202b993767f125535b5",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"证件号码",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"identifyNo",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:6,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:"/^[1-9]\\d{5}(18|19|20)\\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx]$/",status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"b28d1851a5174002833f8b87e4f05b9d",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"性别",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"sex",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"男",type:"radio",key:"1"},{name:"女",type:"radio",key:"2"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:2,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"76a4410ef86b48d8addf86cb5aac842d",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"身份证地址",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"identifyAddr",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:1,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:3,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"5ff3759bb43d4662970b0631383f60c5",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"证件有效期",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"identifyEffectiveDate",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:4,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"3b68a3d2c39d4931a5a0e8f8ee79a1b0",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"户籍类型",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"birthPlaceType",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"本地城镇",type:"radio",key:"1"},{name:"本地农村",type:"radio",key:"2"},{name:"外地城镇(省内)",type:"radio",key:"3"},{name:"外地农村(省内)",type:"radio",key:"4"},{name:"外地城镇(省外)",type:"radio",key:"5"},{name:"外地农村(省外)",type:"radio",key:"6"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:5,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"acbdda147c48428fb73b96d1b9b9137b",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"住址",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"address",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:1,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:6,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"1d5af5b05acd49f689a0b87eeb2a6ea4",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"婚姻状况",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"maritalStatus",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"已婚",type:"radio",key:"1"},{name:"未婚",type:"radio",key:"2"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:7,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"5b9b61b63a4241739e2a0cf9cd57e0c6",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"首次参加工作时间",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"firstWorkDate",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:8,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"e9785f03df4a4c86b996fedd49044032",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"政治面貌",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"politicalStatus",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"团员",type:"radio",key:"1"},{name:"党员",type:"radio",key:"2"},{name:"群众",type:"radio",key:"3"},{name:"其他",type:"radio",key:"4"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:9,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"de792014fefe4e5f9f4be0b2d61691a9",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"银行卡号",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"bankNo",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:6,fieldOperations:{ruleContent:[],unit:"元",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:"/^([1-9]{1})(\\d{14}|\\d{18})$/",status:1,sort:10,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"a0c8e1e1a51d43d8b4c0f95aa7b6f75d",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"开户行",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"bankName",parentCode:"selfInfo",parentFieldTemplateId:"032a365aa79e4256bd948be8da508979",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:11,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3}]},{fieldTemplateId:"dd7d39d51ee14d039e7a884d1a308059",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"学历信息",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"eduInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:3,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3,children:[{fieldTemplateId:"9d2c6cd5b91143c9ba55c15bb103e397",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"毕业时间",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"graduateDate",parentCode:"eduInfo",parentFieldTemplateId:"dd7d39d51ee14d039e7a884d1a308059",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"5589132aac5649ac879bb22bbd446d3f",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"最高学历",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"highestEducation",parentCode:"eduInfo",parentFieldTemplateId:"dd7d39d51ee14d039e7a884d1a308059",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"初中",type:"radio",key:"1"},{name:"高中",type:"radio",key:"2"},{name:"中专",type:"radio",key:"3"},{name:"大专",type:"radio",key:"4"},{name:"本科",type:"radio",key:"5"},{name:"硕士",type:"radio",key:"6"},{name:"博士",type:"radio",key:"7"},{name:"其他",type:"radio",key:"8"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3}]},{fieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"合同信息",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"contractInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:4,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3,children:[{fieldTemplateId:"169b2ecc3db640629575b6414d2999ae",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"合同公司",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"contractCompany",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"2dfb36f981aa43ab8a15cc592694d606",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"合同类型",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"contractType",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"固定曲线劳动合同",type:"radio",key:"1"},{name:"无固定期限劳动合同",type:"radio",key:"2"},{name:"实习协议",type:"radio",key:"3"},{name:"劳务协议",type:"radio",key:"4"},{name:"劳务派遣合同",type:"radio",key:"5"},{name:"返聘协议",type:"radio",key:"6"},{name:"短期劳动合同",type:"radio",key:"7"},{name:"其他",type:"radio",key:"8"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"d65c9fec1a4a4c51bbcd3d787bcd7ea5",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"首次合同起始日",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"firstContractBeginDate",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:2,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"cfb17668d16543c085421220b8e4792e",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"首次合同到期日",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"firstContractEndDate",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:3,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"f122b859dc7e4e408ba84b128b8d376e",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"现合同起始日",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"currentContractBeginDate",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:4,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"314b6d715b1f4e3499c734fb1a4e8604",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"现合同到期日",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"currentContractEndDate",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:4,fieldOperations:{ruleContent:[{isEdit:1,name:"年-月-日",type:"radio",key:"yyyy-MM-dd"},{isEdit:1,name:"年-月",type:"radio",key:"yyyy-MM"}],typeValue:"yyyy-MM-dd",fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:5,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"0b4cc4fe0ae249949cb50a32156afdd2",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"合同期限",fieldEdited:1,isMust:0,fieldDescription:"请选择",fieldCode:"contractDateType",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:2,fieldOperations:{ruleContent:[],fieldContent:[{name:"无",type:"radio",key:"1"},{name:"6个月",type:"radio",key:"2"},{name:"12个月",type:"radio",key:"3"},{name:"24个月",type:"radio",key:"4"},{name:"36个月或以上",type:"radio",key:"5"}]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:6,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"07e0ab936aaa45d883b93964d77b6a5a",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"续签次数",fieldEdited:1,isMust:0,fieldDescription:"请输入",fieldCode:"contractRenewNum",parentCode:"contractInfo",parentFieldTemplateId:"e611425fb5604650bcdf3c3fe3ebf08f",fieldType:0,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:"/^[1-9]\\d*$/",status:1,sort:7,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3}]},{fieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"个人资料",fieldEdited:1,isMust:0,fieldDescription:"",fieldCode:"personalInfo",parentCode:"0",parentFieldTemplateId:"-1",fieldType:0,fieldOperations:{},fixed:0,minCount:null,maxCount:null,staffRecordsIds:[],regular:null,status:1,sort:5,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3,children:[{fieldTemplateId:"d020e9964841441d9e0f0a0796f7ba63",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"身份证(人像面)",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"identifyFrontImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:0,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"daf05ebf4e144e46b5ba75cbf871289c",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"身份证(国徽面)",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"identifyBackImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:1,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"1bade6be5e56420384456deeb7784638",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"学历证书",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"qualificationImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:2,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"f72694a3535840c380d393a565be08c9",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"学位证书",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"diplomaImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:3,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"de714d461f8d4313aa68246ab4995539",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"员工照片",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"clerkImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:4,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3},{fieldTemplateId:"8607dc02a525411f9e389ee512faf5ea",enterpriseId:"4bf4a6e2c27d456b988dc4cb274c2709",fieldName:"上家公司离职证明",fieldEdited:1,isMust:0,fieldDescription:"最多上传9张图片",fieldCode:"fireEvidenceImageUrl",parentCode:"personalInfo",parentFieldTemplateId:"e6d17e2c1898485fab0eaab37928b436",fieldType:7,fieldOperations:{ruleContent:[],fieldContent:[]},fixed:1,minCount:0,maxCount:100,staffRecordsIds:{staffVisible:"1",staffModify:"1"},regular:null,status:1,sort:5,systemFlag:1,createTime:1550740247e3,updateTime:1550740247e3}]}]}},methods:{changeRoute:function(e){this.$router.push(e)},treeData:function(e){var t=e.filter(function(t){var d=e.filter(function(e){return t.fieldCode==e.parentCode});return d.length>0&&(t.children=d),0==t.parentCode});return t.sort(function(e,t){return e.sort-t.sort}),t.forEach(function(e){e.children.sort(function(e,t){return e.sort-t.sort})}),t},handleGetInfo:function(e){var t=this,d=JSON.parse(e).result;d.forEach(function(e){e.fixed=1===F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1___default()(e.fixed),e.isMust=1===F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1___default()(e.isMust),e.fieldEdited=1===F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1___default()(e.fieldEdited),e.systemFlag=!0,e.fieldOperations=e.fieldOperations?JSON.parse(e.fieldOperations):{},e.staffRecordsIds=e.staffRecordsIds?JSON.parse(e.staffRecordsIds):[]}),t.tempaletDataList=t.treeData(d)}},mounted:function mounted(){var that=this,param={enterpriseId:that.$route.query.enterpriseId},method="getUserArchivesTempletContent",data={method:method,param:param};function appInvocationMethod(e){return{userId:"123456",name:"张琦"}}that.$bridge.callhandler("apiHandler",data,function(e){that.handleGetInfo(e)}),that.$bridge.registerhandler("jsHandler",function(data,responseCallback){var json=JSON.parse(data),method=json["method"],param=json["param"],paramStr=F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_json_stringify__WEBPACK_IMPORTED_MODULE_0___default()(param),evalMethod=method+"(paramStr)",result=eval(evalMethod);responseCallback(result)})}}},"24da":function(e,t,d){"use strict";var a=d("6757"),i=d.n(a);i.a},"30a0":function(e,t,d){"use strict";d.r(t);var a=function(){var e=this,t=e.$createElement,d=e._self._c||t;return d("div",{staticClass:"template-wrap",style:{height:e.bodyHeight}},[d("div",{staticClass:"template-contain"},[d("div",{staticClass:"template-body"},[d("div",{staticClass:"template-cell template-cell-m"},[d("div",{staticClass:"phone-view"},[d("div",{staticClass:"phone-show-content"},[d("div",{staticClass:"drag-show-content"},[d("div",{staticClass:"view-container"},[d("ul",{staticClass:"view-content",attrs:{id:"showPhoneView"}},[d("div",{staticClass:"drag-wrap"},e._l(e.tempaletDataList,function(t,a){return d("li",{key:t.fieldName+a,class:["filed-item",e.currentIndex==a?"active-item":"","li-block"]},[[d("div",{staticClass:"block"},[d("div",{staticClass:"block-head"},[d("div",{class:["opencard-item-title",t.fieldName.length>6?"block-pre-wrap":""]},[e._v(e._s(t.fieldName))])]),d("ul",{staticClass:"view-content"},[d("div",{class:["drag-wrap","block-wrap",t.fieldCode]},e._l(t.children,function(t,a){return d("li",{key:a,class:["filed-item","child-filed-item",e.currentChildKey==t.fieldCode&&e.currentChildIndex==a?"active-item":""]},[2==t.fieldType||3==t.fieldType||4==t.fieldType?d("div",[d("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),d("div",{staticClass:"draged-item-show"},[d("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldDescription)+" "),d("i",{staticClass:"el-icon-arrow-right"})])])]):e._e(),5==t.fieldType?d("div",[d("div",[d("div",{class:["opencard-item-title",t.fieldOperations.startName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldOperations.startName))]),d("div",{staticClass:"draged-item-show"},[d("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldOperations.startDescription)),d("i",{staticClass:"el-icon-arrow-right"})])])]),d("div",{staticClass:"b-t-1"},[d("div",{class:["opencard-item-title",t.fieldOperations.endName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldOperations.endName))]),d("div",{staticClass:"draged-item-show"},[d("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldOperations.endDescription)),d("i",{staticClass:"el-icon-arrow-right"})])])])]):e._e(),7==t.fieldType?d("div",[d("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),e._m(0,!0)]):e._e(),0==t.fieldType||1==t.fieldType||6==t.fieldType?d("div",[d("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),d("div",{staticClass:"draged-item-show"},[d("span",{staticClass:"show-warm-text show-warm-text-flag"},[e._v(e._s(t.fieldDescription))])])]):e._e()])}),0)])])]],2)}),0)])])])])])])])])])},i=[function(){var e=this,t=e.$createElement,d=e._self._c||t;return d("div",{staticClass:"draged-item-show"},[d("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[d("i",{staticClass:"iconfont icon-icon"})])])}],f=d("168f"),s=f["a"],l=(d("24da"),d("2877")),n=Object(l["a"])(s,a,i,!1,null,"065bbf0a",null);n.options.__file="staffRecordsTemplate.vue";t["default"]=n.exports},6757:function(e,t,d){},a21f:function(e,t,d){var a=d("584a"),i=a.JSON||(a.JSON={stringify:JSON.stringify});e.exports=function(e){return i.stringify.apply(i,arguments)}},f499:function(e,t,d){e.exports=d("a21f")}}]);
//# sourceMappingURL=chunk-1ee37e61.ee33f334.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///src/views/contacts/staffRecordsTemplate.vue","webpack:///./src/views/contacts/staffRecordsTemplate.vue?2ae2","webpack:///./src/views/contacts/staffRecordsTemplate.vue?e047","webpack:///./src/views/contacts/staffRecordsTemplate.vue?f63b","webpack:///./src/views/contacts/staffRecordsTemplate.vue","webpack:///./node_modules/core-js/library/fn/json/stringify.js","webpack:///./node_modules/@babel/runtime-corejs2/core-js/json/stringify.js"],"names":["__webpack_exports__","name","data","bodyHeight","document","documentElement","clientHeight","body","selectKey","baseInfo","jobInfo","selfInfo","eduInfo","contractInfo","contactInfo","personalInfo","defineInfo","currentIndex","currentChildKey","currentChildIndex","childIndex","tempaletDataList","fieldTemplateId","enterpriseId","fieldName","fieldEdited","isMust","fieldDescription","fieldCode","parentCode","parentFieldTemplateId","fieldType","fieldOperations","fixed","minCount","maxCount","staffRecordsIds","regular","status","sort","systemFlag","createTime","updateTime","children","ruleContent","fieldContent","staffVisible","staffModify","unit","type","key","isEdit","typeValue","methods","changeRoute","route","this","$router","push","treeData","tree","filter","father","branchArr","child","length","a","b","forEach","ele","handleGetInfo","result","that","JSON","parse","F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_parse_int__WEBPACK_IMPORTED_MODULE_1___default","mounted","param","$route","query","method","appInvocationMethod","userId","$bridge","callhandler","registerhandler","responseCallback","json","paramStr","F_gitlab_office_mobile_node_modules_babel_runtime_corejs2_core_js_json_stringify__WEBPACK_IMPORTED_MODULE_0___default","evalMethod","eval","_node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_staffRecordsTemplate_vue_vue_type_style_index_0_id_065bbf0a_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__","__webpack_require__","_node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_staffRecordsTemplate_vue_vue_type_style_index_0_id_065bbf0a_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default","n","render","_vm","_h","$createElement","_c","_self","staticClass","style","height","attrs","id","_l","item","index","class","_v","_s","childItem","ind","_e","startName","startDescription","endName","endDescription","_m","staticRenderFns","contacts_staffRecordsTemplatevue_type_script_lang_js_","staffRecordsTemplatevue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","core","$JSON","stringify","module","exports","it","apply","arguments"],"mappings":"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","file":"js/chunk-1ee37e61.ee33f334.js","sourcesContent":["<template>\n <div class=\"template-wrap\" :style=\"{ height: bodyHeight}\">\n <div class=\"template-contain\">\n <!-- 模板body -->\n <div class=\"template-body\">\n <!-- 中间 -->\n <div class=\"template-cell template-cell-m\">\n <div class=\"phone-view\">\n <div class=\"phone-show-content\">\n <!-- 拖拽展示区域 -->\n <div class=\"drag-show-content\">\n <div class=\"view-container\">\n <ul class=\"view-content\" id=\"showPhoneView\">\n <div class=\"drag-wrap\" >\n <li\n :class=\"['filed-item',currentIndex == index? 'active-item': '','li-block']\"\n v-for=\"(item,index) in tempaletDataList\"\n :key=\"item.fieldName+index\"\n >\n <template>\n <div class=\"block\">\n <div class=\"block-head\">\n <div :class=\"['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']\">{{item.fieldName}}</div>\n </div>\n <ul class=\"view-content\">\n <div :class=\"['drag-wrap','block-wrap',item.fieldCode]\">\n <li\n :class=\"['filed-item','child-filed-item',(currentChildKey == childItem.fieldCode && currentChildIndex == ind)? 'active-item': '']\"\n v-for=\"(childItem,ind) in item.children\"\n :key=\"ind\"\n >\n <!-- item -->\n <!-- 单择/多选/日期 -->\n <div v-if=\"(childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldDescription}} <i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n <!-- 日期区间 -->\n <div v-if=\"(childItem.fieldType == 5)\">\n <div>\n <div :class=\"['opencard-item-title',childItem.fieldOperations.startName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldOperations.startName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldOperations.startDescription}}<i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n <div class=\"b-t-1\">\n <div :class=\"['opencard-item-title',childItem.fieldOperations.endName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldOperations.endName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldOperations.endDescription}}<i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n </div>\n <!-- 图片 -->\n <div v-if=\"(childItem.fieldType == 7)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\"><i class=\"iconfont icon-icon\"></i></span>\n </div>\n </div>\n <!-- 单行/多行/数字输入框 -->\n <div v-if=\"(childItem.fieldType == 0 || childItem.fieldType == 1 || childItem.fieldType == 6)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\" >{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag\">{{childItem.fieldDescription}}</span>\n </div>\n </div>\n </li>\n </div>\n </ul>\n </div>\n </template>\n </li>\n </div>\n </ul>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nexport default {\n name: \"staffRecordsTemplate\",\n data() {\n return {\n bodyHeight: (document.documentElement.clientHeight || document.body.clientHeight) + 'px',\n selectKey: '',\n // 基本信息\n baseInfo: [],\n // 工作信息\n jobInfo: [],\n // 个人信息\n selfInfo: [],\n // 学历信息\n eduInfo: [],\n // 合同信息\n contractInfo: [],\n // 紧急联系人\n contactInfo: [],\n // 个人材料\n personalInfo: [],\n // 自定义\n defineInfo: [],\n // 中间数据集合\n currentIndex: 0, //当前选择的 item\n // children\n currentChildKey: null,\n currentChildIndex: null,\n childIndex: 0,\n tempaletDataList: [\n{\n \"fieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"基本信息\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"baseInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"3eee3c3353414e2986fa13132bc5fb51\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"姓名\",\n \"fieldEdited\": 0,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"clerkName\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"3d582cf08e7442e397da587c46fdb82d\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"部门\",\n \"fieldEdited\": 0,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"groupName\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"3168545ac47844449fd669f9258552fd\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"手机号\",\n \"fieldEdited\": 0,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"clerkPhone\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 6,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"unit\": \"\",\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"c14f91649d6146ef89dc3a48a8cebb09\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"邮箱\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"clerkEmail\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": \"/^[A-Za-z\\\\d]+([-_.][A-Za-z\\\\d]+)*@([A-Za-z\\\\d]+[-.])+[A-Za-z\\\\d]{2,4}$/\",\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550739689000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"54d0b99864ac4fefafd3c37eb86b9886\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"单选框\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"k629157\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"选项1\",\n \"type\": \"radio\",\n \"key\": \"选项1\"\n },\n {\n \"name\": \"选项2\",\n \"type\": \"radio\",\n \"key\": \"选项2\"\n },\n {\n \"name\": \"选项3\",\n \"type\": \"radio\",\n \"key\": \"选项3\"\n }]\n },\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 4,\n \"systemFlag\": 0,\n \"createTime\": 1550547876000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"0727f6db9e6540f1bd74fcdab31aee70\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"code\",\n \"fieldEdited\": 0,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"clerkCode\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 5,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"7a165731592742b28084bbd3b0a10279\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"职位\",\n \"fieldEdited\": 0,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"positionName\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 6,\n \"systemFlag\": 1,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"c00939073a21485fb5c95ab32a35fb48\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"图片\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"k354922\",\n \"parentCode\": \"baseInfo\",\n \"parentFieldTemplateId\": \"b23057f563444b16b58247e340a424a9\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 7,\n \"systemFlag\": 0,\n \"createTime\": 1548397769000,\n \"updateTime\": 1550740247000\n }]\n},\n{\n \"fieldTemplateId\": \"a698c1bbf483413b9f351eaebf248f2e\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"工作信息\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"jobInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"a75b6072bfe1456aa47c840e6d227460\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"员工类型\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"clerkType\",\n \"parentCode\": \"jobInfo\",\n \"parentFieldTemplateId\": \"a698c1bbf483413b9f351eaebf248f2e\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"全职\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"兼职\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"外包\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"实习\",\n \"type\": \"radio\",\n \"key\": \"4\"\n },\n {\n \"name\": \"无类型\",\n \"type\": \"radio\",\n \"key\": \"5\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"c1b1351a87824af2b35b06f6ed6b233c\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"员工状态\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"clerkStatus\",\n \"parentCode\": \"jobInfo\",\n \"parentFieldTemplateId\": \"a698c1bbf483413b9f351eaebf248f2e\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"正式\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"试用\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"无状态\",\n \"type\": \"radio\",\n \"key\": \"-1\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"e1ed067dde63441b9cc23420d9446672\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"转正日期\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"correctionDate\",\n \"parentCode\": \"jobInfo\",\n \"parentFieldTemplateId\": \"a698c1bbf483413b9f351eaebf248f2e\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"394c7c9d0d9f4be9a02ebb906521fd11\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"岗位职级\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"positionRank\",\n \"parentCode\": \"jobInfo\",\n \"parentFieldTemplateId\": \"a698c1bbf483413b9f351eaebf248f2e\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n }]\n},\n{\n \"fieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"个人信息\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"selfInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"dfda308010664492b5841f72b8d645a9\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"身份证姓名\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"identifyName\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"acf404e5e11c4202b993767f125535b5\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"证件号码\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"identifyNo\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 6,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": \"/^[1-9]\\\\d{5}(18|19|20)\\\\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\\\\d{3}[0-9Xx]$/\",\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"b28d1851a5174002833f8b87e4f05b9d\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"性别\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"sex\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"男\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"女\",\n \"type\": \"radio\",\n \"key\": \"2\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"76a4410ef86b48d8addf86cb5aac842d\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"身份证地址\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"identifyAddr\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 1,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"5ff3759bb43d4662970b0631383f60c5\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"证件有效期\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"identifyEffectiveDate\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 4,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"3b68a3d2c39d4931a5a0e8f8ee79a1b0\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"户籍类型\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"birthPlaceType\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"本地城镇\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"本地农村\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"外地城镇(省内)\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"外地农村(省内)\",\n \"type\": \"radio\",\n \"key\": \"4\"\n },\n {\n \"name\": \"外地城镇(省外)\",\n \"type\": \"radio\",\n \"key\": \"5\"\n },\n {\n \"name\": \"外地农村(省外)\",\n \"type\": \"radio\",\n \"key\": \"6\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 5,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"acbdda147c48428fb73b96d1b9b9137b\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"住址\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"address\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 1,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 6,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"1d5af5b05acd49f689a0b87eeb2a6ea4\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"婚姻状况\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"maritalStatus\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"已婚\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"未婚\",\n \"type\": \"radio\",\n \"key\": \"2\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 7,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"5b9b61b63a4241739e2a0cf9cd57e0c6\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"首次参加工作时间\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"firstWorkDate\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 8,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"e9785f03df4a4c86b996fedd49044032\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"政治面貌\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"politicalStatus\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"团员\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"党员\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"群众\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"其他\",\n \"type\": \"radio\",\n \"key\": \"4\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 9,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"de792014fefe4e5f9f4be0b2d61691a9\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"银行卡号\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"bankNo\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 6,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"unit\": \"元\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": \"/^([1-9]{1})(\\\\d{14}|\\\\d{18})$/\",\n \"status\": 1,\n \"sort\": 10,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"a0c8e1e1a51d43d8b4c0f95aa7b6f75d\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"开户行\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"bankName\",\n \"parentCode\": \"selfInfo\",\n \"parentFieldTemplateId\": \"032a365aa79e4256bd948be8da508979\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 11,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n }]\n},\n{\n \"fieldTemplateId\": \"dd7d39d51ee14d039e7a884d1a308059\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"学历信息\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"eduInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"9d2c6cd5b91143c9ba55c15bb103e397\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"毕业时间\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"graduateDate\",\n \"parentCode\": \"eduInfo\",\n \"parentFieldTemplateId\": \"dd7d39d51ee14d039e7a884d1a308059\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"5589132aac5649ac879bb22bbd446d3f\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"最高学历\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"highestEducation\",\n \"parentCode\": \"eduInfo\",\n \"parentFieldTemplateId\": \"dd7d39d51ee14d039e7a884d1a308059\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"初中\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"高中\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"中专\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"大专\",\n \"type\": \"radio\",\n \"key\": \"4\"\n },\n {\n \"name\": \"本科\",\n \"type\": \"radio\",\n \"key\": \"5\"\n },\n {\n \"name\": \"硕士\",\n \"type\": \"radio\",\n \"key\": \"6\"\n },\n {\n \"name\": \"博士\",\n \"type\": \"radio\",\n \"key\": \"7\"\n },\n {\n \"name\": \"其他\",\n \"type\": \"radio\",\n \"key\": \"8\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n }]\n},\n{\n \"fieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"合同信息\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"contractInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 4,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"169b2ecc3db640629575b6414d2999ae\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"合同公司\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"contractCompany\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"2dfb36f981aa43ab8a15cc592694d606\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"合同类型\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"contractType\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"固定曲线劳动合同\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"无固定期限劳动合同\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"实习协议\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"劳务协议\",\n \"type\": \"radio\",\n \"key\": \"4\"\n },\n {\n \"name\": \"劳务派遣合同\",\n \"type\": \"radio\",\n \"key\": \"5\"\n },\n {\n \"name\": \"返聘协议\",\n \"type\": \"radio\",\n \"key\": \"6\"\n },\n {\n \"name\": \"短期劳动合同\",\n \"type\": \"radio\",\n \"key\": \"7\"\n },\n {\n \"name\": \"其他\",\n \"type\": \"radio\",\n \"key\": \"8\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"d65c9fec1a4a4c51bbcd3d787bcd7ea5\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"首次合同起始日\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"firstContractBeginDate\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"cfb17668d16543c085421220b8e4792e\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"首次合同到期日\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"firstContractEndDate\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"f122b859dc7e4e408ba84b128b8d376e\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"现合同起始日\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"currentContractBeginDate\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 4,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"314b6d715b1f4e3499c734fb1a4e8604\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"现合同到期日\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"currentContractEndDate\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 4,\n \"fieldOperations\":\n {\n \"ruleContent\": [\n {\n \"isEdit\": 1,\n \"name\": \"年-月-日\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM-dd\"\n },\n {\n \"isEdit\": 1,\n \"name\": \"年-月\",\n \"type\": \"radio\",\n \"key\": \"yyyy-MM\"\n }],\n \"typeValue\": \"yyyy-MM-dd\",\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 5,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"0b4cc4fe0ae249949cb50a32156afdd2\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"合同期限\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请选择\",\n \"fieldCode\": \"contractDateType\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 2,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": [\n {\n \"name\": \"无\",\n \"type\": \"radio\",\n \"key\": \"1\"\n },\n {\n \"name\": \"6个月\",\n \"type\": \"radio\",\n \"key\": \"2\"\n },\n {\n \"name\": \"12个月\",\n \"type\": \"radio\",\n \"key\": \"3\"\n },\n {\n \"name\": \"24个月\",\n \"type\": \"radio\",\n \"key\": \"4\"\n },\n {\n \"name\": \"36个月或以上\",\n \"type\": \"radio\",\n \"key\": \"5\"\n }]\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 6,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"07e0ab936aaa45d883b93964d77b6a5a\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"续签次数\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"请输入\",\n \"fieldCode\": \"contractRenewNum\",\n \"parentCode\": \"contractInfo\",\n \"parentFieldTemplateId\": \"e611425fb5604650bcdf3c3fe3ebf08f\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": \"/^[1-9]\\\\d*$/\",\n \"status\": 1,\n \"sort\": 7,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n }]\n},\n{\n \"fieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"个人资料\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"\",\n \"fieldCode\": \"personalInfo\",\n \"parentCode\": \"0\",\n \"parentFieldTemplateId\": \"-1\",\n \"fieldType\": 0,\n \"fieldOperations\":\n {},\n \"fixed\": 0,\n \"minCount\": null,\n \"maxCount\": null,\n \"staffRecordsIds\": [],\n \"regular\": null,\n \"status\": 1,\n \"sort\": 5,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000,\n \"children\": [\n {\n \"fieldTemplateId\": \"d020e9964841441d9e0f0a0796f7ba63\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"身份证(人像面)\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"identifyFrontImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 0,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"daf05ebf4e144e46b5ba75cbf871289c\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"身份证(国徽面)\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"identifyBackImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 1,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"1bade6be5e56420384456deeb7784638\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"学历证书\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"qualificationImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 2,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"f72694a3535840c380d393a565be08c9\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"学位证书\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"diplomaImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 3,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"de714d461f8d4313aa68246ab4995539\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"员工照片\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"clerkImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 4,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n },\n {\n \"fieldTemplateId\": \"8607dc02a525411f9e389ee512faf5ea\",\n \"enterpriseId\": \"4bf4a6e2c27d456b988dc4cb274c2709\",\n \"fieldName\": \"上家公司离职证明\",\n \"fieldEdited\": 1,\n \"isMust\": 0,\n \"fieldDescription\": \"最多上传9张图片\",\n \"fieldCode\": \"fireEvidenceImageUrl\",\n \"parentCode\": \"personalInfo\",\n \"parentFieldTemplateId\": \"e6d17e2c1898485fab0eaab37928b436\",\n \"fieldType\": 7,\n \"fieldOperations\":\n {\n \"ruleContent\": [],\n \"fieldContent\": []\n },\n \"fixed\": 1,\n \"minCount\": 0,\n \"maxCount\": 100,\n \"staffRecordsIds\":\n {\n \"staffVisible\": \"1\",\n \"staffModify\": \"1\"\n },\n \"regular\": null,\n \"status\": 1,\n \"sort\": 5,\n \"systemFlag\": 1,\n \"createTime\": 1550740247000,\n \"updateTime\": 1550740247000\n }]\n}],\n }\n },\n methods: {\n /**\n * 路由跳转\n */\n changeRoute(route) {\n this.$router.push(route);\n },\n\n /**\n * 简单数组-->父子数组对象\n */\n treeData(data){\n let tree = data.filter((father)=>{ //循环所有项\n let branchArr = data.filter((child)=>{\n return father.fieldCode == child.parentCode; //返回每一项的子级数组\n });\n if(branchArr.length>0){\n father.children = branchArr; //如果存在子级,则给父级添加一个children属性,并赋值\n }\n return father.parentCode == 0; //返回第一层\n });\n // 排序\n tree.sort(function(a,b){\n return a.sort - b.sort;\n })\n\n tree.forEach(function(ele){\n ele.children.sort(function(a, b){\n return a.sort - b.sort;\n })\n })\n return tree;\n },\n\n /**\n * 处理已存配置信息\n */\n handleGetInfo(result) {\n const that = this;\n let data = JSON.parse(result).result\n data.forEach(function(ele){\n ele.fixed = parseInt(ele.fixed) === 1? true : false;\n ele.isMust = parseInt(ele.isMust) === 1? true : false;\n ele.fieldEdited = parseInt(ele.fieldEdited) === 1? true : false;\n ele.systemFlag = true;\n /* eslint-disable */\n ele.fieldOperations = !!ele.fieldOperations? JSON.parse(ele.fieldOperations): {};\n ele.staffRecordsIds = !!ele.staffRecordsIds? JSON.parse(ele.staffRecordsIds): [];\n })\n // console.log(JSON.stringify(that.treeData(data)))\n that.tempaletDataList = that.treeData(data)\n },\n },\n mounted() {\n const that = this;\n // js 调用客户端方法\n let param = {'enterpriseId': that.$route.query.enterpriseId};\n let method = \"getUserArchivesTempletContent\";\n let data = { 'method': method, 'param': param };\n that.$bridge.callhandler('apiHandler', data, (data) => {\n // 处理返回数据\n // console.log(data);\n that.handleGetInfo(data);\n })\n that.$bridge.registerhandler('jsHandler', (data, responseCallback) => {\n let json = JSON.parse(data);\n let method = json['method'];\n let param = json['param'];\n /* eslint-disable */\n let paramStr = JSON.stringify(param);\n let evalMethod = method + \"(paramStr)\";\n let result = eval(evalMethod);\n responseCallback(result);\n })\n /* eslint-disable */\n function appInvocationMethod(param) {\n return {'userId': '123456','name':'张琦'};\n }\n }\n}\n</script>\n<style type=\"text/less\" lang=\"less\" scoped>\n.template-wrap {\n width: 100%;\n padding: 0;\n margin: 0;\n background-size: 100% 100%;\n\n .el-icon-arrow-right {\n display: inline-block;\n width: 8px;\n height: 8px;\n border-top: 1px solid #ccc;\n border-right: 1px solid #ccc;\n transform: rotate(45deg);\n vertical-align: middle;\n }\n\n .b-t-1 {\n border-top: 1px solid #E4E7ED;\n }\n\n .template-contain {\n width: 100%;\n margin: 0 auto;\n }\n\n .template-head {\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n justify-content: space-between;\n height: 80px;\n align-items: center;\n\n .flex-1 {\n -webkit-flex: 1;\n -moz-flex: 1;\n -ms-flex: 1;\n -o-flex: 1;\n flex: 1;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n align-items: center;\n }\n\n .flex-r {\n justify-content: flex-end;\n }\n\n .template-title-span {\n color: #fff;\n font-size: 30px;\n padding-left: 18px;\n }\n\n .el-button--default.is-plain {\n background: rgba(255,255,255, 0);\n color: #fff;\n &:hover{\n color: #1890ff;\n }\n }\n }\n\n .template-body {\n width: 100%;\n position: relative;\n overflow: hidden;\n\n /* 中间 */\n /* 模板 */\n .template-cell-m {\n width: 100%;\n position: relative;\n\n .view-content {\n position: relative;\n }\n }\n\n .drag-wrap {\n overflow-x: hidden;\n overflow-y: auto;\n }\n .phone-container{\n margin-top:40px;\n }\n .phone-view{\n background-size: 100%;\n background-color: #f0eff4;\n width: 100%;\n position: relative;\n }\n\n .phone-show-content{\n width: 100%;\n position:relative;\n overflow-y: auto;\n }\n\n .opend-card-item {\n height: 46px;\n line-height: 46px;\n background: #fff;\n border-bottom: 1px solid #e7e7eb;\n font-size: 14px;\n position: relative;\n\n &.sex::after {\n content: '';\n width: 100%;\n height: 100%;\n z-index: 2;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n }\n\n .opend-card-group-title {\n height: 40px;\n line-height: 40px;\n padding-left: 10px;\n }\n\n .opend-card-item {\n height: 46px;\n line-height: 46px;\n background: #fff;\n border-bottom: 1px solid #e7e7eb;\n }\n\n .phone-list-item{\n height:44px;\n line-height:44px;\n background: #fff;\n margin-bottom:5px;\n }\n\n .item-title {\n width: 100px;\n float: left;\n padding-left: 10px;\n }\n\n .filed-item {\n background: #fff;\n height: 46px;\n width: 100%;\n height: auto;\n background: #fff;\n position: relative;\n cursor: move;\n padding: 0px;\n margin: 0;\n font-size: 12px;\n color: #292929;\n\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n\n &+.filed-item {\n margin-top: 5px;\n\n &.li-block {\n margin-top: 15px\n }\n }\n /*删除*/\n .item-close {\n position: absolute;\n top: 0;\n right: 0;\n width: 18px;\n height: 18px;\n line-height: 18px;\n text-align: center;\n background: #1890ff;\n color: #fff;\n font-size: 14px;\n font-weight: 700;\n cursor: pointer;\n display: none;\n z-index: 2;\n }\n &:hover{\n .p-item-close {\n display: block;\n }\n }\n\n &.child-filed-item {\n &:hover {\n .child-item-close {\n display: block;\n }\n }\n }\n }\n /* 组块 */\n .block {\n background: #f0eff4;\n .block-head {\n width: 100%;\n background: #f5f5f8;\n padding: 0;\n height: 35px;\n\n .opencard-item-title {\n height: 35px;\n line-height: 35px;\n }\n }\n .drag-wrap {\n min-height: 25px;\n }\n }\n\n .opencard-drag {\n background: #fff;\n height: 46px;\n }\n\n .draged-item-show {\n display: inline-block;\n vertical-align: top;\n width: calc(100% - 100px);\n }\n\n .opencard-item-title{\n width: 90px;\n height: 46px;\n line-height: 46px;\n text-align: left;\n float: left;\n padding-left: 10px;\n overflow: hidden;\n white-space: nowrap;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n &.title-pre-wrap {\n line-height: 15px;\n word-break: break-all;\n white-space: pre-wrap;\n padding-top: 9px;\n }\n }\n\n .show-warm-text{\n color:#C8C8CD;\n width:185px;\n text-align: left;\n display:inline-block;\n white-space: nowrap;\n height:46px;\n line-height:46px;\n\n &.select-flag {\n width: 100%;\n text-align: right;\n }\n }\n\n .limit-w-340 {\n /deep/ .el-input__inner {\n font-size: 12px;\n color: #fff;\n background-color: rgba(255,255,255,.1);\n }\n\n .tip {\n color: rgba(255,255,255,0.7);\n }\n }\n }\n}\n</style>\n","import mod from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--10-oneOf-1-0!../../../node_modules/css-loader/index.js??ref--10-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--10-oneOf-1-2!../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./staffRecordsTemplate.vue?vue&type=style&index=0&id=065bbf0a&lang=less&scoped=true&\"; export default mod; export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--10-oneOf-1-0!../../../node_modules/css-loader/index.js??ref--10-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--10-oneOf-1-2!../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./staffRecordsTemplate.vue?vue&type=style&index=0&id=065bbf0a&lang=less&scoped=true&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"template-wrap\",style:({ height: _vm.bodyHeight})},[_c('div',{staticClass:\"template-contain\"},[_c('div',{staticClass:\"template-body\"},[_c('div',{staticClass:\"template-cell template-cell-m\"},[_c('div',{staticClass:\"phone-view\"},[_c('div',{staticClass:\"phone-show-content\"},[_c('div',{staticClass:\"drag-show-content\"},[_c('div',{staticClass:\"view-container\"},[_c('ul',{staticClass:\"view-content\",attrs:{\"id\":\"showPhoneView\"}},[_c('div',{staticClass:\"drag-wrap\"},_vm._l((_vm.tempaletDataList),function(item,index){return _c('li',{key:item.fieldName+index,class:['filed-item',_vm.currentIndex == index? 'active-item': '','li-block']},[[_c('div',{staticClass:\"block\"},[_c('div',{staticClass:\"block-head\"},[_c('div',{class:['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']},[_vm._v(_vm._s(item.fieldName))])]),_c('ul',{staticClass:\"view-content\"},[_c('div',{class:['drag-wrap','block-wrap',item.fieldCode]},_vm._l((item.children),function(childItem,ind){return _c('li',{key:ind,class:['filed-item','child-filed-item',(_vm.currentChildKey == childItem.fieldCode && _vm.currentChildIndex == ind)? 'active-item': '']},[((childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldDescription)+\" \"),_c('i',{staticClass:\"el-icon-arrow-right\"})])])]):_vm._e(),((childItem.fieldType == 5))?_c('div',[_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldOperations.startName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldOperations.startName))]),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldOperations.startDescription)),_c('i',{staticClass:\"el-icon-arrow-right\"})])])]),_c('div',{staticClass:\"b-t-1\"},[_c('div',{class:['opencard-item-title',childItem.fieldOperations.endName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldOperations.endName))]),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldOperations.endDescription)),_c('i',{staticClass:\"el-icon-arrow-right\"})])])])]):_vm._e(),((childItem.fieldType == 7))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_vm._m(0,true)]):_vm._e(),((childItem.fieldType == 0 || childItem.fieldType == 1 || childItem.fieldType == 6))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag\"},[_vm._v(_vm._s(childItem.fieldDescription))])])]):_vm._e()])}),0)])])]],2)}),0)])])])])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_c('i',{staticClass:\"iconfont icon-icon\"})])])}]\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./staffRecordsTemplate.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./staffRecordsTemplate.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./staffRecordsTemplate.vue?vue&type=template&id=065bbf0a&scoped=true&\"\nimport script from \"./staffRecordsTemplate.vue?vue&type=script&lang=js&\"\nexport * from \"./staffRecordsTemplate.vue?vue&type=script&lang=js&\"\nimport style0 from \"./staffRecordsTemplate.vue?vue&type=style&index=0&id=065bbf0a&lang=less&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"065bbf0a\",\n null\n \n)\n\ncomponent.options.__file = \"staffRecordsTemplate.vue\"\nexport default component.exports","var core = require('../../modules/_core');\nvar $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });\nmodule.exports = function stringify(it) { // eslint-disable-line no-unused-vars\n return $JSON.stringify.apply($JSON, arguments);\n};\n","module.exports = require(\"core-js/library/fn/json/stringify\");"],"sourceRoot":""}
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0baaed"],{"37f9":function(n,e,t){"use strict";t.r(e);var a=function(){var n=this,e=n.$createElement,t=n._self._c||e;return t("div",{staticClass:"index-contain"})},c=[],i=(t("cadf"),t("551c"),t("097d"),{data:function(){return{}}}),u=i,s=t("2877"),d=Object(s["a"])(u,a,c,!1,null,null,null);d.options.__file="index.vue";e["default"]=d.exports}}]);
//# sourceMappingURL=chunk-2d0baaed.2ebda6d1.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/views/index/index.vue?36a9","webpack:///src/views/index/index.vue","webpack:///./src/views/index/index.vue?66f8","webpack:///./src/views/index/index.vue"],"names":["render","_vm","this","_h","$createElement","_c","_self","staticClass","staticRenderFns","indexvue_type_script_lang_js_","data","views_indexvue_type_script_lang_js_","component","Object","componentNormalizer","options","__file","__webpack_exports__"],"mappings":"yHAAA,IAAAA,EAAA,WAA0B,IAAAC,EAAAC,KAAaC,EAAAF,EAAAG,eAA0BC,EAAAJ,EAAAK,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,mBAC1GC,EAAA,GCOAC,iCAAA,CAEAC,KAFA,WAGA,YCX8VC,EAAA,cCO9VC,EAAgBC,OAAAC,EAAA,KAAAD,CACdF,EACAX,EACAQ,GACF,EACA,KACA,KACA,MAIAI,EAAAG,QAAAC,OAAA,YACeC,EAAA,WAAAL","file":"js/chunk-2d0baaed.2ebda6d1.js","sourcesContent":["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"index-contain\"})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <div class=\"index-contain\">\n\n </div>\n</template>\n\n<script>\n\nexport default {\n\n data() {\n return {}\n\n }\n\n};\n</script>\n\n<style lang=\"less\">\n\n</style>\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=4a2975a8&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"index.vue\"\nexport default component.exports"],"sourceRoot":""}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
@import './public.css';
.arrowico{
position: absolute;
transition: all .5s;
.icoposition(0px,25px);
}
.icoposition(@right: right,@top: top){
right: @right;
top: @top;
}
.user-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
/deep/ .el-input {
width: 260px;
}
}
.pass-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
}
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* custom */
a {
color: #7e8c8d;
text-decoration: none;
-webkit-backface-visibility: hidden;
}
.a-href {
color: #409EFF;
cursor: pointer;
}
li {
list-style: none;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
/*background: #e4e7ed;*/
/*background-color: rgba(0, 0, 0, 0.1)*/
}
::-webkit-scrollbar-track {
/*background: #f5f7fa;*/
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
/*background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;*/
}
::-webkit-scrollbar-thumb {
background: #c0c4cc;
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.1)
}
@-moz-document url-prefix(http: //),url-prefix(https://) {
/* 滚动条颜色 */
scrollbar {
-moz-appearance: none !important;
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* 滚动条按钮颜色 */
thumb, scrollbarbutton {
-moz-appearance: none !important;
}
/* 鼠标悬停时按钮颜色 */
thumb:hover, scrollbarbutton:hover {
-moz-appearance: none !important;
}
/* 隐藏上下箭头 */
scrollbarbutton {
display: none !important;
}
/* 纵向滚动条宽度 */
scrollbar[orient="vertical"] {
/*min-width: 15px !important;*/
}
}
scrollbar {
/* clear useragent default style*/
-moz-appearance: none !important;
}
/* buttons at two ends */
scrollbarbutton {
-moz-appearance: none !important;
}
/* the sliding part*/
thumb {
-moz-appearance: none !important;
}
scrollcorner {
-moz-appearance: none !important;
resize: both;
}
/* vertical or horizontal */
scrollbar[orient="vertical"] {
color: silver;
}
-moz-scrollbar-track {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-face {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-arrow {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar {
-moz-scrollbar-width: 15px;
-moz-scrollbar-border: 1px solid black;
-moz-scrollbar-background-color: white;
-moz-scrollbar-track-background-color: silver;
-moz-scrollbar-arrow-background-color: silver;
-moz-scrollbar-arrow-color: blue;
}
/*::-webkit-scrollbar-button {
color: #c8cbd3;
}*/
html,
body {
width: 100%;
min-height: 100%;
height: 100%;
/*background-color: #ffffff;*/
background-color: #f0f2f5;
}
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:focus {
box-shadow: none;
outline: none;
}
.btn-default {
color: #333;
border: 1px solid #ddd;
background-color: #f7f7f7;
cursor: pointer;
}
.btn {
font-size: 12px;
border-radius: 2px;
padding: 8px 16px;
height: 32px;
line-height: 14px;
}
.btn-new {
color: #333;
border: 1px solid #fede29;
background-color: #fede29;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before, .clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.inline-block {
display: inline-block;
}
.m-l-16 {
margin-left: 16px;
}
.m-t-10 {
margin-top: 10px;
}
.m-t-30 {
margin-top: 30px;
}
.m-r-10 {
margin-right: 10px;
}
.font-0 .el-form-item__content, .dialog-footer {
font-size: 0;
}
/* 公共 body 内的 left 和 right */
.common-wrap__left {
width: 260px;
height: 690px;
vertical-align: top;
font-size: 14px;
background: rgba(238,241,248,1);
border-radius: 2px;
}
.common-wrap__right {
width: calc(100% - 260px);
min-height: 690px;
padding: 24px;
vertical-align: top;
font-size: 14px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.pagewrap {
margin: 20px 0;
text-align: right;
}
.dialogwrap {
position: relative;
}
.dialogwrap:before {
position: absolute;
left: -20px;
top: -20px;
right: -20px;
content: '';
border-bottom: 1px solid #dedede;
}
.dialogcontent {
padding: 0 10px;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: rgb(250, 255, 189);
/* #FAFFBD; */
background-image: none;
color: rgb(0, 0, 0);
}
.el-table th {
background: #f1f3f7 !important;
}
.slide-fade-enter-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-leave-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to {
opacity: 0;
}
/* 丹 新加*/
#app, #index, #content {
height: 100%;
}
/* table 的表头 -- 背景色 */
.el-table thead tr, .el-table thead th {
background: #f1f3f7;
}
/* 面包屑 */
.breadcrumb {
padding: 24px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 -1px 10px #dfdfdf;
}
.breadcrumb .breadcrumb-title {
margin: 30px 0 10px 0;
font-size: 20px;
}
/*有侧边栏的 右侧 */
.content-wrap {
height: 100%;
display: flex;
}
.content-wrap .right-wrap {
width: 100%;
box-sizing: border-box;
height: 100%;
overflow-y: auto;
}
.content-wrap .right-wrap .right-content {
padding: 24px;
}
.content-wrap .right-wrap .right-content .right-box {
background: #fff;
padding: 24px;
}
/* 无侧边栏的底部 */
.bottom-wrap {
padding: 24px;
color: #606266;
font-size: 14px;
}
.bottom-content-wrap {
/*background: #fff;
padding: 24px;*/
}
/*提示文字*/
.tip-text {
font-size: 12px;
color: #909399;
position: absolute;
bottom: -30px;
}
.el-form .el-form-item.is-success .el-input__inner, .el-form .el-form-item.is-success .el-input__inner:focus, .el-form .el-form-item.is-success .el-textarea__inner, .el-form .el-form-item.is-success .el-textarea__inner:focus {
border-color: #dcdfe6;
}
/* 开卡模板 */
.template-cell-r .el-input.is-disabled .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255, 255, 255, .1);
}
.el-button--text.m-l-10 {
margin-left: 10px;
}
.task-public .el-tabs .el-tabs__header {
margin: 0;
padding-left: 24px;
border-bottom: 1px solid #e4e7ed;
background: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 头部 */
.user-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.user-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
.pass-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.pass-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
/* 左侧菜单 */
.leftBar-wrap .el-menu {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item .el-submenu__title, .leftBar-wrap .cardmenu-item .el-menu-item, .leftBar-wrap .cardmenu-item .el-submenu .el-menu-item {
height: 40px;
line-height: 40px;
}
.leftBar-wrap .el-submenu__title:hover {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu .el-menu-item:hover label {
/*background-color: #1890ff;*/
color: #fff;
cursor: pointer;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title i {
color: #fff;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title span {
color: #fff;
}
.el-menu.el-menu--popup .el-menu-item.is-active label {
color: #fff;
}
/* 百分号 */
.percent-item .el-input-group__append {
padding: 0 12px;
}
/* table lable*/
.table-label .el-form-item__label {
line-height: 48px;
}
@base-color: #353944;
@hover-color: #3c92eb;
@hoverbg-color: #20242d;
@main-color: #1890ff;
@navbgcolor: #04143a;
@sidebgcolor: #343c4c;
@userinfobgcolor: #ecf5ff;
@contentbgcolor: #f5f7fa;
@bordercolor: #dcdfe6;
@customnavcolor: #04143a;
@btnbgcolor: #f5f7fa;
@iconbgcolor: #e6e9f2;
.flex1(@width,@height) {
flex: 0 0 @width;
width: @width;
height: @height;
}
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st0" d="M80.9,159.3c0,50.2,40.7,90.9,90.9,90.9s90.9-40.7,90.9-90.9l0,0c0-50.2-40.7-90.9-90.9-90.9
C121.6,68.3,80.9,109,80.9,159.3C80.9,159.2,80.9,159.3,80.9,159.3z"/>
<path class="st1" d="M96.3,264.2c-0.9,0-2,0-2.8-0.1l0.3-2.7c1.6,0.1,3.3,0.1,5.1,0l0.1,2.7C98,264.1,97.1,264.2,96.3,264.2z
M104.3,263.4l-0.4-2.7c1.6-0.3,3.3-0.7,5.1-1.1l0.7,2.5C107.9,262.8,106,263.2,104.3,263.4z M87.8,263c-1.9-0.5-3.6-1.3-5.2-2.3
l1.3-2.3c1.3,0.8,2.9,1.5,4.5,2L87.8,263L87.8,263z M114.8,260.6l-0.8-2.5c1.6-0.5,3.3-1.2,4.9-1.9l0.9,2.5
C118.2,259.6,116.6,260.1,114.8,260.6z M78.2,257.1c-1.2-1.3-2.3-2.9-3.2-4.7l2.4-1.2c0.8,1.5,1.7,2.9,2.8,4.1L78.2,257.1z
M125,256.7l-1.1-2.4c1.6-0.7,3.2-1.5,4.8-2.3l1.2,2.4C128.2,255.3,126.5,255.9,125,256.7z M134.6,251.9l-1.2-2.4
c1.5-0.8,3.1-1.7,4.7-2.5l1.3,2.3C137.7,250.2,136.1,251.1,134.6,251.9z M72.9,247.3c-0.5-1.7-0.9-3.5-1.2-5.5l2.7-0.4
c0.3,1.7,0.7,3.5,1.1,5.1L72.9,247.3L72.9,247.3z M144,246.6l-1.3-2.3c1.5-0.9,2.9-1.9,4.5-2.8l1.5,2.3
C146.9,244.6,145.5,245.6,144,246.6z M153,240.7l-1.5-2.3c1.5-0.9,2.9-2,4.4-3.1l1.6,2.1C155.9,238.7,154.4,239.6,153,240.7z
M71.3,236.4v-1.2c0-1.3,0-2.8,0.1-4.3l2.7,0.1c-0.1,1.3-0.1,2.8-0.1,4.1v1.1L71.3,236.4z M161.8,234.4l-1.6-2.1
c1.5-1.1,2.8-2.1,4.3-3.2l1.6,2.1C164.6,232.3,163.1,233.3,161.8,234.4z M170.2,227.9l-1.6-2.1c1.3-1.1,2.8-2.3,4.1-3.3l1.7,2
C173,225.6,171.7,226.8,170.2,227.9z M74.7,225.9l-2.7-0.4c0.3-1.7,0.5-3.5,0.9-5.3l2.7,0.5C75.3,222.5,75,224.3,74.7,225.9
L74.7,225.9z M178.5,221l-1.7-2c1.3-1.2,2.7-2.3,4-3.5l1.7,2C181.3,218.8,179.8,219.8,178.5,221z M76.9,215.6l-2.5-0.7l1.6-5.2
l2.5,0.8C77.9,212.2,77.4,214,76.9,215.6z M186.6,214l-1.7-2c1.3-1.2,2.7-2.4,3.9-3.6l1.9,2C189.2,211.6,188,212.8,186.6,214z
M194.4,206.6l-1.9-1.9c1.3-1.2,2.5-2.4,3.9-3.7l1.9,1.9C197.1,204.2,195.7,205.4,194.4,206.6z M80.2,205.5l-2.5-0.9
c0.7-1.6,1.3-3.3,2-4.9l2.5,1.1L80.2,205.5z M202.2,199.1l-1.9-1.9c1.2-1.2,2.5-2.5,3.7-3.9l1.9,1.9
C204.6,196.6,203.4,197.8,202.2,199.1z M84.5,195.6l-2.5-0.7c0.1-0.3,0.1-0.7,0.1-1.2c0-0.9-0.1-2-0.4-3.6l2.7-0.4
c0.3,1.7,0.4,3.1,0.4,4C84.6,194.4,84.6,195.1,84.5,195.6z M209.5,191.4l-2-1.9c1.2-1.3,2.4-2.5,3.6-3.9l2,1.7
C212,188.8,210.7,190,209.5,191.4z M80.8,184.9v-0.4c-0.3-1.5-0.5-3.2-0.9-4.9l2.7-0.4c0.3,1.7,0.7,3.3,0.9,4.9v0.4L80.8,184.9z
M215.5,184.8l-2-1.7c1.2-1.3,2.4-2.7,3.5-4l2,1.7C217.9,182.1,216.7,183.5,215.5,184.8z M222.6,176.8l-2-1.7c1.2-1.3,2.3-2.7,3.5-4
l2,1.7C225,174,223.8,175.5,222.6,176.8z M78.9,174.4c-0.3-1.9-0.5-3.6-0.7-5.3l2.7-0.3c0.1,1.7,0.4,3.5,0.7,5.2L78.9,174.4z
M229.6,168.5l-2.1-1.7c1.1-1.3,2.3-2.8,3.3-4.1l2.1,1.6C231.8,165.7,230.6,167.2,229.6,168.5z M77.7,163.6
c-0.1-1.9-0.1-3.6-0.1-5.5h2.7c0,1.7,0,3.5,0.1,5.2L77.7,163.6z M236.3,160.1l-2.1-1.6c1.1-1.5,2.1-2.8,3.2-4.3l2.1,1.6
C238.4,157.3,237.3,158.6,236.3,160.1z M80.4,152.9l-2.7-0.1c0.1-1.9,0.3-3.6,0.5-5.5l2.7,0.3C80.6,149.4,80.5,151.1,80.4,152.9z
M242.5,151.5l-2.1-1.6c1.1-1.5,2.1-2.9,3.1-4.3l2.1,1.5C244.7,148.6,243.6,150,242.5,151.5z M248.8,142.7l-2.3-1.5
c1.1-1.5,2-2.9,2.9-4.4l2.3,1.5C250.8,139.8,249.8,141.2,248.8,142.7z M81.7,142.4l-2.7-0.5c0.4-1.7,0.8-3.6,1.2-5.3l2.5,0.7
C82.4,139.1,82,140.7,81.7,142.4z M254.7,133.7l-2.3-1.5c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.3C256.6,130.7,255.6,132.1,254.7,133.7z
M84.5,132.4l-2.5-0.9c0.7-1.7,1.3-3.3,2.1-5.1l2.4,1.1C85.7,129.2,85,130.8,84.5,132.4z M260.2,124.5l-2.3-1.3
c0.9-1.6,1.7-3.1,2.7-4.7l2.3,1.3C262.1,121.4,261.1,122.9,260.2,124.5z M88.9,122.9l-2.3-1.3l0.9-1.6c0.5-0.9,1.1-2,1.7-2.9
l2.3,1.3c-0.5,1.1-1.2,2-1.7,2.9L88.9,122.9z M265.4,115.2L263,114c0.8-1.6,1.6-3.2,2.4-4.7l2.4,1.2
C267.1,111.9,266.3,113.5,265.4,115.2z M94.3,113.7l-2.3-1.3c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.5L94.3,113.7z M270.2,105.5l-2.4-1.1
c0.8-1.6,1.5-3.2,2.1-4.8l2.4,1.1C271.8,102.2,271,103.8,270.2,105.5z M100,104.9l-2.1-1.6l3.2-4.4l2.1,1.6
C102.1,101.9,101.1,103.3,100,104.9z M106.6,96.4l-2-1.7l3.6-4l1.9,1.9C108.8,93.8,107.6,95.1,106.6,96.4z M274.5,95.6l-2.5-0.9
c0.7-1.6,1.3-3.3,1.9-4.9l2.5,0.9C275.8,92.2,275.2,93.9,274.5,95.6z M113.9,88.9l-1.7-2c1.3-1.2,2.8-2.4,4.1-3.5l1.6,2.1
C116.6,86.7,115.1,87.7,113.9,88.9z M278.1,85.5l-2.5-0.8c0.5-1.7,1.1-3.5,1.5-5.1l2.5,0.7C279.2,81.9,278.8,83.6,278.1,85.5z
M122.1,82.4l-1.5-2.3c1.5-1.1,3.1-2,4.5-2.9l1.3,2.3C125,80.5,123.5,81.5,122.1,82.4z M131.2,77.2l-1.2-2.4
c1.6-0.8,3.3-1.5,4.9-2.3L136,75C134.4,75.7,132.8,76.4,131.2,77.2z M280.9,74.9l-2.7-0.5c0.4-1.7,0.7-3.5,0.8-5.2l2.7,0.4
C281.6,71.3,281.3,73.2,280.9,74.9z M140.9,73.2l-0.8-2.5l5.2-1.6l0.7,2.5C144.3,72.1,142.7,72.6,140.9,73.2z M151.1,70.4l-0.5-2.7
c1.7-0.4,3.6-0.8,5.3-1.1l0.4,2.7C154.6,69.7,152.8,70,151.1,70.4z M187.8,69.2c-1.5-0.1-3.2-0.4-5.2-0.5l0.3-2.7
c2.1,0.1,3.9,0.4,5.3,0.7L187.8,69.2z M194,68.9l-1.6-2.1c1.5-1.1,2.9-2.1,4.3-3.2l1.6,2.1C196.9,66.7,195.5,67.8,194,68.9z
M161.5,68.6l-0.3-2.7c1.7-0.3,3.6-0.4,5.3-0.4l0.1,2.7L161.5,68.6z M177.3,68.1c-1.6-0.1-3.2-0.1-4.8-0.1H172v-2.7h0.5
c1.6,0,3.2,0,4.9,0.1L177.3,68.1z M282.2,64.1l-2.7-0.1v-1.7c0-1.2,0-2.4-0.1-3.5l2.7-0.3c0.1,1.2,0.1,2.4,0.1,3.6V64.1z
M202.7,62.6l-1.5-2.3c1.5-1.1,2.9-2,4.4-2.9l1.5,2.3C205.6,60.6,204.2,61.7,202.7,62.6L202.7,62.6z M211.6,56.9l-1.5-2.3
c1.6-0.9,3.1-1.9,4.7-2.8l1.3,2.3C214.6,55,213.1,55.9,211.6,56.9z M278.6,53.8c-0.4-1.7-1.1-3.3-1.7-4.7l2.4-1.2
c0.8,1.6,1.5,3.3,2,5.3L278.6,53.8L278.6,53.8z M220.7,51.5l-1.3-2.4c1.6-0.9,3.2-1.7,4.8-2.5l1.2,2.4
C223.9,49.8,222.3,50.7,220.7,51.5z M230.2,46.7l-1.1-2.4c1.7-0.8,3.3-1.5,4.9-2.1l0.9,2.5C233.6,45.4,231.8,46,230.2,46.7z
M274.1,45l-0.9-0.9c-0.9-0.8-1.9-1.5-2.9-2.1l1.3-2.3c1.2,0.7,2.4,1.5,3.3,2.4c0.4,0.4,0.8,0.7,1.1,1.1L274.1,45L274.1,45z
M240,42.8l-0.8-2.5c1.7-0.7,3.5-1.2,5.2-1.6l0.7,2.5C243.5,41.7,241.7,42.3,240,42.8z M265.5,40.1c-1.6-0.4-3.2-0.7-5.1-0.8
l0.1-2.7c2,0.1,3.9,0.4,5.5,0.8L265.5,40.1L265.5,40.1z M250.2,40.1l-0.5-2.7c1.9-0.4,3.7-0.5,5.5-0.8l0.3,2.7
C253.8,39.5,252,39.7,250.2,40.1L250.2,40.1z"/>
<path class="st2" d="M92.1,178.4c5.6,5.9,32.8-11.2,60.8-38.2s46.2-53.7,40.6-59.6c0,0,0,0-0.1-0.1c-5.6-5.8-32.9,11.3-60.9,38.4
C104.6,145.9,86.5,172.6,92.1,178.4L92.1,178.4z"/>
<path class="st0" d="M122.1,117.3l5.7-5.7l25.5,25.5l-5.7,5.7L122.1,117.3z M163.8,147.2h148.4c3.7,0,6.7,2.9,6.7,6.7v61.5
c0,3.7-2.9,6.7-6.7,6.7H163.8c-3.7,0-6.7-2.9-6.7-6.7v-61.5C157.1,150.2,160,147.2,163.8,147.2z"/>
<path class="st3" d="M325.8,134.1v-5.6h2v5.6h5.6v2h-5.6v5.7h-2v-5.6h-5.6v-2L325.8,134.1L325.8,134.1z M86.6,202.5l-1.3-2.9
c-0.4-0.9-0.8-1.7-1.3-2.9l-0.8-3.3c-4-10.6-6.3-21.9-6.3-34c0-23.9,9-45.9,23.8-62.3L85.3,80.8c-1.6-1.7-1.6-4.5,0.1-6.2
c1.7-1.7,4.4-1.7,6.2-0.1l16.3,15.4c16.6-15,38.5-24.1,62.7-24.1c17.8,0,34.5,4.9,48.7,13.6c10.7,7.2,13.4,8.7,21,17.6
c5.7,6.7,6,6.4,10.7,14.2c0.8,0.1,7.5,11.8,7.5,15.6c2.4,6.3,4,13,4.9,19.7h48.4c2.7,0,5.1,1.1,7,2.9c1.9,1.9,2.9,4.4,2.9,7v57.8
c0,2.7-1.1,5.1-2.9,7c-1.9,1.9-4.4,2.9-7,2.9h-73.4c-17.1,17.8-41.2,28.9-67.8,28.9c-10.8,0-21.7-1.9-31.8-5.5
c-17.8-7.9-17.1-7.2-26.1-14.2s-10-9.4-22.7-25.9C88.6,205.3,87.7,204.5,86.6,202.5z M91.7,202.6c10.2,18.5,26.7,33,46.7,40.6
c8.6-5.3,23.7-16.8,25.5-19.3c-2.7,0-5.1-1.1-7-2.9s-2.9-4.4-2.9-7v-46.8c-9.6,6.3-20.6,10.8-31.7,13.5c-13.9,3.3-26.7,3.1-30.4-0.5
c-6.3-6.3,9.1-30.2,34.2-56.4l-23-24.2c-14,15.9-22.7,36.8-22.7,59.6c0,10.8,1.9,21.5,5.7,31.6l2,5.5
C88.8,197.4,89.3,198.9,91.7,202.6L91.7,202.6z M110.6,92.3l24.3,22.9l0.1-0.1c27-26.2,51.5-42,57.9-35.6c3.6,3.6,3.7,16.4,0.3,30.5
c-3.2,13-8.8,25.5-16.8,36.4h64.4c5.1-7,9.6-13.6,13.6-20.1c-13.1-33.4-45.7-57-83.7-57C147.5,69.4,126.5,78,110.6,92.3z M137.8,118
l17,16c11-11.4,20.5-22.7,26.7-32.2c6.6-9.9,9.1-16.8,7.5-18.5c-1.6-1.6-8.6,0.9-18.5,7.5C161,97.2,149.5,106.7,137.8,118z
M152.3,136.7L89,77c-0.3-0.3-0.8-0.3-1.1,0s-0.3,0.8,0,1.1l59.6,63.1C149.2,139.8,150.7,138.1,152.3,136.7z M144.9,143.8L129,127
c-10.6,11.1-19.7,21.9-25.7,31.2c-6.6,9.9-9.1,16.8-7.5,18.5c1.6,1.6,8.6-0.9,18.5-7.5C123.3,163,134.1,154.2,144.9,143.8
L144.9,143.8z M192,90.1c-4,11.5-18.7,30.8-38.6,50.7c-20.1,20.1-39.3,34.8-50.9,38.6c5.1,0.1,11.9-0.5,19-2.3
c16.3-3.9,32-11.9,44-23.9c12-11.9,20.2-27.7,24.2-44.1C191.3,102,192,95.2,192,90.1z M157.6,164.8v49.3c0,1.6,0.7,3.2,1.7,4.4
c1.2,1.2,2.7,1.7,4.4,1.7h147.9c3.3,0,6.2-2.8,6.2-6.2v-57.9c0-3.3-2.8-6.2-6.2-6.2H173.3c-0.1,0.3-0.4,0.4-0.5,0.7l3.1,2.8
c3.1,2.9,3.2,7.9,0.1,11c-2.9,3.1-7.9,3.2-11,0.1l-3.1-3.2C160.6,162.6,159.1,163.7,157.6,164.8z M170.3,153.5
c-1.7,2-3.7,3.7-5.6,5.6l2.8,2.9c1.7,1.7,4.3,1.7,5.9,0.1c0.8-0.8,1.2-1.9,1.2-2.9s-0.5-2.1-1.3-2.9
C173.3,156.3,170.3,153.5,170.3,153.5z M233,224h-68.7c-9.8,8-17,13.4-26.1,19.3c9.1,3.3,22.9,6,32.4,6
C194.8,249.1,216.9,239.5,233,224z M259.6,146.3c-0.8-5.3-3.7-15-5.3-20.1c-4.3,7.1-9.1,14.4-13.9,20.1H259.6z M196.5,206.7v-9
h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.2v9h-5.3V206.7z M243.6,207.4c-5.1,0-9-2-11.8-6
s-4.1-9.5-4.1-16.3s1.5-12.2,4.3-16.3c2.8-4,6.7-6.2,11.8-6.2s9,2,11.8,6s4.1,9.5,4.1,16.3s-1.3,12.3-4.1,16.3
C252.6,205.4,248.7,207.4,243.6,207.4z M243.6,202.7c3.3,0,6-1.6,7.8-4.8c1.9-3.2,2.7-7.5,2.7-13c0-5.3-0.9-9.6-2.7-12.8
c-1.9-3.2-4.4-4.8-7.8-4.8c-3.3,0-5.9,1.6-7.8,4.8c-1.9,3.2-2.8,7.5-2.8,12.8s0.9,9.8,2.7,13C237.6,201.1,240.1,202.7,243.6,202.7z
M301.6,206.7v-9h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.3v9h-5.2V206.7z M180.1,192.8
l16.4,0.1v-25.1h-0.1c-4.1,5.9-7.5,10.7-10,14.6C184,186.3,181.8,189.8,180.1,192.8L180.1,192.8z M285.2,192.8l16.4,0.1v-25.1h-0.1
c-4.1,5.9-7.5,10.7-10,14.6C288.9,186.3,286.9,189.8,285.2,192.8L285.2,192.8z M51.5,100.4l4-4l1.3,1.3l-4,4l4,4l-1.3,1.3l-4-4l-4,4
l-1.3-1.3l4-4l-4-4l1.3-1.3L51.5,100.4z M344.6,167.6V158h3.3v9.6h9.6v3.3h-9.6v9.6h-3.3v-9.6H335v-3.3H344.6z"/>
<path class="st4" d="M52.1,248.9c2.5,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7c-2.5,0-4.7,2.1-4.7,4.7S49.6,248.9,52.1,248.9z"/>
<path class="st3" d="M52.1,250.2c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S55.5,250.2,52.1,250.2z M52.1,240.8c-1.9,0-3.3,1.5-3.3,3.3
s1.5,3.3,3.3,3.3c1.9,0,3.3-1.5,3.3-3.3S54,240.8,52.1,240.8z"/>
<path class="st3" d="M276.6,70.1l5.2-6.4l2.8,7.9l6.4,5.2l-7.9,2.8l-5.2,6.4l-2.8-7.9l-6.4-5.2L276.6,70.1z"/>
<path class="st3" d="M277.4,88.7l-3.5-9.8l-8-6.6l9.8-3.5l6.6-8l3.5,9.8l8,6.6l-9.8,3.5L277.4,88.7z M271.4,73.3l4.9,4l2.1,6l4-4.9
l6-2.1l-4.9-4l-2.1-6l-4,4.9L271.4,73.3z"/>
<path class="st3" d="M109.7,274.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4h-60.4c-0.7,0-1.3-0.6-1.3-1.3
C108.3,275.3,108.9,274.7,109.7,274.7"/>
<path class="st3" d="M202.3,274.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C201.6,274.9,201.9,274.7,202.3,274.7"/>
<path class="st3" d="M141.9,284.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H141.9
c-0.7,0-1.3-0.6-1.3-1.3l0,0C140.5,284.8,141.1,284.2,141.9,284.2"/>
<path class="st3" d="M77.5,284.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H77.5c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C76.8,284.3,77.1,284.2,77.5,284.2"/>
<path class="st3" d="M180.8,274.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C180.6,274.7,180.7,274.7,180.8,274.7"/>
<path class="st3" d="M268,266.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3H268c-0.7,0-1.3-0.6-1.3-1.3
C266.7,267.3,267.3,266.6,268,266.6"/>
<path class="st3" d="M82.8,266.6h171.8c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5s-0.7,0.8-1.2,0.8H82.8c-0.7,0-1.3-0.6-1.3-1.3
C81.5,267.3,82.1,266.6,82.8,266.6"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st3" d="M37.7,141.1c-2.4,0-4.4-1.9-4.4-4.4c0-2.4,1.9-4.4,4.4-4.4c2.4,0,4.4,1.9,4.4,4.4
C42,139.2,40.1,141.1,37.7,141.1z"/>
<path class="st3" d="M264.6,80.4c-2.1,0-3.8-1.7-3.8-3.8s1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C268.4,78.7,266.7,80.4,264.6,80.4z
M264.6,74.4c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1C266.7,75.4,265.8,74.4,264.6,74.4z"/>
<path class="st3" d="M98.8,136.7c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S101.4,136.7,98.8,136.7z M98.8,129.4
c-1.5,0-2.6,1.2-2.6,2.6s1.2,2.6,2.6,2.6c1.5,0,2.6-1.2,2.6-2.6S100.2,129.4,98.8,129.4z"/>
<path class="st3" d="M144.3,113.8h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C143.6,113.9,143.9,113.8,144.3,113.8"/>
<path class="st3" d="M148.4,89.1v5.7c0,0.3-0.1,0.5-0.3,0.7c-0.4,0.4-0.9,0.4-1.3,0l0,0c-0.2-0.2-0.3-0.4-0.3-0.7v-5.7
c0-0.2,0.1-0.5,0.3-0.7c0.4-0.4,0.9-0.4,1.3,0l0,0C148.3,88.6,148.4,88.8,148.4,89.1"/>
<g>
<path class="st3" d="M193.5,123.6l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3c-0.4-0.1-0.7-0.4-0.8-0.8C193.1,124.3,193.2,123.9,193.5,123.6"/>
<path class="st3" d="M195.3,118.6l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C194.7,118.2,195,118.4,195.3,118.6"/>
</g>
<g>
<path class="st3" d="M355,85.8l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3s-0.7-0.4-0.8-0.8S354.7,86.1,355,85.8"/>
<path class="st3" d="M356.8,80.8l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C356.2,80.4,356.5,80.5,356.8,80.8"/>
</g>
<path class="st1" d="M87.8,267.9h99.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4H87.8c-1.2,0-2.2-0.6-2.2-1.3
C85.6,268.5,86.6,267.9,87.8,267.9"/>
<path class="st1" d="M240.5,267.9H298c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-57.5c-1.2,0-2.2-0.6-2.2-1.3c0-0.4,0.2-0.7,0.7-1
C239.3,268,239.9,267.9,240.5,267.9"/>
<path class="st1" d="M140.9,277.3h216.8c1.2,0,2.2,0.6,2.2,1.3c0,0.4-0.2,0.7-0.7,1c-0.4,0.3-1,0.4-1.6,0.4H140.9
c-1.2,0-2.2-0.6-2.2-1.3l0,0C138.7,277.9,139.7,277.3,140.9,277.3"/>
<path class="st1" d="M34.7,277.3h57.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4l0,0H34.7c-1.2,0-2.2-0.6-2.2-1.3
c0-0.4,0.2-0.7,0.7-1C33.6,277.5,34.1,277.3,34.7,277.3"/>
<path class="st1" d="M205.1,267.9h13.3c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0.1-2.3-0.5-2.4-1.3s0.8-1.4,2.1-1.4
C204.8,267.9,205,267.9,205.1,267.9"/>
<path class="st1" d="M348.8,259.8h13.3c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0-2.2-0.6-2.2-1.3
C346.6,260.4,347.6,259.8,348.8,259.8"/>
<path class="st1" d="M43.6,259.8h283.1c0.6,0,1.1,0.1,1.6,0.4c0.6,0.4,0.8,1,0.5,1.5s-1.1,0.8-2,0.8H43.6c-1.2,0-2.2-0.6-2.2-1.3
S42.4,259.8,43.6,259.8"/>
<path class="st3" d="M180.3,240h-41.9c-0.6,0-1-0.4-1-1v-11.9c0-0.6,0.4-1,1-1s1,0.4,1,1v11h40v-41c0-0.6,0.4-1,1-1h10.5
c0.6,0,1,0.4,1,1s-0.4,1-1,1h-9.5v41C181.2,239.6,180.9,240,180.3,240L180.3,240z M237.5,240h-22c-0.6,0-1-0.4-1-1v-41H205
c-0.6,0-1-0.4-1-1s0.4-1,1-1h10.5c0.6,0,1,0.4,1,1v41h21c0.6,0,1,0.4,1,1S238,240,237.5,240z M105.9,231l2.7,18.2H95.7l2.7-18.2
H105.9 M107.5,229.1H96.7l-3.2,22h17.2L107.5,229.1z"/>
<path class="st6" d="M157.7,231.2H46.1c-5.1,0-9.2-4.1-9.2-9.2v-10.5h129.9v10.8C166.8,227.2,162.7,231.2,157.7,231.2L157.7,231.2z"
/>
<path class="st2" d="M167.4,210.9h-125v-47c0-3.6,3-6.7,6.7-6.7H163c2.5,0,4.6,2,4.6,4.6L167.4,210.9L167.4,210.9z"/>
<path class="st3" d="M158.8,154.2c3.9,0,7,3.1,7,7v61.9c0,3.9-3.1,7-7,7H45.4c-3.9,0-7-3.1-7-7v-61.9c0-3.9,3.1-7,7-7L158.8,154.2
M158.8,152.3H45.4c-5,0-9,4-9,9v61.9c0,5,4,9,9,9h113.4c5,0,9-4,9-9v-61.9C167.7,156.3,163.7,152.3,158.8,152.3z M116.2,251.8H88.1
c-0.6,0-1-0.4-1-1s0.4-1,1-1h28.1c0.6,0,1,0.4,1,1C117.1,251.4,116.7,251.8,116.2,251.8L116.2,251.8z"/>
<path class="st3" d="M37.6,210.6h129.1v1.9H37.6V210.6z"/>
<path class="st3" d="M101.7,222.9c1.4,0.9,3.3,0.6,4.2-0.8c0.9-1.4,0.6-3.3-0.8-4.2l0,0c-1.4-0.9-3.3-0.6-4.2,0.8
C99.9,220.1,100.3,222,101.7,222.9L101.7,222.9z"/>
<path class="st3" d="M102.1,223.7c-1.8,0-3.3-1.5-3.3-3.3s1.5-3.3,3.3-3.3s3.3,1.5,3.3,3.3S103.9,223.7,102.1,223.7z M102.1,218.1
c-1.3,0-2.4,1-2.4,2.4s1,2.4,2.4,2.4c1.3,0,2.4-1,2.4-2.4S103.4,218.1,102.1,218.1z M348.1,252.4H244.9c-3.5,0-6.5-2.9-6.5-6.5V114
c0-3.5,2.9-6.5,6.5-6.5h103.3c3.5,0,6.5,2.9,6.5,6.5v131.9C354.6,249.5,351.7,252.4,348.1,252.4L348.1,252.4z M244.9,109.5
c-2.5,0-4.6,2-4.6,4.6V246c0,2.5,2,4.6,4.6,4.6h103.3c2.5,0,4.6-2,4.6-4.6V114c0-2.5-2-4.6-4.6-4.6L244.9,109.5z"/>
<path class="st3" d="M238.9,131.9h114.3v1.9H238.9V131.9z M238.9,155.7h114.3v1.9H238.9V155.7z M238.9,179.5h114.3v1.9H238.9V179.5z
M239.8,202.4h114.3v1.9H239.8V202.4z M238.9,227.1h114.3v1.9H238.9V227.1z"/>
<g>
<path class="st3" d="M255,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,119.4,255,120.5
L255,120.5z"/>
<path class="st3" d="M264.6,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,118.6,264.6,119.4,264.6,120.5L264.6,120.5z"/>
<path class="st3" d="M274.1,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,118.6,274.1,119.4,274.1,120.5L274.1,120.5z"/>
<path class="st3" d="M255,145.2c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,144.2,255,145.2
L255,145.2z"/>
<path class="st3" d="M264.6,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,143.3,264.6,144.2,264.6,145.2L264.6,145.2z"/>
<path class="st3" d="M274.1,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,143.3,274.1,144.2,274.1,145.2L274.1,145.2z"/>
<path class="st3" d="M255,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,168,255,169L255,169z"/>
<path class="st3" d="M264.6,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,167.1,264.6,168,264.6,169L264.6,169z"/>
<path class="st3" d="M274.1,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,167.1,274.1,168,274.1,169L274.1,169z"/>
<path class="st3" d="M255,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,190.8,255,191.9
L255,191.9z"/>
<path class="st3" d="M264.6,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,190.8,264.6,191.9
L264.6,191.9z"/>
<path class="st3" d="M274.1,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,190.8,274.1,191.9
L274.1,191.9z"/>
<path class="st3" d="M255,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,214.6,255,215.7
L255,215.7z"/>
<path class="st3" d="M264.6,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,213.8,264.6,214.6,264.6,215.7L264.6,215.7z"/>
<path class="st3" d="M274.1,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,213.8,274.1,214.6,274.1,215.7L274.1,215.7z"/>
<path class="st3" d="M255,239.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,238.5,255,239.5
L255,239.5z"/>
<path class="st3" d="M264.6,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,238.5,264.6,239.5
L264.6,239.5z"/>
<path class="st3" d="M274.1,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,238.5,274.1,239.5
L274.1,239.5z"/>
</g>
<path class="st3" d="M310.3,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C311.2,125.8,310.9,126.2,310.3,126.2z
M319.8,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C320.8,125.8,320.4,126.2,319.8,126.2z M329.3,126.2
c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C330.3,125.8,329.9,126.2,329.3,126.2z M338.9,126.2c-0.6,0-1-0.4-1-1v-9.5
c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C339.8,125.8,339.4,126.2,338.9,126.2z M310.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1
v9.5C311.2,149.6,310.9,150,310.3,150z M319.8,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,149.6,320.4,150,319.8,150z M329.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,149.6,329.9,150,329.3,150z M338.9,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,149.6,339.4,150,338.9,150z M310.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,174.4,310.9,174.7,310.3,174.7L310.3,174.7z M319.8,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,174.4,320.4,174.7,319.8,174.7L319.8,174.7z M329.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,174.4,329.9,174.7,329.3,174.7L329.3,174.7z M338.9,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,174.4,339.4,174.7,338.9,174.7L338.9,174.7z M310.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,197.2,310.9,197.6,310.3,197.6z M319.8,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,197.2,320.4,197.6,319.8,197.6z M329.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,197.2,329.9,197.6,329.3,197.6z M338.9,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,197.2,339.4,197.6,338.9,197.6z M310.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,221,310.9,221.4,310.3,221.4z M319.8,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,221,320.4,221.4,319.8,221.4z M329.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,221,329.9,221.4,329.3,221.4z M338.9,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,221,339.4,221.4,338.9,221.4z M310.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,244.8,310.9,245.2,310.3,245.2z M319.8,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,244.8,320.4,245.2,319.8,245.2z M329.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,244.8,329.9,245.2,329.3,245.2z M338.9,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,244.8,339.4,245.2,338.9,245.2z M353.6,149.9V148c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7S361.2,149.9,353.6,149.9z"/>
<path class="st3" d="M353.6,165.1v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9c7.6,0,13.7,6.2,13.7,13.7
C367.3,158.9,361.2,165.1,353.6,165.1z M353.6,204.2v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7C367.3,198,361.2,204.2,353.6,204.2z"/>
<path class="st3" d="M353.6,219.4v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8V192c7.6,0,13.7,6.2,13.7,13.7
C367.3,213.2,361.2,219.4,353.6,219.4z"/>
<path class="st3" d="M353.6,238.5v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-2c7.6,0,13.7,6.2,13.7,13.7
C367.3,232.3,361.2,238.5,353.6,238.5z M235,231.9h3.8v14.3H235V231.9z"/>
<path class="st3" d="M190.3,193.8h2.9v6.7h-2.9V193.8z M202.7,193.8h2.9v6.7h-2.9V193.8z"/>
<path class="st3" d="M192.2,189.5c-0.2,0-0.3-0.1-0.4-0.2l-2.9-4.8c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2l2.9,4.8
c0.1,0.2,0.1,0.5-0.2,0.7H192.2z M197.4,188c-0.3,0-0.5-0.2-0.5-0.5V182c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5v5.5
C197.9,187.8,197.7,188,197.4,188z M202.6,189.4c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7l3-4.7c0.2-0.2,0.5-0.3,0.7-0.1
s0.3,0.5,0.1,0.7l-3,4.7C202.9,189.3,202.7,189.4,202.6,189.4z"/>
<path class="st3" d="M69.7,190.5l5.7-0.9c0.6,1.9,1.9,2.9,4.2,3c2.4-0.2,3.7-1.2,4-3.3c-0.1-2.2-1.5-3.3-4.2-3.4
c-1.7,0.1-3,0.5-4,1.1h-4.7l1-11.2h16.1v3.6H76.5l-0.6,4.6c1.5-0.8,3.2-1.1,5-1.1c5.3,0.1,8.2,2.2,8.4,6.3c-0.2,4.3-3.4,6.5-9.7,6.7
C74.4,195.6,71.1,193.9,69.7,190.5L69.7,190.5z M111.2,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C107.8,175.2,111.1,178.7,111.2,185.5z M105.1,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C104,192.5,105.2,190.2,105.1,185.6z M133.1,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C129.7,175.2,133,178.7,133.1,185.5z M127,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C125.9,192.5,127.1,190.2,127,185.6z"/>
</svg>
webpackJsonp([0],{"2X9c":function(M,L,j){M.exports=j.p+"static/img/error_500.ed0cba4.svg"},CkW6:function(M,L){M.exports="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg=="},GHD2:function(M,L){},Minx:function(M,L,j){M.exports=j.p+"static/img/error_404.bf58747.svg"},ODjX:function(M,L,j){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var N=j("CkW6"),u=j.n(N),w=j("Minx"),D=j.n(w),C=j("2X9c"),s=j.n(C),y={name:"errpage",data:function(){return{imgSrc:"",message:"",srcList:{403:u.a,404:D.a,500:s.a},msgList:{403:"抱歉,你无权访问该页面",404:"抱歉,你访问的页面不存在",500:"抱歉,服务器出错了"}}},mounted:function(){var M=this.$route.path.split("/")[1];this.imgSrc=this.srcList[M],this.message=this.msgList[M]}},t={render:function(){var M=this.$createElement,L=this._self._c||M;return L("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[L("div",{staticClass:"wscn-http404"},[L("div",{staticClass:"pic-404"},[L("img",{staticClass:"pic-404__parent",attrs:{src:this.imgSrc,alt:"404"}})]),this._v(" "),L("div",{staticClass:"bullshit"},[L("div",{staticClass:"bullshit__headline"},[this._v(this._s(this.message))]),this._v(" "),L("a",{staticClass:"bullshit__return-home",attrs:{href:"#/index"}},[this._v("返回首页")])])])])},staticRenderFns:[]};var i=j("VU/8")(y,t,!1,function(M){j("GHD2")},"data-v-6342222d",null);L.default=i.exports}});
//# sourceMappingURL=0.4d32899c3299cb95b130.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/assets/500_images/error_500.svg","webpack:///./src/assets/403_images/error_403.svg","webpack:///./src/assets/404_images/error_404.svg","webpack:///src/views/errorPage/index.vue","webpack:///./src/views/errorPage/index.vue?10c2","webpack:///./src/views/errorPage/index.vue"],"names":["module","exports","__webpack_require__","p","errorPage","name","data","imgSrc","message","srcList","403","error_403_default","a","404","error_404_default","500","error_500_default","msgList","mounted","path","this","$route","split","views_errorPage","render","_h","$createElement","_c","_self","staticStyle","background","margin-top","height","staticClass","attrs","src","alt","_v","_s","href","staticRenderFns","Component","normalizeComponent","ssrContext","__webpack_exports__"],"mappings":"yCAAAA,EAAAC,QAAiBC,EAAAC,EAAuB,uDCAxCH,EAAAC,QAAA,wlRCAAD,EAAAC,QAAiBC,EAAAC,EAAuB,0LCoBxCC,GACAC,KAAA,UACAC,KAFA,WAGA,OACAC,OAAA,GACAC,QAAA,GACAC,SACAC,IAAAC,EAAAC,EACAC,IAAAC,EAAAF,EACAG,IAAAC,EAAAJ,GAEAK,SACAP,IAAA,cACAG,IAAA,eACAE,IAAA,eAIAG,QAlBA,WAmBA,IACAC,EADAC,KACAC,OAAAF,KAAAG,MAAA,QADAF,KAEAb,OAFAa,KAEAX,QAAAU,GAFAC,KAGAZ,QAHAY,KAGAH,QAAAE,KCvCeI,GADEC,OAFjB,WAA0B,IAAaC,EAAbL,KAAaM,eAA0BC,EAAvCP,KAAuCQ,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,aAAaC,WAAA,UAAAC,aAAA,QAAAC,OAAA,UAA6DL,EAAA,OAAYM,YAAA,iBAA2BN,EAAA,OAAYM,YAAA,YAAsBN,EAAA,OAAYM,YAAA,kBAAAC,OAAqCC,IAApRf,KAAoRb,OAAA6B,IAAA,WAApRhB,KAAkTiB,GAAA,KAAAV,EAAA,OAA0BM,YAAA,aAAuBN,EAAA,OAAYM,YAAA,uBAA/Wb,KAAgZiB,GAAhZjB,KAAgZkB,GAAhZlB,KAAgZZ,YAAhZY,KAAgZiB,GAAA,KAAAV,EAAA,KAAoDM,YAAA,wBAAAC,OAA2CK,KAAA,aAA/enB,KAAigBiB,GAAA,iBAE1gBG,oBCCjB,IAcAC,EAdyBvC,EAAQ,OAcjCwC,CACEtC,EACAmB,GATF,EAVA,SAAAoB,GACEzC,EAAQ,SAaV,kBAEA,MAUe0C,EAAA,QAAAH,EAAiB","file":"static/js/0.4d32899c3299cb95b130.js","sourcesContent":["module.exports = __webpack_public_path__ + \"static/img/error_500.ed0cba4.svg\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/500_images/error_500.svg\n// module id = 2X9c\n// module chunks = 0 3","module.exports = \"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg==\"\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/403_images/error_403.svg\n// module id = CkW6\n// module chunks = 0 2","module.exports = __webpack_public_path__ + \"static/img/error_404.bf58747.svg\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/404_images/error_404.svg\n// module id = Minx\n// module chunks = 0 4","<template>\r\n <div style=\"background:#f0f2f5;margin-top: -20px;height:100%;\">\r\n <div class=\"wscn-http404\">\r\n <div class=\"pic-404\">\r\n <img class=\"pic-404__parent\" :src=\"imgSrc\" alt=\"404\">\r\n </div>\r\n <div class=\"bullshit\">\r\n <!-- <div class=\"bullshit__oops\">404</div> -->\r\n <div class=\"bullshit__headline\">{{ message }}</div>\r\n <a href=\"#/index\" class=\"bullshit__return-home\">返回首页</a>\r\n </div>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport img_403 from '@/assets/403_images/error_403.svg';\r\nimport img_404 from '@/assets/404_images/error_404.svg';\r\nimport img_500 from '@/assets/500_images/error_500.svg'\r\n\r\nexport default {\r\n name: 'errpage',\r\n data() {\r\n return {\r\n imgSrc: '',\r\n message: '',\r\n srcList: {\r\n 403: img_403,\r\n 404: img_404,\r\n 500: img_500\r\n },\r\n msgList: {\r\n 403: '抱歉,你无权访问该页面',\r\n 404: '抱歉,你访问的页面不存在',\r\n 500: '抱歉,服务器出错了'\r\n }\r\n }\r\n },\r\n mounted(){\r\n var that = this;\r\n var path = that.$route.path.split('/')[1];\r\n that.imgSrc = that.srcList[path];\r\n that.message = that.msgList[path];\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n.wscn-http404 {\r\n position: relative;\r\n width: 1200px;\r\n margin: 20px auto 60px;\r\n padding: 0 100px;\r\n overflow: hidden;\r\n .pic-404 {\r\n position: relative;\r\n float: left;\r\n width: 600px;\r\n padding: 150px 152px 150px 0;\r\n text-align: right;\r\n overflow: hidden;\r\n &__parent {\r\n width: 100%;\r\n max-width: 430px;\r\n }\r\n &__child {\r\n position: absolute;\r\n &.left {\r\n width: 80px;\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n animation-name: cloudLeft;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n &.mid {\r\n width: 46px;\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n animation-name: cloudMid;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1.2s;\r\n }\r\n &.right {\r\n width: 62px;\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n animation-name: cloudRight;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n @keyframes cloudLeft {\r\n 0% {\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 33px;\r\n left: 188px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 81px;\r\n left: 92px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 97px;\r\n left: 60px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudMid {\r\n 0% {\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 40px;\r\n left: 360px;\r\n opacity: 1;\r\n }\r\n 70% {\r\n top: 130px;\r\n left: 180px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 160px;\r\n left: 120px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudRight {\r\n 0% {\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 120px;\r\n left: 460px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 180px;\r\n left: 340px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 200px;\r\n left: 300px;\r\n opacity: 0;\r\n }\r\n }\r\n }\r\n }\r\n .bullshit {\r\n position: relative;\r\n float: left;\r\n width: 300px;\r\n padding: 150px 0;\r\n overflow: hidden;\r\n display: flex;\r\n align-items: flex-start;\r\n flex-direction: column;\r\n justify-content: center;\r\n height: 360px;\r\n &__oops {\r\n color: #434e59;\r\n font-size: 72px;\r\n font-weight: 600;\r\n line-height: 72px;\r\n margin-bottom: 24px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n &__headline {\r\n color: rgba(0,0,0,.45);\r\n font-size: 20px;\r\n line-height: 28px;\r\n margin-bottom: 16px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.1s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n\r\n &__return-home {\r\n display: inline-block;\r\n height: 32px;\r\n line-height: 32px;\r\n font-weight: 400;\r\n text-align: center;\r\n -ms-touch-action: manipulation;\r\n touch-action: manipulation;\r\n background-image: none;\r\n white-space: nowrap;\r\n padding: 0 15px;\r\n font-size: 14px;\r\n border-radius: 4px;\r\n border: 1px solid #1890ff;\r\n color: #fff;\r\n background-color: #1890ff;\r\n text-shadow: 0 -1px 0 rgba(0,0,0,.12);\r\n -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n cursor: pointer;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.3s;\r\n animation-fill-mode: forwards;*/\r\n &:hover {\r\n color: #fff;\r\n background-color: #40a9ff;\r\n border-color: #40a9ff;\r\n }\r\n &:active {\r\n background: #096dd9;\r\n border-color: #096dd9;\r\n color: #fff;\r\n }\r\n }\r\n @keyframes slideUp {\r\n 0% {\r\n transform: translateY(60px);\r\n opacity: 0;\r\n }\r\n 100% {\r\n transform: translateY(0);\r\n opacity: 1;\r\n }\r\n }\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/views/errorPage/index.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background\":\"#f0f2f5\",\"margin-top\":\"-20px\",\"height\":\"100%\"}},[_c('div',{staticClass:\"wscn-http404\"},[_c('div',{staticClass:\"pic-404\"},[_c('img',{staticClass:\"pic-404__parent\",attrs:{\"src\":_vm.imgSrc,\"alt\":\"404\"}})]),_vm._v(\" \"),_c('div',{staticClass:\"bullshit\"},[_c('div',{staticClass:\"bullshit__headline\"},[_vm._v(_vm._s(_vm.message))]),_vm._v(\" \"),_c('a',{staticClass:\"bullshit__return-home\",attrs:{\"href\":\"#/index\"}},[_vm._v(\"返回首页\")])])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-6342222d\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/errorPage/index.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-6342222d\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./index.vue\")\n}\nvar normalizeComponent = require(\"!../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./index.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./index.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-6342222d\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../node_modules/vue-loader/lib/selector?type=template&index=0!./index.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-6342222d\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views/errorPage/index.vue\n// module id = null\n// module chunks = "],"sourceRoot":""}
\ No newline at end of file
webpackJsonp([1],{"3E4D":function(e,t,a){"use strict";var s=a("zL8q");a.n(s)},"Ch4/":function(e,t,a){"use strict";var s=a("zL8q");a.n(s)},Iazf:function(module,__webpack_exports__,__webpack_require__){"use strict";var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_json_stringify__=__webpack_require__("mvHQ"),__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_json_stringify___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_json_stringify__),__WEBPACK_IMPORTED_MODULE_1__common_js_showmsg__=__webpack_require__("3E4D"),__WEBPACK_IMPORTED_MODULE_2__common_js_error__=__webpack_require__("Ch4/");__webpack_exports__.a={name:"staffRecordsTemplate",data:function(){return{bodyHeight:(document.documentElement.clientHeight||document.body.clientHeight)+"px",selectKey:"",baseInfo:[],jobInfo:[],selfInfo:[],eduInfo:[],contractInfo:[],contactInfo:[],personalInfo:[],defineInfo:[],currentIndex:0,currentChildKey:null,currentChildIndex:null,childIndex:0,tempaletDataList:[]}},created:function(){},methods:{changeRoute:function(e){this.$router.push(e)},treeData:function(e){var t=e.filter(function(t){var a=e.filter(function(e){return t.fieldCode==e.parentCode});return a.length>0&&(t.children=a),0==t.parentCode});return t.sort(function(e,t){return e.sort-t.sort}),t.forEach(function(e,t){e.children.sort(function(e,t){return e.sort-t.sort})}),t},handleGetInfo:function(e){var t=JSON.parse(e).result;t.forEach(function(e,t){e.fixed=1===parseInt(e.fixed),e.isMust=1===parseInt(e.isMust),e.fieldEdited=1===parseInt(e.fieldEdited),e.systemFlag=!0,e.fieldOperations=e.fieldOperations?JSON.parse(e.fieldOperations):{},e.staffRecordsIds=e.staffRecordsIds?JSON.parse(e.staffRecordsIds):[]}),this.tempaletDataList=this.treeData(t)}},watch:{},components:{},mounted:function mounted(){var that=this,param={enterpriseId:that.$route.query.enterpriseId},method="getUserArchivesTempletContent",data={method:method,param:param};function appInvocationMethod(e){return{userId:"123456",name:"张琦"}}that.$bridge.callhandler("apiHandler",data,function(e){console.log("js 调用成功"),that.handleGetInfo(e)}),that.$bridge.registerhandler("jsHandler",function(data,responseCallback){var json=JSON.parse(data),method=json.method,param=json.param,paramStr=__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_json_stringify___default()(param),evalMethod=method+"(paramStr)",result=eval(evalMethod);responseCallback(result)})}}},MqeA:function(e,t){},lFAe:function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=a("Iazf"),i={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"template-wrap",style:{height:e.bodyHeight}},[a("div",{staticClass:"template-contain"},[a("div",{staticClass:"template-body"},[a("div",{staticClass:"template-cell template-cell-m"},[a("div",{staticClass:"phone-view"},[a("div",{staticClass:"phone-show-content"},[a("div",{staticClass:"drag-show-content"},[a("div",{staticClass:"view-container"},[a("ul",{staticClass:"view-content",attrs:{id:"showPhoneView"}},[a("div",{staticClass:"drag-wrap",attrs:{options:{group:{name:"people",pull:!1,put:!1},sort:!1}},model:{value:e.tempaletDataList,callback:function(t){e.tempaletDataList=t},expression:"tempaletDataList"}},e._l(e.tempaletDataList,function(t,s){return a("li",{class:["filed-item",e.currentIndex==s?"active-item":"","li-block"]},[[a("div",{staticClass:"block"},[a("div",{staticClass:"block-head"},[a("div",{class:["opencard-item-title",t.fieldName.length>6?"block-pre-wrap":""]},[e._v(e._s(t.fieldName))])]),e._v(" "),a("ul",{staticClass:"view-content"},[a("div",{class:["drag-wrap","block-wrap",t.fieldCode],attrs:{options:{group:{name:"people",pull:!1,put:!1},sort:!1}},model:{value:t.children,callback:function(a){e.$set(t,"children",a)},expression:"item.children"}},e._l(t.children,function(t,s){return a("li",{class:["filed-item","child-filed-item",e.currentChildKey==t.fieldCode&&e.currentChildIndex==s?"active-item":""]},[2==t.fieldType||3==t.fieldType||4==t.fieldType?a("div",[a("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),e._v(" "),a("div",{staticClass:"draged-item-show"},[a("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldDescription)+" "),a("i",{staticClass:"el-icon-arrow-right"})])])]):e._e(),e._v(" "),5==t.fieldType?a("div",[a("div",[a("div",{class:["opencard-item-title",t.fieldOperations.startName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldOperations.startName))]),e._v(" "),a("div",{staticClass:"draged-item-show"},[a("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldOperations.startDescription)),a("i",{staticClass:"el-icon-arrow-right"})])])]),e._v(" "),a("div",{staticClass:"b-t-1"},[a("div",{class:["opencard-item-title",t.fieldOperations.endName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldOperations.endName))]),e._v(" "),a("div",{staticClass:"draged-item-show"},[a("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[e._v(e._s(t.fieldOperations.endDescription)),a("i",{staticClass:"el-icon-arrow-right"})])])])]):e._e(),e._v(" "),7==t.fieldType?a("div",[a("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),e._v(" "),e._m(0,!0)]):e._e(),e._v(" "),0==t.fieldType||1==t.fieldType||6==t.fieldType?a("div",[a("div",{class:["opencard-item-title",t.fieldName.length>6?"title-pre-wrap":""]},[e._v(e._s(t.fieldName))]),e._v(" "),a("div",{staticClass:"draged-item-show"},[a("span",{staticClass:"show-warm-text show-warm-text-flag"},[e._v(e._s(t.fieldDescription))])])]):e._e()])}))])])]],2)}))])])])])])])])])])},staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"draged-item-show"},[t("span",{staticClass:"show-warm-text show-warm-text-flag select-flag"},[t("i",{staticClass:"iconfont icon-icon"})])])}]};var r=function(e){a("MqeA")},n=a("VU/8")(s.a,i,!1,r,"data-v-3feb27a0",null);t.default=n.exports},mvHQ:function(e,t,a){e.exports={default:a("qkKv"),__esModule:!0}},qkKv:function(e,t,a){var s=a("FeBl"),i=s.JSON||(s.JSON={stringify:JSON.stringify});e.exports=function(e){return i.stringify.apply(i,arguments)}}});
//# sourceMappingURL=1.c2674a5b2e2c002ef41c.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/common/js/showmsg.js","webpack:///src/views/contacts/staffRecordsTemplate.vue","webpack:///./src/views/contacts/staffRecordsTemplate.vue?f01f","webpack:///./src/views/contacts/staffRecordsTemplate.vue","webpack:///./node_modules/babel-runtime/core-js/json/stringify.js","webpack:///./node_modules/core-js/library/fn/json/stringify.js"],"names":["__WEBPACK_IMPORTED_MODULE_0_element_ui__","__webpack_require__","n","__webpack_exports__","name","data","bodyHeight","document","documentElement","clientHeight","body","selectKey","baseInfo","jobInfo","selfInfo","eduInfo","contractInfo","contactInfo","personalInfo","defineInfo","currentIndex","currentChildKey","currentChildIndex","childIndex","tempaletDataList","created","methods","changeRoute","route","this","$router","push","treeData","tree","filter","father","branchArr","child","fieldCode","parentCode","length","children","sort","a","b","forEach","ele","index","handleGetInfo","result","JSON","parse","fixed","parseInt","isMust","fieldEdited","systemFlag","fieldOperations","staffRecordsIds","watch","components","mounted","that","param","enterpriseId","$route","query","method","appInvocationMethod","userId","$bridge","callhandler","console","log","registerhandler","responseCallback","json","paramStr","__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_json_stringify___default","evalMethod","eval","contacts_staffRecordsTemplate","render","_vm","_h","$createElement","_c","_self","staticClass","style","height","attrs","id","options","group","pull","put","model","value","callback","$$v","expression","_l","item","class","fieldName","_v","_s","$set","childItem","ind","fieldType","fieldDescription","_e","startName","startDescription","endName","endDescription","_m","staticRenderFns","__vue_styles__","ssrContext","Component","normalizeComponent","staffRecordsTemplate","module","exports","default","__esModule","core","$JSON","stringify","it","apply","arguments"],"mappings":"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","file":"static/js/1.c2674a5b2e2c002ef41c.js","sourcesContent":["/* 消息提示 */\r\nimport { Message } from 'element-ui';\r\n\r\nexport default {\r\n showmsg: function(msg,type) {\r\n Message({\r\n duration: 1000,\r\n message: msg,\r\n type: type\r\n })\r\n }\r\n};\r\n\r\n\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/common/js/showmsg.js","<template>\n <div class=\"template-wrap\" :style=\"{ height: bodyHeight}\">\n <div class=\"template-contain\">\n <!-- 模板body -->\n <div class=\"template-body\">\n <!-- 中间 -->\n <div class=\"template-cell template-cell-m\">\n <div class=\"phone-view\">\n <div class=\"phone-show-content\">\n <!-- 拖拽展示区域 -->\n <div class=\"drag-show-content\">\n <div class=\"view-container\">\n <ul class=\"view-content\" id=\"showPhoneView\">\n <!-- <template v-if=\"tempaletDataList.length == 0\">\n <img class=\"templet-null-img\" src=\"../../assets/templet_null_img.png\"/>\n </template> -->\n <div\n :options=\"{group:{name:'people', pull:false, put:false },sort: false}\"\n v-model=\"tempaletDataList\"\n class=\"drag-wrap\"\n >\n <li\n :class=\"['filed-item',currentIndex == index? 'active-item': '','li-block']\"\n v-for=\"(item,index) in tempaletDataList\"\n >\n <!-- 删除 -->\n <!-- <span\n v-if= \"item.fieldCode != 'baseInfo'\"\n class=\"item-close p-item-close\"\n >\n <i class=\"el-icon-close\"></i>\n </span> -->\n\n <template>\n <div class=\"block\">\n <div class=\"block-head\">\n <div :class=\"['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']\">{{item.fieldName}}</div>\n </div>\n <ul class=\"view-content\">\n <div\n :options=\"{group:{name:'people', pull:false, put:false },sort: false}\"\n v-model=\"item.children\" :class=\"['drag-wrap','block-wrap',item.fieldCode]\"\n >\n\n <li\n :class=\"['filed-item','child-filed-item',(currentChildKey == childItem.fieldCode && currentChildIndex == ind)? 'active-item': '']\"\n v-for=\"(childItem,ind) in item.children\"\n >\n <!-- 删除 -->\n <!-- <span\n class=\"item-close child-item-close\"\n v-if=\"childItem.fieldCode!='clerkPhone'\">\n <i class=\"el-icon-close\"></i>\n </span> -->\n <!-- item -->\n <!-- 单择/多选/日期 -->\n <div v-if=\"(childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldDescription}} <i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n <!-- 日期区间 -->\n <div v-if=\"(childItem.fieldType == 5)\">\n <div>\n <div :class=\"['opencard-item-title',childItem.fieldOperations.startName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldOperations.startName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldOperations.startDescription}}<i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n <div class=\"b-t-1\">\n <div :class=\"['opencard-item-title',childItem.fieldOperations.endName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldOperations.endName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\">{{childItem.fieldOperations.endDescription}}<i class=\"el-icon-arrow-right\"></i></span>\n </div>\n </div>\n </div>\n <!-- 图片 -->\n <div v-if=\"(childItem.fieldType == 7)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\">{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag select-flag\"><i class=\"iconfont icon-icon\"></i></span>\n </div>\n </div>\n <!-- 单行/多行/数字输入框 -->\n <div v-if=\"(childItem.fieldType == 0 || childItem.fieldType == 1 || childItem.fieldType == 6)\">\n <div :class=\"['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']\" >{{childItem.fieldName}}</div>\n <div class=\"draged-item-show\">\n <span class=\"show-warm-text show-warm-text-flag\">{{childItem.fieldDescription}}</span>\n </div>\n </div>\n </li>\n </div>\n </ul>\n </div>\n </template>\n\n </li>\n </div>\n </ul>\n </div>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n<script>\nimport showMsg from '@/common/js/showmsg';\nimport errMsg from '@/common/js/error';\n\nexport default {\n name: \"staffRecordsTemplate\",\n data() {\n return {\n bodyHeight: (document.documentElement.clientHeight || document.body.clientHeight) + 'px',\n selectKey: '',\n\n // 基本信息\n baseInfo: [],\n // 工作信息\n jobInfo: [],\n // 个人信息\n selfInfo: [],\n // 学历信息\n eduInfo: [],\n // 合同信息\n contractInfo: [],\n // 紧急联系人\n contactInfo: [],\n // 个人材料\n personalInfo: [],\n // 自定义\n defineInfo: [],\n\n // 中间数据集合\n currentIndex: 0, //当前选择的 item\n // children\n currentChildKey: null,\n currentChildIndex: null,\n childIndex: 0,\n\n tempaletDataList: [],\n\n }\n },\n created() {\n },\n methods: {\n\n /**\n * 路由跳转\n */\n changeRoute(route) {\n this.$router.push(route);\n },\n\n /**\n * 简单数组-->父子数组对象\n */\n treeData(data){\n let tree = data.filter((father)=>{ //循环所有项\n let branchArr = data.filter((child)=>{\n return father.fieldCode == child.parentCode; //返回每一项的子级数组\n });\n if(branchArr.length>0){\n father.children = branchArr; //如果存在子级,则给父级添加一个children属性,并赋值\n }\n return father.parentCode == 0; //返回第一层\n });\n // 排序\n tree.sort(function(a,b){\n return a.sort - b.sort;\n })\n\n tree.forEach(function(ele,index){\n ele.children.sort(function(a,b){\n return a.sort - b.sort;\n })\n })\n return tree;\n },\n\n /**\n * 处理已存配置信息\n */\n handleGetInfo(result) {\n const that = this;\n let data = JSON.parse(result).result\n data.forEach(function(ele,index){\n ele.fixed = parseInt(ele.fixed) === 1? true : false;\n ele.isMust = parseInt(ele.isMust) === 1? true : false;\n ele.fieldEdited = parseInt(ele.fieldEdited) === 1? true : false;\n ele.systemFlag = true;\n ele.fieldOperations = !!ele.fieldOperations? JSON.parse(ele.fieldOperations): {};\n ele.staffRecordsIds = !!ele.staffRecordsIds? JSON.parse(ele.staffRecordsIds): [];\n })\n // console.log(JSON.stringify(that.treeData(data)))\n that.tempaletDataList = that.treeData(data)\n },\n },\n watch: {\n\n },\n components: {\n\n },\n mounted() {\n const that = this;\n\n // js 调用客户端方法\n let param = {'enterpriseId': that.$route.query.enterpriseId};\n let method = \"getUserArchivesTempletContent\";\n let data = { 'method': method, 'param': param }\n that.$bridge.callhandler('apiHandler', data, (data) => {\n // 处理返回数据\n console.log(\"js 调用成功\");\n // console.log(data);\n that.handleGetInfo(data)\n })\n\n that.$bridge.registerhandler('jsHandler', (data, responseCallback) => {\n let json = JSON.parse(data)\n let method = json['method']\n let param = json['param']\n\n let paramStr = JSON.stringify(param)\n let evalMethod = method + \"(paramStr)\"\n\n let result = eval(evalMethod);\n responseCallback(result)\n })\n\n function appInvocationMethod(param) {\n // console.log(\"app 调用成功\");\n return {'userId': '123456','name':'张琦'}\n }\n\n }\n}\n\n</script>\n<style lang=\"less\" scoped>\n.template-wrap {\n width: 100%;\n /*height: 100%;*/\n /*min-height: 860px;*/\n padding: 0;\n margin: 0;\n /*background: url('../../assets/template-bg.jpg') no-repeat center center;*/\n background-size: 100% 100%;\n\n .b-t-1 {\n border-top: 1px solid #E4E7ED;\n }\n\n .template-contain {\n width: 100%;\n margin: 0 auto;\n }\n\n .template-head {\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n justify-content: space-between;\n height: 80px;\n align-items: center;\n\n .flex-1 {\n -webkit-flex: 1;\n -moz-flex: 1;\n -ms-flex: 1;\n -o-flex: 1;\n flex: 1;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n align-items: center;\n }\n\n .flex-r {\n justify-content: flex-end;\n }\n\n .template-title-span {\n color: #fff;\n font-size: 30px;\n padding-left: 18px;\n }\n\n .el-button--default.is-plain {\n background: rgba(255,255,255, 0);\n color: #fff;\n &:hover{\n color: #1890ff;\n }\n }\n }\n\n .template-body {\n width: 100%;\n position: relative;\n overflow: hidden;\n\n .template-cell {\n\n }\n\n /* 中间 */\n /* 模板 */\n .template-cell-m {\n width: 100%;\n /*height: 740px;*/\n position: relative;\n\n .view-content {\n position: relative;\n }\n\n }\n\n .drag-wrap {\n /*min-height: 530px;*/\n overflow-x: hidden;\n overflow-y: auto;\n }\n .phone-container{\n margin-top:40px;\n }\n .phone-view{\n /*background: url(../../assets/iphone.png) no-repeat;*/\n background-size: 100%;\n background-color: #f0eff4;\n width: 100%;\n /*height: 740px;*/\n /*margin: 0 20px;*/\n position: relative;\n }\n\n .phone-show-content{\n width: 100%;\n /*height: 537px;*/\n position:relative;\n overflow-y: auto;\n }\n\n .opend-card-item {\n height: 46px;\n line-height: 46px;\n background: #fff;\n border-bottom: 1px solid #e7e7eb;\n font-size: 14px;\n position: relative;\n\n &.sex::after {\n content: '';\n width: 100%;\n height: 100%;\n z-index: 2;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n }\n\n .opend-card-group-title {\n height: 40px;\n line-height: 40px;\n padding-left: 10px;\n }\n\n .opend-card-item {\n height: 46px;\n line-height: 46px;\n background: #fff;\n border-bottom: 1px solid #e7e7eb;\n }\n\n .phone-list-item{\n height:44px;\n line-height:44px;\n background: #fff;\n margin-bottom:5px;\n }\n\n .item-title {\n width: 100px;\n float: left;\n padding-left: 10px;\n }\n\n .filed-item {\n background: #fff;\n height: 46px;\n width: 100%;\n height: auto;\n background: #fff;\n position: relative;\n cursor: move;\n padding: 0px;\n margin: 0;\n font-size: 12px;\n color: #292929;\n\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n &.active-item {\n /*border: 1px solid #1890ff;*/\n }\n\n &+.filed-item {\n margin-top: 5px;\n\n &.li-block {\n margin-top: 15px\n }\n }\n /*删除*/\n .item-close {\n position: absolute;\n top: 0;\n right: 0;\n width: 18px;\n height: 18px;\n line-height: 18px;\n text-align: center;\n background: #1890ff;\n color: #fff;\n font-size: 14px;\n font-weight: 700;\n cursor: pointer;\n display: none;\n z-index: 2;\n }\n &:hover{\n /*border: 1px dashed #1890ff;*/\n .p-item-close {\n display: block;\n }\n }\n\n &.child-filed-item {\n &:hover {\n .child-item-close {\n display: block;\n }\n }\n }\n\n\n }\n /* 组块 */\n .block {\n /*min-height: 308px;*/\n background: #f0eff4;\n\n .block-head {\n width: 100%;\n background: #f5f5f8;\n padding: 0;\n height: 35px;\n\n .opencard-item-title {\n height: 35px;\n line-height: 35px;\n /* &.block-pre-wrap{\n line-height: 12px;\n word-break: break-all;\n white-space: pre-wrap;\n padding-top: 7px;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }*/\n }\n }\n .drag-wrap {\n min-height: 25px;\n }\n }\n\n .opencard-drag {\n background: #fff;\n height: 46px;\n }\n\n .draged-item-show {\n display: inline-block;\n vertical-align: top;\n width: calc(100% - 100px);\n }\n\n .opencard-item-title{\n width: 90px;\n height: 46px;\n line-height: 46px;\n text-align: left;\n float: left;\n padding-left: 10px;\n overflow: hidden;\n white-space: nowrap;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n &.title-pre-wrap {\n line-height: 15px;\n word-break: break-all;\n white-space: pre-wrap;\n padding-top: 9px;\n }\n /*&.block-pre-wrap{\n line-height: 12px;\n word-break: break-all;\n white-space: pre-wrap;\n padding-top: 9px;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }*/\n }\n\n .show-warm-text{\n color:#C8C8CD;\n width:185px;\n text-align: left;\n display:inline-block;\n white-space: nowrap;\n height:46px;\n line-height:46px;\n\n &.select-flag {\n width: 100%;\n text-align: right;\n }\n }\n\n\n .limit-w-340 {\n /deep/ .el-input__inner {\n font-size: 12px;\n color: #fff;\n background-color: rgba(255,255,255,.1);\n }\n\n .tip {\n color: rgba(255,255,255,0.7);\n }\n }\n\n\n }\n}\n\n</style>\n\n\n\n// WEBPACK FOOTER //\n// src/views/contacts/staffRecordsTemplate.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"template-wrap\",style:({ height: _vm.bodyHeight})},[_c('div',{staticClass:\"template-contain\"},[_c('div',{staticClass:\"template-body\"},[_c('div',{staticClass:\"template-cell template-cell-m\"},[_c('div',{staticClass:\"phone-view\"},[_c('div',{staticClass:\"phone-show-content\"},[_c('div',{staticClass:\"drag-show-content\"},[_c('div',{staticClass:\"view-container\"},[_c('ul',{staticClass:\"view-content\",attrs:{\"id\":\"showPhoneView\"}},[_c('div',{staticClass:\"drag-wrap\",attrs:{\"options\":{group:{name:'people', pull:false, put:false },sort: false}},model:{value:(_vm.tempaletDataList),callback:function ($$v) {_vm.tempaletDataList=$$v},expression:\"tempaletDataList\"}},_vm._l((_vm.tempaletDataList),function(item,index){return _c('li',{class:['filed-item',_vm.currentIndex == index? 'active-item': '','li-block']},[[_c('div',{staticClass:\"block\"},[_c('div',{staticClass:\"block-head\"},[_c('div',{class:['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']},[_vm._v(_vm._s(item.fieldName))])]),_vm._v(\" \"),_c('ul',{staticClass:\"view-content\"},[_c('div',{class:['drag-wrap','block-wrap',item.fieldCode],attrs:{\"options\":{group:{name:'people', pull:false, put:false },sort: false}},model:{value:(item.children),callback:function ($$v) {_vm.$set(item, \"children\", $$v)},expression:\"item.children\"}},_vm._l((item.children),function(childItem,ind){return _c('li',{class:['filed-item','child-filed-item',(_vm.currentChildKey == childItem.fieldCode && _vm.currentChildIndex == ind)? 'active-item': '']},[((childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_vm._v(\" \"),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldDescription)+\" \"),_c('i',{staticClass:\"el-icon-arrow-right\"})])])]):_vm._e(),_vm._v(\" \"),((childItem.fieldType == 5))?_c('div',[_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldOperations.startName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldOperations.startName))]),_vm._v(\" \"),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldOperations.startDescription)),_c('i',{staticClass:\"el-icon-arrow-right\"})])])]),_vm._v(\" \"),_c('div',{staticClass:\"b-t-1\"},[_c('div',{class:['opencard-item-title',childItem.fieldOperations.endName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldOperations.endName))]),_vm._v(\" \"),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_vm._v(_vm._s(childItem.fieldOperations.endDescription)),_c('i',{staticClass:\"el-icon-arrow-right\"})])])])]):_vm._e(),_vm._v(\" \"),((childItem.fieldType == 7))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_vm._v(\" \"),_vm._m(0,true)]):_vm._e(),_vm._v(\" \"),((childItem.fieldType == 0 || childItem.fieldType == 1 || childItem.fieldType == 6))?_c('div',[_c('div',{class:['opencard-item-title',childItem.fieldName.length>6? 'title-pre-wrap': '']},[_vm._v(_vm._s(childItem.fieldName))]),_vm._v(\" \"),_c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag\"},[_vm._v(_vm._s(childItem.fieldDescription))])])]):_vm._e()])}))])])]],2)}))])])])])])])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"draged-item-show\"},[_c('span',{staticClass:\"show-warm-text show-warm-text-flag select-flag\"},[_c('i',{staticClass:\"iconfont icon-icon\"})])])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-3feb27a0\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/contacts/staffRecordsTemplate.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-3feb27a0\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./staffRecordsTemplate.vue\")\n}\nvar normalizeComponent = require(\"!../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./staffRecordsTemplate.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./staffRecordsTemplate.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-3feb27a0\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../node_modules/vue-loader/lib/selector?type=template&index=0!./staffRecordsTemplate.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-3feb27a0\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views/contacts/staffRecordsTemplate.vue\n// module id = null\n// module chunks = ","module.exports = { \"default\": require(\"core-js/library/fn/json/stringify\"), __esModule: true };\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/babel-runtime/core-js/json/stringify.js\n// module id = mvHQ\n// module chunks = 1","var core = require('../../modules/_core');\nvar $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });\nmodule.exports = function stringify(it) { // eslint-disable-line no-unused-vars\n return $JSON.stringify.apply($JSON, arguments);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/core-js/library/fn/json/stringify.js\n// module id = qkKv\n// module chunks = 1"],"sourceRoot":""}
\ No newline at end of file
webpackJsonp([2],{"+7W9":function(M,L){},"6XGN":function(M,L,j){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var N=j("CkW6"),u=j.n(N),w={name:"page403",data:function(){return{img_403:u.a}},computed:{message:function(){return"抱歉,你无权访问该页面"}}},D={render:function(){var M=this.$createElement,L=this._self._c||M;return L("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[L("div",{staticClass:"wscn-http404"},[L("div",{staticClass:"pic-404"},[L("img",{staticClass:"pic-404__parent",attrs:{src:this.img_403,alt:"403"}})]),this._v(" "),L("div",{staticClass:"bullshit"},[L("div",{staticClass:"bullshit__headline"},[this._v(this._s(this.message))]),this._v(" "),L("a",{staticClass:"bullshit__return-home",attrs:{href:"#/companyGroup"}},[this._v("返回首页")])])])])},staticRenderFns:[]};var C=j("VU/8")(w,D,!1,function(M){j("+7W9")},"data-v-560f462e",null);L.default=C.exports},CkW6:function(M,L){M.exports="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg=="}});
//# sourceMappingURL=2.39effb7cc468a8b90c44.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///src/views/errorPage/403.vue","webpack:///./src/views/errorPage/403.vue?d783","webpack:///./src/views/errorPage/403.vue","webpack:///./src/assets/403_images/error_403.svg"],"names":["_03","name","data","img_403","error_403_default","a","computed","message","errorPage_403","render","_h","this","$createElement","_c","_self","staticStyle","background","margin-top","height","staticClass","attrs","src","alt","_v","_s","href","staticRenderFns","Component","__webpack_require__","normalizeComponent","ssrContext","__webpack_exports__","module","exports"],"mappings":"uJAkBAA,GACAC,KAAA,UACAC,KAFA,WAGA,OACAC,QAAAC,EAAAC,IAGAC,UACAC,QADA,WAEA,uBCxBeC,GADEC,OAFjB,WAA0B,IAAaC,EAAbC,KAAaC,eAA0BC,EAAvCF,KAAuCG,MAAAD,IAAAH,EAAwB,OAAAG,EAAA,OAAiBE,aAAaC,WAAA,UAAAC,aAAA,QAAAC,OAAA,UAA6DL,EAAA,OAAYM,YAAA,iBAA2BN,EAAA,OAAYM,YAAA,YAAsBN,EAAA,OAAYM,YAAA,kBAAAC,OAAqCC,IAApRV,KAAoRR,QAAAmB,IAAA,WAApRX,KAAmTY,GAAA,KAAAV,EAAA,OAA0BM,YAAA,aAAuBN,EAAA,OAAYM,YAAA,uBAAhXR,KAAiZY,GAAjZZ,KAAiZa,GAAjZb,KAAiZJ,YAAjZI,KAAiZY,GAAA,KAAAV,EAAA,KAAoDM,YAAA,wBAAAC,OAA2CK,KAAA,oBAAhfd,KAAygBY,GAAA,iBAElhBG,oBCCjB,IAcAC,EAdyBC,EAAQ,OAcjCC,CACE7B,EACAQ,GATF,EAVA,SAAAsB,GACEF,EAAQ,SAaV,kBAEA,MAUeG,EAAA,QAAAJ,EAAiB,4BC1BhCK,EAAAC,QAAA","file":"static/js/2.39effb7cc468a8b90c44.js","sourcesContent":["<template>\r\n <div style=\"background:#f0f2f5;margin-top: -20px;height:100%;\">\r\n <div class=\"wscn-http404\">\r\n <div class=\"pic-404\">\r\n <img class=\"pic-404__parent\" :src=\"img_403\" alt=\"403\">\r\n </div>\r\n <div class=\"bullshit\">\r\n <!-- <div class=\"bullshit__oops\">403</div> -->\r\n <div class=\"bullshit__headline\">{{ message }}</div>\r\n <a href=\"#/companyGroup\" class=\"bullshit__return-home\">返回首页</a>\r\n </div>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport img_403 from '@/assets/403_images/error_403.svg'\r\n\r\nexport default {\r\n name: 'page403',\r\n data() {\r\n return {\r\n img_403\r\n }\r\n },\r\n computed: {\r\n message() {\r\n return '抱歉,你无权访问该页面'\r\n }\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n.wscn-http404 {\r\n position: relative;\r\n width: 1200px;\r\n margin: 20px auto 60px;\r\n padding: 0 100px;\r\n overflow: hidden;\r\n .pic-404 {\r\n position: relative;\r\n float: left;\r\n width: 600px;\r\n padding: 150px 152px 150px 0;\r\n text-align: right;\r\n overflow: hidden;\r\n &__parent {\r\n width: 100%;\r\n max-width: 430px;\r\n }\r\n &__child {\r\n position: absolute;\r\n &.left {\r\n width: 80px;\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n animation-name: cloudLeft;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n &.mid {\r\n width: 46px;\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n animation-name: cloudMid;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1.2s;\r\n }\r\n &.right {\r\n width: 62px;\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n animation-name: cloudRight;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n @keyframes cloudLeft {\r\n 0% {\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 33px;\r\n left: 188px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 81px;\r\n left: 92px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 97px;\r\n left: 60px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudMid {\r\n 0% {\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 40px;\r\n left: 360px;\r\n opacity: 1;\r\n }\r\n 70% {\r\n top: 130px;\r\n left: 180px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 160px;\r\n left: 120px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudRight {\r\n 0% {\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 120px;\r\n left: 460px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 180px;\r\n left: 340px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 200px;\r\n left: 300px;\r\n opacity: 0;\r\n }\r\n }\r\n }\r\n }\r\n .bullshit {\r\n position: relative;\r\n float: left;\r\n width: 300px;\r\n padding: 150px 0;\r\n overflow: hidden;\r\n display: flex;\r\n align-items: flex-start;\r\n flex-direction: column;\r\n justify-content: center;\r\n height: 360px;\r\n &__oops {\r\n color: #434e59;\r\n font-size: 72px;\r\n font-weight: 600;\r\n line-height: 72px;\r\n margin-bottom: 24px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n &__headline {\r\n color: rgba(0,0,0,.45);\r\n font-size: 20px;\r\n line-height: 28px;\r\n margin-bottom: 16px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.1s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n\r\n &__return-home {\r\n display: inline-block;\r\n height: 32px;\r\n line-height: 32px;\r\n font-weight: 400;\r\n text-align: center;\r\n -ms-touch-action: manipulation;\r\n touch-action: manipulation;\r\n background-image: none;\r\n white-space: nowrap;\r\n padding: 0 15px;\r\n font-size: 14px;\r\n border-radius: 4px;\r\n border: 1px solid #1890ff;\r\n color: #fff;\r\n background-color: #1890ff;\r\n text-shadow: 0 -1px 0 rgba(0,0,0,.12);\r\n -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n cursor: pointer;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.3s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n @keyframes slideUp {\r\n 0% {\r\n transform: translateY(60px);\r\n opacity: 0;\r\n }\r\n 100% {\r\n transform: translateY(0);\r\n opacity: 1;\r\n }\r\n }\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/views/errorPage/403.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background\":\"#f0f2f5\",\"margin-top\":\"-20px\",\"height\":\"100%\"}},[_c('div',{staticClass:\"wscn-http404\"},[_c('div',{staticClass:\"pic-404\"},[_c('img',{staticClass:\"pic-404__parent\",attrs:{\"src\":_vm.img_403,\"alt\":\"403\"}})]),_vm._v(\" \"),_c('div',{staticClass:\"bullshit\"},[_c('div',{staticClass:\"bullshit__headline\"},[_vm._v(_vm._s(_vm.message))]),_vm._v(\" \"),_c('a',{staticClass:\"bullshit__return-home\",attrs:{\"href\":\"#/companyGroup\"}},[_vm._v(\"返回首页\")])])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-560f462e\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/errorPage/403.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-560f462e\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./403.vue\")\n}\nvar normalizeComponent = require(\"!../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./403.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./403.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-560f462e\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../node_modules/vue-loader/lib/selector?type=template&index=0!./403.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-560f462e\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views/errorPage/403.vue\n// module id = null\n// module chunks = ","module.exports = \"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAwIDMzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAwIDMzNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZBRkNGRjt9DQoJLnN0MXtmaWxsOiNEQkU1RjE7fQ0KCS5zdDJ7ZmlsbDojREVFN0Y0O30NCgkuc3Qze2ZpbGw6I0I5QzdEQjt9DQoJLnN0NHtmaWxsOiNGRkZGRkY7fQ0KCS5zdDV7ZmlsbDpub25lO3N0cm9rZTojQjlDN0RCO3N0cm9rZS13aWR0aDo0O3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Q2e2ZpbGw6bm9uZTtzdHJva2U6I0I2QzdEODtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0NSIgZD0iTTI3NC41LDI0MS4zYy01LjMtNS4zLTQuNCw0LjQtNi43LDYuN2MtMy4xLDMuMS02LjMsNi05LjcsOC42SDEyNS4yYy0zLjQtMi43LTYuNi01LjYtOS43LTguNw0KCWMtMjguNC0yOC41LTM4LjYtNzAuNS0yNi42LTEwOWwtMTAuNS0xMC42Yy01LjMtNS4zLTUuMy0xMy44LDAtMTkuMmM1LjItNS4zLDEzLjctNS4zLDE5LTAuMWMwLDAsMCwwLDAuMSwwLjFsNi42LDYuOA0KCWMzLjEsMy4yLDguMiwzLjIsMTEuNCwwbDAsMGMzLjItMy4yLDMuMi04LjMsMC0xMS41TDEwMy4xLDkyYy0zLjItMy4yLTMuMi04LjMsMC0xMS41YzMuMS0zLjIsOC4yLTMuMiwxMS40LDBsMCwwbDE3LjIsMTcuMg0KCWMtMC45LDMuNywwLjksNy42LDQuNCw5LjNjMy41LDEuNyw3LjcsMC42LDkuOS0yLjVjMi4zLTMuMSwyLjEtNy40LTAuNS0xMC4zYy0zLjMtMy44LTYuNS03LjItNi41LTcuMmwtNy4zLTcuNA0KCWMzNC44LTIxLjMsODIuNi0yMS43LDExNy4yLDBjMzQuNSwyMS43LDUzLjksNjEuMiw1MCwxMDEuOWwxNS40LDE1LjZjMy4yLDMuMiwzLjIsOC4zLDAsMTEuNWMtMy4xLDMuMi04LjIsMy4yLTExLjQsMGwwLDANCglsLTE1LjEtMTUuM2MtMy4xLTMuMi04LjItMy4yLTExLjQsMGwwLDBjLTMuMiwzLjItMy4yLDguMywwLDExLjVsMTcuMSwxNy4yYzUuMiw1LjMsNS4yLDEzLjgsMCwxOS4xDQoJQzI4OC40LDI0Ni42LDI3OS45LDI0Ni42LDI3NC41LDI0MS4zQzI3NC42LDI0MS4zLDI3NC42LDI0MS4zLDI3NC41LDI0MS4zTDI3NC41LDI0MS4zeiIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTg2LjYsNzEuNGMwLDQuNywzLjgsOC41LDguNSw4LjVjMS41LDAsMy0wLjQsNC4zLTEuMWM0LjEtMi4zLDUuNS03LjUsMy4xLTExLjZjLTEuNS0yLjYtNC4zLTQuMy03LjQtNC4zDQoJQzkwLjQsNjIuOSw4Ni42LDY2LjcsODYuNiw3MS40Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjE2LjQsMTQ1LjRoMjQuM2wtNy40LDE3LjljMi42LDEuOCw0LjUsMy44LDUuOCw2YzEuMiwyLjIsMS45LDQuOCwxLjksNy44YzAsNC42LTEuNiw4LjQtNC44LDExLjINCgljLTMuMiwyLjktNy4zLDQuMy0xMi4zLDQuM2MtMi41LDAtNS4xLTAuNC03LjUtMS4xdi0xMy4xYzIsMC45LDMuOSwxLjQsNS41LDEuNHMyLjktMC41LDMuNy0xLjRjMC45LTEsMS4zLTIuMywxLjMtNC4xDQoJYzAtMS45LTAuOC0zLjQtMi40LTQuNmMtMS42LTEuMi0zLjctMS43LTYuNC0xLjdsMy40LTkuMWgtNS4xVjE0NS40TDIxNi40LDE0NS40eiBNMjA3LjUsMTgxLjZjMCwxLjUtMC4zLDMtMC44LDQuMw0KCXMtMS4zLDIuNS0yLjMsMy41cy0yLjIsMS44LTMuNCwyLjNjLTEuMywwLjYtMi44LDAuOS00LjMsMC45aC05LjZjLTEuNSwwLTIuOS0wLjMtNC4zLTAuOWMtMS4zLTAuNi0yLjUtMS4zLTMuNC0yLjMNCgljLTAuNC0wLjQtMC44LTAuOS0xLjItMS40bDExLjctMTcuM3Y2YzAsMC42LDAuMiwxLjEsMC42LDEuNGMwLjQsMC40LDAuOCwwLjYsMS40LDAuNmMxLjEsMCwyLTAuOCwyLTEuOXYtMC4xdi0xMS45bDEwLjktMTYuMQ0KCWMxLjgsMiwyLjgsNC42LDIuNyw3LjNMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZMMjA3LjUsMTgxLjZ6IE0xNzcuMSwxODUuOWMtMC42LTEuNC0wLjktMi44LTAuOC00LjNWMTU2YzAtMS41LDAuMy0zLDAuOC00LjMNCglzMS4zLTIuNSwyLjMtMy41czIuMi0xLjgsMy40LTIuM2MxLjMtMC42LDIuOC0wLjksNC4zLTAuOWg5LjZjMS41LDAsMi45LDAuMyw0LjMsMC45YzEuMywwLjUsMi40LDEuMywzLjQsMi4zbC0xMC41LDE1LjR2LTIuNw0KCWMwLTAuNS0wLjItMS4xLTAuNi0xLjRjLTAuNC0wLjQtMC45LTAuNi0xLjQtMC42Yy0xLjEsMC0yLDAuOC0yLDEuOXYwLjF2OC42bC0xMi4xLDE3LjlDMTc3LjUsMTg2LjksMTc3LjMsMTg2LjQsMTc3LjEsMTg1LjkNCglMMTc3LjEsMTg1Ljl6IE0yNDMuOCwxOTIuN2MzLjUtNy40LDUuMy0xNS41LDUuMy0yMy43YzAtMzAuNS0yNC40LTU1LjItNTQuNi01NS4ycy01NC42LDI0LjctNTQuNiw1NS4yYzAsMC40LDAsMC44LDAsMS4xDQoJbDE5LjYtMjQuNmgxMS40TDE1NCwxNzEuM2g1LjV2LTYuNWwxMS43LTE4LjV2NDYuOGgtMTEuN3YtOS44aC0xNy44YzUuMSwxOS4yLDIwLjEsMzQuMywzOS4yLDM5LjJjLTEuMiwzLjEtNC44LDEwLjctMTAuNywxMg0KCWMtNy4zLDEuNywxOS45LDAuNCwzOS40LTEyLjVjMTQuOS00LjQsMjcuMi0xNSwzMy45LTI4LjlMMjQzLjgsMTkyLjdMMjQzLjgsMTkyLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3Q0IiBkPSJNMjM4LjksMTU0LjNsLTI0LjQsMzUuNGwwLjUsMC4zbDI0LjQtMzUuNEwyMzguOSwxNTQuM3oiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yNjYuMiw2Ni42aDhjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjIsMC4zLTAuNiwwLjQtMC45LDAuNGgtOA0KCWMtMC40LDAtMC43LTAuMS0wLjktMC40Yy0wLjUtMC41LTAuNS0xLjQsMC0xLjlDMjY1LjUsNjYuNywyNjUuOCw2Ni42LDI2Ni4yLDY2LjYgTTExNi41LDIwMS45Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJczgtMy42LDgtOC4xUzEyMC45LDIwMS45LDExNi41LDIwMS45TDExNi41LDIwMS45eiBNMTIxLjQsMjEyLjFjLTAuOCwyLTIuOCwzLjMtNC45LDMuM2MtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4xLDMuMy01DQoJYzItMC44LDQuMy0wLjQsNS44LDEuMkMxMjEuOCwyMDcuNywxMjIuMiwyMTAsMTIxLjQsMjEyLjFMMTIxLjQsMjEyLjF6IE0xOTEuMyw3OC43Yy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xDQoJYzIuMSwwLDQuMi0wLjksNS43LTIuNHMyLjMtMy42LDIuMy01LjdDMTk5LjMsODIuNCwxOTUuNyw3OC43LDE5MS4zLDc4Ljd6IE0xOTYuMyw4OC45Yy0wLjgsMi0yLjgsMy4zLTQuOSwzLjMNCgljLTMsMC01LjMtMi40LTUuMy01LjRjMC0yLjIsMS4zLTQuMiwzLjMtNXM0LjMtMC40LDUuOCwxLjJDMTk2LjYsODQuNiwxOTcuMSw4Ni45LDE5Ni4zLDg4LjlMMTk2LjMsODguOXogTTI3MC4yLDE2Mi42DQoJYy00LjQsMC04LDMuNi04LDguMXMzLjYsOC4xLDgsOC4xczgtMy42LDgtOC4xQzI3OC4yLDE2Ni4zLDI3NC42LDE2Mi42LDI3MC4yLDE2Mi42eiBNMjc1LjEsMTcyLjhjLTAuOCwyLTIuOCwzLjMtNC45LDMuMw0KCWMtMywwLTUuMy0yLjQtNS4zLTUuNGMwLTIuMiwxLjMtNC4yLDMuMy01czQuMy0wLjQsNS44LDEuMlMyNzUuOSwxNzAuOCwyNzUuMSwxNzIuOHogTTIzMC4xLDMxLjRjLTQuNCwwLTgsMy42LTgsOC4xczMuNiw4LjEsOCw4LjENCgljMi4xLDAsNC4yLTAuOSw1LjctMi40czIuMy0zLjYsMi4zLTUuN0MyMzguMSwzNSwyMzQuNSwzMS40LDIzMC4xLDMxLjR6IE0yMzUsNDEuNmMtMC44LDItMi44LDMuMy00LjksMy4zYy0zLDAtNS4zLTIuNC01LjMtNS40DQoJYzAtMi4yLDEuMy00LjIsMy4zLTVzNC4zLTAuNCw1LjgsMS4yQzIzNS40LDM3LjIsMjM1LjgsMzkuNSwyMzUsNDEuNnoiLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xNjMuMiw0NS45aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuNSwwLjUsMC41LDEuMywwLDEuOWwwLDBjLTAuMywwLjMtMC42LDAuNC0xLDAuNGgtOC4yDQoJYy0wLjQsMC0wLjctMC4xLTEtMC40Yy0wLjUtMC41LTAuNS0xLjMsMC0xLjlsMCwwQzE2Mi40LDQ2LjEsMTYyLjgsNDUuOSwxNjMuMiw0NS45IE0yNzEuNyw2My41djhjMCwwLjQtMC4xLDAuNy0wLjQsMC45DQoJYy0wLjMsMC4zLTAuNiwwLjQtMSwwLjRjLTAuNywwLTEuNC0wLjYtMS40LTEuM2wwLDB2LThjMC0wLjQsMC4xLTAuNywwLjQtMC45YzAuNS0wLjUsMS40LTAuNSwxLjksMA0KCUMyNzEuNiw2Mi44LDI3MS43LDYzLjIsMjcxLjcsNjMuNSIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTEwNy40LDE1NC44aDguMmMwLjQsMCwwLjcsMC4xLDEsMC40YzAuMywwLjIsMC40LDAuNiwwLjQsMC45YzAsMC43LTAuNiwxLjMtMS40LDEuM2gtOC4yDQoJYy0wLjUsMC0wLjktMC4zLTEuMi0wLjdjLTAuMi0wLjQtMC4yLTAuOSwwLTEuM0MxMDYuNCwxNTUuMSwxMDYuOSwxNTQuOCwxMDcuNCwxNTQuOCBNMTY5LDQyLjd2OGMwLDAuNC0wLjEsMC43LTAuNCwwLjkNCgljLTAuNSwwLjUtMS40LDAuNS0yLDBjLTAuMi0wLjItMC40LTAuNi0wLjQtMC45di04YzAtMC40LDAuMS0wLjcsMC40LTAuOWMwLjUtMC41LDEuNC0wLjUsMS45LDBDMTY4LjgsNDIsMTY5LDQyLjMsMTY5LDQyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0yMzAuOSwxMTAuM2g4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS40YzAsMC43LTAuNiwxLjMtMS4zLDEuNGgtOC4xYy0wLjgsMC0xLjQtMC42LTEuNC0xLjQNCgljMC0wLjQsMC4xLTAuNywwLjQtMUMyMzAuMiwxMTAuNCwyMzAuNiwxMTAuMywyMzAuOSwxMTAuMyIvPg0KPHBhdGggY2xhc3M9InN0MyIgZD0iTTExNC42LDE2My44djguMmMwLDAuNC0wLjEsMC43LTAuNCwxYy0wLjUsMC41LTEuNCwwLjUtMS45LDBjLTAuMy0wLjMtMC40LTAuNi0wLjQtMXYtOC4yYzAtMC40LDAuMS0wLjcsMC40LTENCgljMC41LTAuNSwxLjQtMC41LDEuOSwwbDAsMEMxMTQuNCwxNjMuMSwxMTQuNiwxNjMuNCwxMTQuNiwxNjMuOCIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEyNiwyNzIuN2g2MC40YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40SDEyNmMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzEyNC43LDI3My4zLDEyNS4zLDI3Mi43LDEyNiwyNzIuNyIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTIxOC42LDI3Mi43aDM0LjljMC43LDAsMS4zLDAuNiwxLjMsMS4zYzAsMC43LTAuNiwxLjMtMS4zLDEuM2gtMzQuOWMtMC43LDAtMS4zLTAuNi0xLjQtMS4zDQoJYzAtMC40LDAuMS0wLjcsMC40LTFDMjE3LjksMjcyLjksMjE4LjIsMjcyLjcsMjE4LjYsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNTguMiwyODIuMmgxMzEuNWMwLjcsMCwxLjMsMC42LDEuNCwxLjNjMCwwLjQtMC4xLDAuNy0wLjQsMWMtMC4zLDAuMy0wLjYsMC40LTEsMC40SDE1OC4yDQoJYy0wLjcsMC0xLjMtMC42LTEuMy0xLjNsMCwwQzE1Ni45LDI4Mi44LDE1Ny41LDI4Mi4yLDE1OC4yLDI4Mi4yIi8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuOCwyODIuMmgzNC45YzAuNywwLDEuMywwLjYsMS4zLDEuM2wwLDBjMCwwLjctMC42LDEuMy0xLjMsMS40bDAsMEg5My44Yy0wLjcsMC0xLjMtMC42LTEuNC0xLjMNCgljMC0wLjQsMC4xLTAuNywwLjQtMUM5My4xLDI4Mi4zLDkzLjUsMjgyLjIsOTMuOCwyODIuMiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTE5Ny4xLDI3Mi43aDguMWMwLjcsMCwxLjMsMC42LDEuMywxLjNjMCwwLjctMC42LDEuMy0xLjMsMS4zaC04LjFjLTAuNywwLjEtMS40LTAuNS0xLjQtMS4zDQoJYy0wLjEtMC43LDAuNS0xLjQsMS4zLTEuNEMxOTcsMjcyLjcsMTk3LjEsMjcyLjcsMTk3LjEsMjcyLjciLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0yODQuNCwyNjQuNmg4LjFjMC43LDAsMS4zLDAuNiwxLjMsMS4zbDAsMGMwLDAuNy0wLjYsMS4zLTEuMywxLjNoLTguMWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zDQoJQzI4MywyNjUuMywyODMuNiwyNjQuNiwyODQuNCwyNjQuNiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTk5LjIsMjY0LjZoMTcxLjdjMC40LDAsMC43LDAuMSwwLjksMC40YzAuNCwwLjQsMC41LDEsMC4zLDEuNWMtMC4yLDAuNS0wLjcsMC44LTEuMiwwLjhIOTkuMQ0KCWMtMC43LDAtMS4zLTAuNi0xLjMtMS4zQzk3LjgsMjY1LjMsOTguNCwyNjQuNiw5OS4yLDI2NC42Ii8+DQo8cGF0aCBjbGFzcz0ic3QzIiBkPSJNMjM1LDk1Ljh2OC4xYzAsMC43LTAuNiwxLjMtMS4zLDEuM3MtMS4zLTAuNi0xLjMtMS4zdi04LjFjMC0wLjcsMC42LTEuMywxLjMtMS40QzIzNC40LDk0LjQsMjM1LDk1LDIzNSw5NS44Ig0KCS8+DQo8L3N2Zz4NCg==\"\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/403_images/error_403.svg\n// module id = CkW6\n// module chunks = 0 2"],"sourceRoot":""}
\ No newline at end of file
webpackJsonp([3],{"/4Tr":function(t,s){},"2X9c":function(t,s,i){t.exports=i.p+"static/img/error_500.ed0cba4.svg"},FskK:function(t,s,i){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var e=i("2X9c"),a=i.n(e),n={name:"page500",data:function(){return{img_500:a.a}},computed:{message:function(){return"抱歉,服务器出错了"}}},r={render:function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[s("div",{staticClass:"wscn-http404"},[s("div",{staticClass:"pic-404"},[s("img",{staticClass:"pic-404__parent",attrs:{src:this.img_500,alt:"500"}})]),this._v(" "),s("div",{staticClass:"bullshit"},[s("div",{staticClass:"bullshit__headline"},[this._v(this._s(this.message))]),this._v(" "),s("a",{staticClass:"bullshit__return-home",attrs:{href:"#/companyGroup"}},[this._v("返回首页")])])])])},staticRenderFns:[]};var c=i("VU/8")(n,r,!1,function(t){i("/4Tr")},"data-v-4bf06e19",null);s.default=c.exports}});
//# sourceMappingURL=3.6017c2d464a188e3cc3a.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/assets/500_images/error_500.svg","webpack:///src/views/errorPage/500.vue","webpack:///./src/views/errorPage/500.vue?6907","webpack:///./src/views/errorPage/500.vue"],"names":["module","exports","__webpack_require__","p","_00","name","data","img_500","error_500_default","a","computed","message","errorPage_500","render","_h","this","$createElement","_c","_self","staticStyle","background","margin-top","height","staticClass","attrs","src","alt","_v","_s","href","staticRenderFns","Component","normalizeComponent","ssrContext","__webpack_exports__"],"mappings":"gEAAAA,EAAAC,QAAiBC,EAAAC,EAAuB,gJCkBxCC,GACAC,KAAA,UACAC,KAFA,WAGA,OACAC,QAAAC,EAAAC,IAGAC,UACAC,QADA,WAEA,qBCxBeC,GADEC,OAFjB,WAA0B,IAAaC,EAAbC,KAAaC,eAA0BC,EAAvCF,KAAuCG,MAAAD,IAAAH,EAAwB,OAAAG,EAAA,OAAiBE,aAAaC,WAAA,UAAAC,aAAA,QAAAC,OAAA,UAA6DL,EAAA,OAAYM,YAAA,iBAA2BN,EAAA,OAAYM,YAAA,YAAsBN,EAAA,OAAYM,YAAA,kBAAAC,OAAqCC,IAApRV,KAAoRR,QAAAmB,IAAA,WAApRX,KAAmTY,GAAA,KAAAV,EAAA,OAA0BM,YAAA,aAAuBN,EAAA,OAAYM,YAAA,uBAAhXR,KAAiZY,GAAjZZ,KAAiZa,GAAjZb,KAAiZJ,YAAjZI,KAAiZY,GAAA,KAAAV,EAAA,KAAoDM,YAAA,wBAAAC,OAA2CK,KAAA,oBAAhfd,KAAygBY,GAAA,iBAElhBG,oBCCjB,IAcAC,EAdyB7B,EAAQ,OAcjC8B,CACE5B,EACAQ,GATF,EAVA,SAAAqB,GACE/B,EAAQ,SAaV,kBAEA,MAUegC,EAAA,QAAAH,EAAiB","file":"static/js/3.6017c2d464a188e3cc3a.js","sourcesContent":["module.exports = __webpack_public_path__ + \"static/img/error_500.ed0cba4.svg\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/500_images/error_500.svg\n// module id = 2X9c\n// module chunks = 0 3","<template>\r\n <div style=\"background:#f0f2f5;margin-top: -20px;height:100%;\">\r\n <div class=\"wscn-http404\">\r\n <div class=\"pic-404\">\r\n <img class=\"pic-404__parent\" :src=\"img_500\" alt=\"500\">\r\n </div>\r\n <div class=\"bullshit\">\r\n <!-- <div class=\"bullshit__oops\">500</div> -->\r\n <div class=\"bullshit__headline\">{{ message }}</div>\r\n <a href=\"#/companyGroup\" class=\"bullshit__return-home\">返回首页</a>\r\n </div>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport img_500 from '@/assets/500_images/error_500.svg'\r\n\r\nexport default {\r\n name: 'page500',\r\n data() {\r\n return {\r\n img_500\r\n }\r\n },\r\n computed: {\r\n message() {\r\n return '抱歉,服务器出错了'\r\n }\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n.wscn-http404 {\r\n position: relative;\r\n width: 1200px;\r\n margin: 20px auto 60px;\r\n padding: 0 100px;\r\n overflow: hidden;\r\n .pic-404 {\r\n position: relative;\r\n float: left;\r\n width: 600px;\r\n padding: 150px 152px 150px 0;\r\n text-align: right;\r\n overflow: hidden;\r\n &__parent {\r\n width: 100%;\r\n max-width: 430px;\r\n }\r\n &__child {\r\n position: absolute;\r\n &.left {\r\n width: 80px;\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n animation-name: cloudLeft;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n &.mid {\r\n width: 46px;\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n animation-name: cloudMid;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1.2s;\r\n }\r\n &.right {\r\n width: 62px;\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n animation-name: cloudRight;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n @keyframes cloudLeft {\r\n 0% {\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 33px;\r\n left: 188px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 81px;\r\n left: 92px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 97px;\r\n left: 60px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudMid {\r\n 0% {\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 40px;\r\n left: 360px;\r\n opacity: 1;\r\n }\r\n 70% {\r\n top: 130px;\r\n left: 180px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 160px;\r\n left: 120px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudRight {\r\n 0% {\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 120px;\r\n left: 460px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 180px;\r\n left: 340px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 200px;\r\n left: 300px;\r\n opacity: 0;\r\n }\r\n }\r\n }\r\n }\r\n .bullshit {\r\n position: relative;\r\n float: left;\r\n width: 300px;\r\n padding: 150px 0;\r\n overflow: hidden;\r\n display: flex;\r\n align-items: flex-start;\r\n flex-direction: column;\r\n justify-content: center;\r\n height: 360px;\r\n &__oops {\r\n color: #434e59;\r\n font-size: 72px;\r\n font-weight: 600;\r\n line-height: 72px;\r\n margin-bottom: 24px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n &__headline {\r\n color: rgba(0,0,0,.45);\r\n font-size: 20px;\r\n line-height: 28px;\r\n margin-bottom: 16px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.1s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n\r\n &__return-home {\r\n display: inline-block;\r\n height: 32px;\r\n line-height: 32px;\r\n font-weight: 400;\r\n text-align: center;\r\n -ms-touch-action: manipulation;\r\n touch-action: manipulation;\r\n background-image: none;\r\n white-space: nowrap;\r\n padding: 0 15px;\r\n font-size: 14px;\r\n border-radius: 4px;\r\n border: 1px solid #1890ff;\r\n color: #fff;\r\n background-color: #1890ff;\r\n text-shadow: 0 -1px 0 rgba(0,0,0,.12);\r\n -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n cursor: pointer;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.3s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n @keyframes slideUp {\r\n 0% {\r\n transform: translateY(60px);\r\n opacity: 0;\r\n }\r\n 100% {\r\n transform: translateY(0);\r\n opacity: 1;\r\n }\r\n }\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/views/errorPage/500.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background\":\"#f0f2f5\",\"margin-top\":\"-20px\",\"height\":\"100%\"}},[_c('div',{staticClass:\"wscn-http404\"},[_c('div',{staticClass:\"pic-404\"},[_c('img',{staticClass:\"pic-404__parent\",attrs:{\"src\":_vm.img_500,\"alt\":\"500\"}})]),_vm._v(\" \"),_c('div',{staticClass:\"bullshit\"},[_c('div',{staticClass:\"bullshit__headline\"},[_vm._v(_vm._s(_vm.message))]),_vm._v(\" \"),_c('a',{staticClass:\"bullshit__return-home\",attrs:{\"href\":\"#/companyGroup\"}},[_vm._v(\"返回首页\")])])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-4bf06e19\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/errorPage/500.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-4bf06e19\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./500.vue\")\n}\nvar normalizeComponent = require(\"!../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./500.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./500.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-4bf06e19\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../node_modules/vue-loader/lib/selector?type=template&index=0!./500.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-4bf06e19\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views/errorPage/500.vue\n// module id = null\n// module chunks = "],"sourceRoot":""}
\ No newline at end of file
webpackJsonp([4],{AejC:function(t,s,i){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var e=i("Minx"),a=i.n(e),n={name:"page404",data:function(){return{img_404:a.a}},computed:{message:function(){return"抱歉,你访问的页面不存在"}},mounted:function(){console.log(this.$route.path)}},c={render:function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticStyle:{background:"#f0f2f5","margin-top":"-20px",height:"100%"}},[s("div",{staticClass:"wscn-http404"},[s("div",{staticClass:"pic-404"},[s("img",{staticClass:"pic-404__parent",attrs:{src:this.img_404,alt:"404"}})]),this._v(" "),s("div",{staticClass:"bullshit"},[s("div",{staticClass:"bullshit__headline"},[this._v(this._s(this.message))]),this._v(" "),s("a",{staticClass:"bullshit__return-home",attrs:{href:"#/companyGroup"}},[this._v("返回首页")])])])])},staticRenderFns:[]};var r=i("VU/8")(n,c,!1,function(t){i("dqqc")},"data-v-12e12bd8",null);s.default=r.exports},Minx:function(t,s,i){t.exports=i.p+"static/img/error_404.bf58747.svg"},dqqc:function(t,s){}});
//# sourceMappingURL=4.c384492b24e03d00a718.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///src/views/errorPage/404.vue","webpack:///./src/views/errorPage/404.vue?3a3f","webpack:///./src/views/errorPage/404.vue","webpack:///./src/assets/404_images/error_404.svg"],"names":["_04","name","data","img_404","error_404_default","a","computed","message","mounted","console","log","this","$route","path","errorPage_404","render","_h","$createElement","_c","_self","staticStyle","background","margin-top","height","staticClass","attrs","src","alt","_v","_s","href","staticRenderFns","Component","__webpack_require__","normalizeComponent","ssrContext","__webpack_exports__","module","exports","p"],"mappings":"8HAkBAA,GACAC,KAAA,UACAC,KAFA,WAGA,OACAC,QAAAC,EAAAC,IAGAC,UACAC,QADA,WAEA,uBAGAC,QAZA,WAaAC,QAAAC,IAAAC,KAAAC,OAAAC,QC5BeC,GADEC,OAFjB,WAA0B,IAAaC,EAAbL,KAAaM,eAA0BC,EAAvCP,KAAuCQ,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,aAAaC,WAAA,UAAAC,aAAA,QAAAC,OAAA,UAA6DL,EAAA,OAAYM,YAAA,iBAA2BN,EAAA,OAAYM,YAAA,YAAsBN,EAAA,OAAYM,YAAA,kBAAAC,OAAqCC,IAApRf,KAAoRR,QAAAwB,IAAA,WAApRhB,KAAmTiB,GAAA,KAAAV,EAAA,OAA0BM,YAAA,aAAuBN,EAAA,OAAYM,YAAA,uBAAhXb,KAAiZiB,GAAjZjB,KAAiZkB,GAAjZlB,KAAiZJ,YAAjZI,KAAiZiB,GAAA,KAAAV,EAAA,KAAoDM,YAAA,wBAAAC,OAA2CK,KAAA,oBAAhfnB,KAAygBiB,GAAA,iBAElhBG,oBCCjB,IAcAC,EAdyBC,EAAQ,OAcjCC,CACElC,EACAc,GATF,EAVA,SAAAqB,GACEF,EAAQ,SAaV,kBAEA,MAUeG,EAAA,QAAAJ,EAAiB,8BC1BhCK,EAAAC,QAAiBL,EAAAM,EAAuB","file":"static/js/4.c384492b24e03d00a718.js","sourcesContent":["<template>\r\n <div style=\"background:#f0f2f5;margin-top: -20px;height:100%;\">\r\n <div class=\"wscn-http404\">\r\n <div class=\"pic-404\">\r\n <img class=\"pic-404__parent\" :src=\"img_404\" alt=\"404\">\r\n </div>\r\n <div class=\"bullshit\">\r\n <!-- <div class=\"bullshit__oops\">404</div> -->\r\n <div class=\"bullshit__headline\">{{ message }}</div>\r\n <a href=\"#/companyGroup\" class=\"bullshit__return-home\">返回首页</a>\r\n </div>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport img_404 from '@/assets/404_images/error_404.svg'\r\n\r\nexport default {\r\n name: 'page404',\r\n data() {\r\n return {\r\n img_404\r\n }\r\n },\r\n computed: {\r\n message() {\r\n return '抱歉,你访问的页面不存在'\r\n }\r\n },\r\n mounted(){\r\n console.log(this.$route.path)\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n.wscn-http404 {\r\n position: relative;\r\n width: 1200px;\r\n margin: 20px auto 60px;\r\n padding: 0 100px;\r\n overflow: hidden;\r\n .pic-404 {\r\n position: relative;\r\n float: left;\r\n width: 600px;\r\n padding: 150px 152px 150px 0;\r\n text-align: right;\r\n overflow: hidden;\r\n &__parent {\r\n width: 100%;\r\n max-width: 430px;\r\n }\r\n &__child {\r\n position: absolute;\r\n &.left {\r\n width: 80px;\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n animation-name: cloudLeft;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n &.mid {\r\n width: 46px;\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n animation-name: cloudMid;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1.2s;\r\n }\r\n &.right {\r\n width: 62px;\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n animation-name: cloudRight;\r\n animation-duration: 2s;\r\n animation-timing-function: linear;\r\n animation-fill-mode: forwards;\r\n animation-delay: 1s;\r\n }\r\n @keyframes cloudLeft {\r\n 0% {\r\n top: 17px;\r\n left: 220px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 33px;\r\n left: 188px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 81px;\r\n left: 92px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 97px;\r\n left: 60px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudMid {\r\n 0% {\r\n top: 10px;\r\n left: 420px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 40px;\r\n left: 360px;\r\n opacity: 1;\r\n }\r\n 70% {\r\n top: 130px;\r\n left: 180px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 160px;\r\n left: 120px;\r\n opacity: 0;\r\n }\r\n }\r\n @keyframes cloudRight {\r\n 0% {\r\n top: 100px;\r\n left: 500px;\r\n opacity: 0;\r\n }\r\n 20% {\r\n top: 120px;\r\n left: 460px;\r\n opacity: 1;\r\n }\r\n 80% {\r\n top: 180px;\r\n left: 340px;\r\n opacity: 1;\r\n }\r\n 100% {\r\n top: 200px;\r\n left: 300px;\r\n opacity: 0;\r\n }\r\n }\r\n }\r\n }\r\n .bullshit {\r\n position: relative;\r\n float: left;\r\n width: 300px;\r\n padding: 150px 0;\r\n overflow: hidden;\r\n display: flex;\r\n align-items: flex-start;\r\n flex-direction: column;\r\n justify-content: center;\r\n height: 360px;\r\n &__oops {\r\n color: #434e59;\r\n font-size: 72px;\r\n font-weight: 600;\r\n line-height: 72px;\r\n margin-bottom: 24px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n &__headline {\r\n color: rgba(0,0,0,.45);\r\n font-size: 20px;\r\n line-height: 28px;\r\n margin-bottom: 16px;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.1s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n\r\n &__return-home {\r\n display: inline-block;\r\n height: 32px;\r\n line-height: 32px;\r\n font-weight: 400;\r\n text-align: center;\r\n -ms-touch-action: manipulation;\r\n touch-action: manipulation;\r\n background-image: none;\r\n white-space: nowrap;\r\n padding: 0 15px;\r\n font-size: 14px;\r\n border-radius: 4px;\r\n border: 1px solid #1890ff;\r\n color: #fff;\r\n background-color: #1890ff;\r\n text-shadow: 0 -1px 0 rgba(0,0,0,.12);\r\n -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n box-shadow: 0 2px 0 rgba(0,0,0,.035);\r\n cursor: pointer;\r\n /*animation-name: slideUp;\r\n animation-duration: 0.5s;\r\n animation-delay: 0.3s;\r\n animation-fill-mode: forwards;*/\r\n }\r\n @keyframes slideUp {\r\n 0% {\r\n transform: translateY(60px);\r\n opacity: 0;\r\n }\r\n 100% {\r\n transform: translateY(0);\r\n opacity: 1;\r\n }\r\n }\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/views/errorPage/404.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background\":\"#f0f2f5\",\"margin-top\":\"-20px\",\"height\":\"100%\"}},[_c('div',{staticClass:\"wscn-http404\"},[_c('div',{staticClass:\"pic-404\"},[_c('img',{staticClass:\"pic-404__parent\",attrs:{\"src\":_vm.img_404,\"alt\":\"404\"}})]),_vm._v(\" \"),_c('div',{staticClass:\"bullshit\"},[_c('div',{staticClass:\"bullshit__headline\"},[_vm._v(_vm._s(_vm.message))]),_vm._v(\" \"),_c('a',{staticClass:\"bullshit__return-home\",attrs:{\"href\":\"#/companyGroup\"}},[_vm._v(\"返回首页\")])])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-12e12bd8\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/errorPage/404.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-12e12bd8\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./404.vue\")\n}\nvar normalizeComponent = require(\"!../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./404.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../node_modules/vue-loader/lib/selector?type=script&index=0!./404.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-12e12bd8\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../node_modules/vue-loader/lib/selector?type=template&index=0!./404.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-12e12bd8\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views/errorPage/404.vue\n// module id = null\n// module chunks = ","module.exports = __webpack_public_path__ + \"static/img/error_404.bf58747.svg\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/404_images/error_404.svg\n// module id = Minx\n// module chunks = 0 4"],"sourceRoot":""}
\ No newline at end of file
webpackJsonp([6],{"4qCZ":function(e,n){},"5tgt":function(e,n,t){e.exports=function(e,n){return function(o){t("Opzk")("./"+e+"/"+n+".vue").then(function(e){o(e)})}}},"6jtR":function(e,n){},NHnr:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var o=t("//Fk"),r=t.n(o),i=t("7+uW"),s={render:function(){var e=this.$createElement,n=this._self._c||e;return n("div",{attrs:{id:"app"}},[n("transition",{attrs:{name:"fade",mode:"out-in"}},[n("router-view")],1)],1)},staticRenderFns:[]};var a=t("VU/8")({name:"App",data:function(){return{}}},s,!1,function(e){t("6jtR")},null,null).exports,u=t("/ocq"),c=t("5tgt"),d=t.n(c);i.default.use(u.a);var l=function(e){t.e(0).then(t.bind(null,"ODjX")).then(function(n){e(n)})};window.sessionStorage.getItem("token")&&store.commit(types.LOGIN,window.sessionStorage.getItem("token"));var p,f=[{path:"/index",name:"index",component:d()("index","index")},{path:"/staffRecordsTemplate",name:"员工档案",component:d()("contacts","staffRecordsTemplate")},{path:"/403",name:"无权访问",component:l},{path:"/404",name:"error404",component:l},{path:"/500",name:"error500",component:l},{path:"*",redirect:"/404",hidden:!0}],m=new u.a({routes:f,scrollBehavior:function(){return{y:0}}}),h=t("zL8q"),g=t.n(h),w=t("Rf8U"),v=t.n(w),V=t("mtWM"),k=t.n(V),b=t("bOdI"),x=t.n(b),C=t("NYxO");i.default.use(C.a);var O=new C.a.Store({state:{user:{},token:null,title:"",show:!1},mutations:(p={},x()(p,"login",function(e,n){sessionStorage.token=n,e.token=n}),x()(p,"logout",function(e){sessionStorage.removeItem("token"),e.token=null}),x()(p,"title",function(e,n){e.title=n}),x()(p,"show",function(e,n){e.show=n}),p)}),_=(t("4qCZ"),t("uKUT"),t("Xcu2"),{}),W=[],j=navigator.userAgent,y=j.match(/(Android);?[\s\/]+([\d.]+)?/),A=j.match(/(iPad).*OS\s([\d_]+)/),P=j.match(/(iPod)(.*OS\s([\d_]+))?/),S=!A&&j.match(/(iPhone\sOS)\s([\d_]+)/);if(_.userAgent=j,_.ios=_.android=_.iphone=_.ipad=_.androidChrome=!1,y&&(_.os="android",_.osVersion=y[2],_.android=!0,_.androidChrome=j.toLowerCase().indexOf("chrome")>=0),(A||S||P)&&(_.os="ios",_.ios=!0),S&&!P&&(_.osVersion=S[2].replace(/_/g,"."),_.iphone=!0),A&&(_.osVersion=A[2].replace(/_/g,"."),_.ipad=!0),P&&(_.osVersion=P[3]?P[3].replace(/_/g,"."):null,_.iphone=!0),_.ios&&_.osVersion&&j.indexOf("Version/")>=0&&"10"===_.osVersion.split(".")[0]&&(_.osVersion=j.toLowerCase().split("version/")[1].split(" ")[0]),_.webView=(S||A||P)&&j.match(/.*AppleWebKit(?!.*Safari)/i),_.os&&(W.push(_.os,_.os+"-"+_.osVersion.split(".")[0],_.os+"-"+_.osVersion.replace(/\./g,"-")),"ios"===_.os))for(var B=parseInt(_.osVersion.split(".")[0],10)-1;B>=6;B--)W.push("ios-gt-"+B);_.isWeixin=/MicroMessenger/i.test(j);var J=_;function R(e){if(window.WebViewJavascriptBridge)return e(window.WebViewJavascriptBridge);if(J.android)document.addEventListener("WebViewJavascriptBridgeReady",function(){e(WebViewJavascriptBridge)},!1);else{if(window.WVJBCallbacks)return window.WVJBCallbacks.push(e);window.WVJBCallbacks=[e];var n=document.createElement("iframe");n.style.display="none",n.src="https://__bridge_loaded__",document.documentElement.appendChild(n),setTimeout(function(){document.documentElement.removeChild(n)},0)}}var E={callhandler:function(e,n,t){R(function(o){o.callHandler(e,n,t)})},registerhandler:function(e,n){R(function(t){t.registerHandler(e,function(e,t){n(e,t)})})}};t("Lw6n");i.default.prototype.$bridge=E,i.default.config.productionTip=!1,i.default.use(g.a,{size:"large"}),i.default.use(v.a,k.a),i.default.axios.defaults.withCredentials=!0,i.default.axios.interceptors.request.use(function(e){return e},function(e){return console.log("requesterr"+e),r.a.reject(e)}),i.default.axios.interceptors.response.use(function(e){return console.log("main:",e),200==e.status&&1==e.data.errorCode&&console.log("main:",e),e},function(e){if(console.log(e),e.response)switch(e.response.status){case 401:case 500:h.Message.error("服务器500")}return r.a.reject(e.response.data)}),m.beforeEach(function(e,n,t){"/"==e.path?t({path:"/login"}):t()}),new i.default({el:"#app",router:m,store:O,components:{App:a},template:"<App/>"})},Opzk:function(e,n,t){var o={"./contacts/staffRecordsTemplate.vue":["lFAe",1],"./errorPage/403.vue":["6XGN",2],"./errorPage/404.vue":["AejC",4],"./errorPage/500.vue":["FskK",3],"./errorPage/index.vue":["ODjX",0]};function r(e){var n=o[e];return n?t.e(n[1]).then(function(){return t(n[0])}):Promise.reject(new Error("Cannot find module '"+e+"'."))}r.keys=function(){return Object.keys(o)},r.id="Opzk",e.exports=r},Xcu2:function(e,n){},uKUT:function(e,n){}},["NHnr"]);
//# sourceMappingURL=app.6dbbdcbb85feb53150b7.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///./src/router/_import.js","webpack:///./src/App.vue?1aa4","webpack:///./src/App.vue","webpack:///src/App.vue","webpack:///./src/router/index.js","webpack:///./src/store/store.js","webpack:///./src/store/types.js","webpack:///./src/api/device.js","webpack:///./src/api/jsBridge.js","webpack:///./src/main.js","webpack:///./src/views lazy ^\\.\\/.*\\.vue$"],"names":["module","exports","parantfile","file","r","__webpack_require__","then","selectortype_template_index_0_src_App","render","_h","this","$createElement","_c","_self","attrs","id","name","mode","staticRenderFns","src_App","normalizeComponent","data","ssrContext","Vue","use","Router","errorPage","e","bind","window","sessionStorage","getItem","store","commit","types","LOGIN","constantRouterMap","path","component","_import","redirect","hidden","router","routes","scrollBehavior","y","Vuex","store_store","Store","state","user","token","title","show","mutations","defineProperty_default","_mutations","removeItem","device","classNames","ua","navigator","userAgent","android","match","ipad","ipod","iphone","ios","androidChrome","os","osVersion","toLowerCase","indexOf","replace","split","webView","push","i","parseInt","isWeixin","test","setupWebViewJavascriptBridge","callback","WebViewJavascriptBridge","document","addEventListener","WVJBCallbacks","WVJBIframe","createElement","style","display","src","documentElement","appendChild","setTimeout","removeChild","jsBridge","callhandler","bridge","callHandler","registerhandler","registerHandler","responseCallback","prototype","$bridge","Bridge","config","productionTip","ElementUI","size","VueAxios","axios","defaults","withCredentials","interceptors","request","err","console","log","promise_default","a","reject","response","status","errorCode","error","Message","beforeEach","to","from","next","el","components","App","template","map","./contacts/staffRecordsTemplate.vue","./errorPage/403.vue","./errorPage/404.vue","./errorPage/500.vue","./errorPage/index.vue","webpackAsyncContext","req","ids","Promise","Error","keys","Object"],"mappings":"gEAAAA,EAAOC,QAAU,SAACC,EAAWC,GAAZ,OAAqB,SAACC,GACrCC,EAAA,OAAAA,CAAA,KAAiBH,EAAa,IAAMC,EAAO,QAAQG,KAAK,SAACN,GACvDI,EAAEJ,uJCCSO,GADEC,OAFjB,WAA0B,IAAaC,EAAbC,KAAaC,eAA0BC,EAAvCF,KAAuCG,MAAAD,IAAAH,EAAwB,OAAAG,EAAA,OAAiBE,OAAOC,GAAA,SAAYH,EAAA,cAAmBE,OAAOE,KAAA,OAAAC,KAAA,YAA+BL,EAAA,wBAErKM,oBCCjB,IAuBeC,EAvBUd,EAAQ,OAcjCe,ECPAJ,KAAA,MACAK,KAFA,WAGA,WDOEd,GATF,EAVA,SAAAe,GACEjB,EAAQ,SAaV,KAEA,MAUgC,yCEvBhCkB,UAAIC,IAAIC,KAiBR,IAAMC,EAAY,SAACtB,GACjBC,EAAAsB,EAAA,GAAArB,KAAAD,EAAAuB,KAAA,cAAoCtB,KAAK,SAACN,GACxCI,EAAEJ,MAIF6B,OAAOC,eAAeC,QAAQ,UAChCC,MAAMC,OAAOC,MAAMC,MAAON,OAAOC,eAAeC,QAAQ,UAEnD,MAAMK,IAETC,KAAM,SACNrB,KAAM,QACNsB,UAAWC,IAAQ,QAAQ,WAI3BF,KAAM,wBACNrB,KAAM,OACNsB,UAAWC,IAAQ,WAAW,0BAG9BF,KAAM,OACNrB,KAAM,OACNsB,UAAWZ,IAGXW,KAAM,OACNrB,KAAM,WACNsB,UAAWZ,IAGXW,KAAM,OACNrB,KAAM,WACNsB,UAAWZ,IAEXW,KAAM,IAAKG,SAAU,OAAQC,QAAQ,IAE1BC,EAAA,IAAIjB,KAEjBkB,OAAQP,EACRQ,eAAgB,kBAASC,EAAG,sGCzD9BtB,UAAIC,IAAIsB,KACO,IAAAC,EAAA,IAAID,IAAKE,OACpBC,OACIC,QACAC,MAAO,KACPC,MAAO,GACPC,MAAM,GAEVC,sBCZiB,QDaE,SAACL,EAAO5B,GACnBS,eAAeqB,MAAQ9B,EACvB4B,EAAME,MAAQ9B,IAHtBkC,IAAAC,ECVkB,SDeE,SAACP,GACbnB,eAAe2B,WAAW,SAC1BR,EAAME,MAAQ,OAPtBI,IAAAC,ECRiB,QDiBE,SAACP,EAAO5B,GACnB4B,EAAMG,MAAQ/B,IAVtBkC,IAAAC,ECNgB,ODkBE,SAACP,EAAM5B,GACnB4B,EAAMI,KAAOhC,IAbnBmC,KEXAE,qCACAC,KACAC,EAAKC,UAAUC,UAEfC,EAAUH,EAAGI,MAAM,+BACnBC,EAAOL,EAAGI,MAAM,wBAChBE,EAAON,EAAGI,MAAM,2BAChBG,GAAUF,GAAQL,EAAGI,MAAM,0BAyC/B,GAvCAN,EAAOI,UAAYF,EACnBF,EAAOU,IAAMV,EAAOK,QAAUL,EAAOS,OAAST,EAAOO,KAAOP,EAAOW,eAAgB,EAG/EN,IACAL,EAAOY,GAAK,UACZZ,EAAOa,UAAYR,EAAQ,GAC3BL,EAAOK,SAAU,EACjBL,EAAOW,cAAgBT,EAAGY,cAAcC,QAAQ,WAAa,IAE7DR,GAAQE,GAAUD,KAClBR,EAAOY,GAAK,MACZZ,EAAOU,KAAM,GAGbD,IAAWD,IACXR,EAAOa,UAAYJ,EAAO,GAAGO,QAAQ,KAAM,KAC3ChB,EAAOS,QAAS,GAEhBF,IACAP,EAAOa,UAAYN,EAAK,GAAGS,QAAQ,KAAM,KACzChB,EAAOO,MAAO,GAEdC,IACAR,EAAOa,UAAYL,EAAK,GAAKA,EAAK,GAAGQ,QAAQ,KAAM,KAAO,KAC1DhB,EAAOS,QAAS,GAGhBT,EAAOU,KAAOV,EAAOa,WAAaX,EAAGa,QAAQ,aAAe,GACrB,OAAnCf,EAAOa,UAAUI,MAAM,KAAK,KAC5BjB,EAAOa,UAAYX,EAAGY,cAAcG,MAAM,YAAY,GAAGA,MAAM,KAAK,IAK5EjB,EAAOkB,SAAWT,GAAUF,GAAQC,IAASN,EAAGI,MAAM,8BAIlDN,EAAOY,KACPX,EAAWkB,KAAKnB,EAAOY,GAAIZ,EAAOY,GAAK,IAAMZ,EAAOa,UAAUI,MAAM,KAAK,GAAIjB,EAAOY,GAAK,IAAMZ,EAAOa,UAAUG,QAAQ,MAAO,MAC7G,QAAdhB,EAAOY,IAEP,IADA,IACSQ,EADGC,SAASrB,EAAOa,UAAUI,MAAM,KAAK,GAAI,IAChC,EAAGG,GAAK,EAAGA,IAC5BnB,EAAWkB,KAAK,UAAYC,GAOxCpB,EAAOsB,SAAW,kBAAkBC,KAAKrB,GAE1BF,QCYf,SAASwB,EAA6BC,GACpC,GAAItD,OAAOuD,wBACT,OAAOD,EAAStD,OAAOuD,yBAEzB,GAAM1B,EAAOK,QACXsB,SAASC,iBACP,+BACA,WACIH,EAASC,2BAEb,OANJ,CAUA,GAAIvD,OAAO0D,cACT,OAAO1D,OAAO0D,cAAcV,KAAKM,GAGnCtD,OAAO0D,eAAiBJ,GACxB,IAAIK,EAAaH,SAASI,cAAc,UACxCD,EAAWE,MAAMC,QAAU,OAC3BH,EAAWI,IAAM,4BACjBP,SAASQ,gBAAgBC,YAAYN,GACrCO,WAAW,WACTV,SAASQ,gBAAgBG,YAAYR,IACpC,IAGU,IAAAS,GACbC,YADa,SACDlF,EAAMK,EAAM8D,GACtBD,EAA6B,SAASiB,GACpCA,EAAOC,YAAYpF,EAAMK,EAAM8D,MAGnCkB,gBANa,SAMGrF,EAAMmE,GACpBD,EAA6B,SAASiB,GACpCA,EAAOG,gBAAgBtF,EAAM,SAASK,EAAMkF,GAC1CpB,EAAS9D,EAAMkF,mBChGvBhF,UAAIiF,UAAUC,QAAUC,EAGxBnF,UAAIoF,OAAOC,eAAgB,EAC3BrF,UAAIC,IAAIqF,KAAWC,KAAM,UACzBvF,UAAIC,IAAIuF,IAASC,KAEjBzF,UAAIyF,MAAMC,SAASC,iBAAkB,EACrC3F,UAAIyF,MAAMG,aAAaC,QAAQ5F,IAC7B,SAAAmF,GACE,OAAOA,GAET,SAAAU,GAEE,OADAC,QAAQC,IAAI,aAAeF,GACpBG,EAAAC,EAAQC,OAAOL,KAE1B9F,UAAIyF,MAAMG,aAAaQ,SAASnG,IAC9B,SAAAmG,GASE,OARAL,QAAQC,IAAI,QAAQI,GACE,KAAnBA,EAASC,QAA4C,GAA3BD,EAAStG,KAAKwG,WAKzCP,QAAQC,IAAI,QAAQI,GAEfA,GAET,SAAAG,GAEE,GADAR,QAAQC,IAAIO,GACRA,EAAMH,SACR,OAAQG,EAAMH,SAASC,QACrB,KAAK,IAQL,KAAK,IACHG,UAAQD,MAAM,UAGpB,OAAON,EAAAC,EAAQC,OAAOI,EAAMH,SAAStG,QAGzCqB,EAAOsF,WAAW,SAACC,EAAIC,EAAMC,GAKZ,KAAXF,EAAG5F,KACL8F,GAAO9F,KAAM,WAEb8F,MAKJ,IAAI5G,WACF6G,GAAI,OACJ1F,SACAV,QACAqG,YAAcC,OACdC,SAAU,iCCjFZ,IAAAC,GACAC,uCACA,OACA,GAEAC,uBACA,OACA,GAEAC,uBACA,OACA,GAEAC,uBACA,OACA,GAEAC,yBACA,OACA,IAGA,SAAAC,EAAAC,GACA,IAAAC,EAAAR,EAAAO,GACA,OAAAC,EAEA3I,EAAAsB,EAAAqH,EAAA,IAAA1I,KAAA,WACA,OAAAD,EAAA2I,EAAA,MAFAC,QAAAvB,OAAA,IAAAwB,MAAA,uBAAAH,EAAA,OAKAD,EAAAK,KAAA,WACA,OAAAC,OAAAD,KAAAX,IAEAM,EAAA/H,GAAA,OACAf,EAAAC,QAAA6I","file":"static/js/app.6dbbdcbb85feb53150b7.js","sourcesContent":["module.exports = (parantfile,file) => (r) => {\r\n import('views/'+ parantfile + '/' + file + '.vue').then((module) => {\r\n r(module)\r\n })\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/_import.js","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('transition',{attrs:{\"name\":\"fade\",\"mode\":\"out-in\"}},[_c('router-view')],1)],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d8072086\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/App.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-d8072086\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../node_modules/vue-loader/lib/selector?type=styles&index=0!./App.vue\")\n}\nvar normalizeComponent = require(\"!../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../node_modules/vue-loader/lib/selector?type=script&index=0!./App.vue\"\nimport __vue_script__ from \"!!babel-loader!../node_modules/vue-loader/lib/selector?type=script&index=0!./App.vue\"\n/* template */\nimport __vue_template__ from \"!!../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d8072086\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../node_modules/vue-loader/lib/selector?type=template&index=0!./App.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/App.vue\n// module id = null\n// module chunks = ","<template>\r\n <div id=\"app\">\r\n <transition name=\"fade\" mode=\"out-in\">\r\n <router-view></router-view>\r\n </transition>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nexport default {\r\n name: 'App',\r\n data() {\r\n return {\r\n\r\n }\r\n }\r\n}\r\n</script>\r\n<style>\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","import Vue from 'vue'\nimport Router from 'vue-router'\nimport _import from './_import.js'\nVue.use(Router);\n\n// const error403 = (r) => {\n// import('views/errorPage/403.vue').then((module) => {\n// r(module)\n// })\n// };\n// const error404 = (r) => {\n// import('views/errorPage/404.vue').then((module) => {\n// r(module)\n// })\n// };\n// const error500 = (r) => {\n// import('views/errorPage/500.vue').then((module) => {\n// r(module)\n// })\n// };\nconst errorPage = (r) => {\n import('views/errorPage/index.vue').then((module) => {\n r(module)\n })\n};\n// 页面刷新时,重新赋值token\nif (window.sessionStorage.getItem('token')) {\n store.commit(types.LOGIN, window.sessionStorage.getItem('token'))\n}\nexport const constantRouterMap = [\n {\n path: '/index',\n name: 'index',\n component: _import('index','index'),\n },\n\n {\n path: '/staffRecordsTemplate',\n name: '员工档案',\n component: _import('contacts','staffRecordsTemplate')\n },\n {\n path: '/403',\n name: '无权访问',\n component: errorPage\n },\n {\n path: '/404',\n name: 'error404',\n component: errorPage\n },\n {\n path: '/500',\n name: 'error500',\n component: errorPage\n },\n { path: '*', redirect: '/404', hidden: true },\n];\nexport default new Router({\n // mode:'history',\n routes: constantRouterMap,\n scrollBehavior: () => ({ y: 0 }),\n})\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","import Vuex from 'vuex'\r\nimport Vue from 'vue'\r\nimport * as types from './types'\r\n\r\nVue.use(Vuex);\r\nexport default new Vuex.Store({\r\n state: {\r\n user: {},\r\n token: null,\r\n title: '',\r\n show: false\r\n },\r\n mutations: {\r\n [types.LOGIN]: (state, data) => {\r\n sessionStorage.token = data;\r\n state.token = data;\r\n },\r\n [types.LOGOUT]: (state) => {\r\n sessionStorage.removeItem('token');\r\n state.token = null\r\n },\r\n [types.TITLE]: (state, data) => {\r\n state.title = data;\r\n },\r\n [types.SHOW]: (state,data) => {\r\n state.show = data;\r\n }\r\n }\r\n})\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/store/store.js","export const LOGIN = 'login';\r\n\r\nexport const LOGOUT = 'logout';\r\n\r\nexport const TITLE = 'title';\r\n\r\nexport const SHOW = 'show';\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/store/types.js","\"use strict\";\nlet device = {};\nlet classNames = [];\nlet ua = navigator.userAgent;\n\nlet android = ua.match(/(Android);?[\\s\\/]+([\\d.]+)?/);\nlet ipad = ua.match(/(iPad).*OS\\s([\\d_]+)/);\nlet ipod = ua.match(/(iPod)(.*OS\\s([\\d_]+))?/);\nlet iphone = !ipad && ua.match(/(iPhone\\sOS)\\s([\\d_]+)/);\n\ndevice.userAgent = ua;\ndevice.ios = device.android = device.iphone = device.ipad = device.androidChrome = false;\n\n// Android\nif (android) {\n device.os = 'android';\n device.osVersion = android[2];\n device.android = true;\n device.androidChrome = ua.toLowerCase().indexOf('chrome') >= 0;\n}\nif (ipad || iphone || ipod) {\n device.os = 'ios';\n device.ios = true;\n}\n// iOS\nif (iphone && !ipod) {\n device.osVersion = iphone[2].replace(/_/g, '.');\n device.iphone = true;\n}\nif (ipad) {\n device.osVersion = ipad[2].replace(/_/g, '.');\n device.ipad = true;\n}\nif (ipod) {\n device.osVersion = ipod[3] ? ipod[3].replace(/_/g, '.') : null;\n device.iphone = true;\n}\n// iOS 8+ changed UA\nif (device.ios && device.osVersion && ua.indexOf('Version/') >= 0) {\n if (device.osVersion.split('.')[0] === '10') {\n device.osVersion = ua.toLowerCase().split('version/')[1].split(' ')[0];\n }\n}\n\n// Webview\ndevice.webView = (iphone || ipad || ipod) && ua.match(/.*AppleWebKit(?!.*Safari)/i);\n\n\n// OS classes\nif (device.os) {\n classNames.push(device.os, device.os + '-' + device.osVersion.split('.')[0], device.os + '-' + device.osVersion.replace(/\\./g, '-'));\n if (device.os === 'ios') {\n var major = parseInt(device.osVersion.split('.')[0], 10);\n for (var i = major - 1; i >= 6; i--) {\n classNames.push('ios-gt-' + i);\n }\n }\n\n}\n\n// keng..\ndevice.isWeixin = /MicroMessenger/i.test(ua);\n\nexport default device;\n\n\n\n// WEBPACK FOOTER //\n// ./src/api/device.js","// setupBridge(function(bridge) {\n\n// window[\"bridge\"] = bridge\n\n// /*JS给ObjC提供公开的API,在ObjC端可以手动调用JS的这个API。接收ObjC传过来的参数,且可以回调ObjC*/\n// bridge.registerHandler('jsHandler', function(data, responseCallback) {\n\n// let json = JSON.parse(data)\n// let method = json['method']\n// let param = json['param']\n\n// let paramStr = JSON.stringify(param)\n// let evalMethod = method + \"(paramStr)\"\n\n// let result = eval(evalMethod);\n// responseCallback(result)\n\n// })\n\n// })\n\n\n\n\n// function setupBridge(callback) {\n\n// if (navigator.userAgent.indexOf('iPhone') > -1) {\n// setupIOSBridge(callback);\n// } else {\n// setupAndroidBridge(callback);\n// }\n// }\n\n\n// function setupAndroidBridge(callback) {\n// if (window.WebViewJavascriptBridge) {\n// callback(WebViewJavascriptBridge)\n// } else {\n// document.addEventListener(\n// 'WebViewJavascriptBridgeReady',\n// function() {\n// callback(WebViewJavascriptBridge)\n// },\n// false\n// );\n// }\n// }\n\n\n// function setupIOSBridge(callback) {\n// if (window.WebViewJavascriptBridge) {\n// return callback(WebViewJavascriptBridge);\n// }\n// if (window.WVJBCallbacks) { return window.WVJBCallbacks.push(callback); }\n// window.WVJBCallbacks = [callback];\n// var WVJBIframe = document.createElement('iframe');\n// WVJBIframe.style.display = 'none';\n// WVJBIframe.src = 'wvjbscheme://__BRIDGE_LOADED__';\n// document.documentElement.appendChild(WVJBIframe);\n// setTimeout(function() { document.documentElement.removeChild(WVJBIframe) }, 0)\n// }\n\n\n\n// function callHandler(param, method, callback) {\n// let bridge = window[\"bridge\"]\n// let data = { 'method': method, 'param': param }\n\n// bridge.callHandler('apiHandler', data, function(responseData) {\n// callback(responseData)\n// })\n// }\n\nimport device from './device'\n\nfunction setupWebViewJavascriptBridge(callback) {\n if (window.WebViewJavascriptBridge) {\n return callback(window.WebViewJavascriptBridge);\n }\n if (!!device.android) {\n document.addEventListener(\n 'WebViewJavascriptBridgeReady',\n function() {\n callback(WebViewJavascriptBridge)\n },\n false\n );\n return;\n }\n if (window.WVJBCallbacks) {\n return window.WVJBCallbacks.push(callback);\n }\n\n window.WVJBCallbacks = [callback];\n let WVJBIframe = document.createElement('iframe');\n WVJBIframe.style.display = 'none';\n WVJBIframe.src = 'https://__bridge_loaded__';\n document.documentElement.appendChild(WVJBIframe);\n setTimeout(() => {\n document.documentElement.removeChild(WVJBIframe);\n }, 0);\n}\n\nexport default {\n callhandler(name, data, callback) {\n setupWebViewJavascriptBridge(function(bridge) {\n bridge.callHandler(name, data, callback);\n })\n },\n registerhandler(name, callback) {\n setupWebViewJavascriptBridge(function(bridge) {\n bridge.registerHandler(name, function(data, responseCallback) {\n callback(data, responseCallback);\n })\n })\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/api/jsBridge.js","import Vue from 'vue'\nimport App from './App'\nimport router from './router'\nimport ElementUI ,{ Message } from 'element-ui'\nimport VueAxios from 'vue-axios'\nimport axios from 'axios'\nimport store from './store/store'\nimport * as types from './store/types'\nimport '../static/css/index.less'\n// import 'element-ui/lib/theme-chalk/index.css'\nimport '../static/font/iconfont.css'\nimport '../theme/index.css'\nimport Bridge from '@/api/jsBridge.js'\nimport Vconsole from 'vconsole'\n// let vconsole = new Vconsole();\n\nVue.prototype.$bridge = Bridge\n\n\nVue.config.productionTip = false;\nVue.use(ElementUI,{size: 'large'});\nVue.use(VueAxios,axios);\n\nVue.axios.defaults.withCredentials = true ;// 跨域cookie访问\nVue.axios.interceptors.request.use(\n config => {\n return config;\n },\n err => {\n console.log('requesterr' + err);\n return Promise.reject(err);\n });\nVue.axios.interceptors.response.use(\n response => {\n console.log(\"main:\",response);\n if(response.status == 200 && response.data.errorCode == 1) {\n // router.replace({\n // path: 'login',\n // query: {redirect: router.currentRoute.fullPath}\n // })\n console.log(\"main:\",response);\n }\n return response;\n },\n error => {\n console.log(error);\n if (error.response) {\n switch (error.response.status) {\n case 401:\n // 401 清除token信息并跳转到登录页面\n // store.commit(types.LOGOUT);\n // router.replace({\n // path: 'login',\n // query: {redirect: router.currentRoute.fullPath}\n // });\n // window.location.href = window.location.origin + '/gic-web/#/';\n case 500:\n Message.error('服务器500')\n }\n }\n return Promise.reject(error.response.data)\n });\n\nrouter.beforeEach((to, from, next) => {\n\n // if (window.location.pathname.slice(-1) !== '/') {\n // window.location = window.location.pathname + '/';\n // }\n if (to.path == '/') {\n next({ path: '/login' })\n } else {\n next()\n }\n})\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n store,\n components: { App },\n template: '<App/>'\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","var map = {\n\t\"./contacts/staffRecordsTemplate.vue\": [\n\t\t\"lFAe\",\n\t\t1\n\t],\n\t\"./errorPage/403.vue\": [\n\t\t\"6XGN\",\n\t\t2\n\t],\n\t\"./errorPage/404.vue\": [\n\t\t\"AejC\",\n\t\t4\n\t],\n\t\"./errorPage/500.vue\": [\n\t\t\"FskK\",\n\t\t3\n\t],\n\t\"./errorPage/index.vue\": [\n\t\t\"ODjX\",\n\t\t0\n\t]\n};\nfunction webpackAsyncContext(req) {\n\tvar ids = map[req];\n\tif(!ids)\n\t\treturn Promise.reject(new Error(\"Cannot find module '\" + req + \"'.\"));\n\treturn __webpack_require__.e(ids[1]).then(function() {\n\t\treturn __webpack_require__(ids[0]);\n\t});\n};\nwebpackAsyncContext.keys = function webpackAsyncContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackAsyncContext.id = \"Opzk\";\nmodule.exports = webpackAsyncContext;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/views lazy ^\\.\\/.*\\.vue$\n// module id = Opzk\n// module chunks = 6"],"sourceRoot":""}
\ No newline at end of file
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,a){for(var i,u,f,s=0,l=[];s<r.length;s++)u=r[s],t[u]&&l.push(t[u][0]),t[u]=0;for(i in c)Object.prototype.hasOwnProperty.call(c,i)&&(e[i]=c[i]);for(n&&n(r,c,a);l.length;)l.shift()();if(a)for(s=0;s<a.length;s++)f=o(o.s=a[s]);return f};var r={},t={7:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var c=document.getElementsByTagName("head")[0],a=document.createElement("script");a.type="text/javascript",a.charset="utf-8",a.async=!0,a.timeout=12e4,o.nc&&a.setAttribute("nonce",o.nc),a.src=o.p+"static/js/"+e+"."+{0:"4d32899c3299cb95b130",1:"c2674a5b2e2c002ef41c",2:"39effb7cc468a8b90c44",3:"6017c2d464a188e3cc3a",4:"c384492b24e03d00a718"}[e]+".js";var i=setTimeout(u,12e4);function u(){a.onerror=a.onload=null,clearTimeout(i);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return a.onerror=a.onload=u,c.appendChild(a),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.402f31fbc5f103d5ca4b.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///webpack/bootstrap 64dc507a81ac18d0793d"],"names":["parentJsonpFunction","window","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","7","exports","module","l","e","installedChunkData","Promise","resolve","promise","reject","head","document","getElementsByTagName","script","createElement","type","charset","async","timeout","nc","setAttribute","src","p","0","1","2","3","4","setTimeout","onScriptComplete","onerror","onload","clearTimeout","chunk","Error","undefined","appendChild","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAA,SAAApB,GACA,IAAAqB,EAAAhB,EAAAL,GACA,OAAAqB,EACA,WAAAC,QAAA,SAAAC,GAA0CA,MAI1C,GAAAF,EACA,OAAAA,EAAA,GAIA,IAAAG,EAAA,IAAAF,QAAA,SAAAC,EAAAE,GACAJ,EAAAhB,EAAAL,IAAAuB,EAAAE,KAEAJ,EAAA,GAAAG,EAGA,IAAAE,EAAAC,SAAAC,qBAAA,WACAC,EAAAF,SAAAG,cAAA,UACAD,EAAAE,KAAA,kBACAF,EAAAG,QAAA,QACAH,EAAAI,OAAA,EACAJ,EAAAK,QAAA,KAEArB,EAAAsB,IACAN,EAAAO,aAAA,QAAAvB,EAAAsB,IAEAN,EAAAQ,IAAAxB,EAAAyB,EAAA,aAAAtC,EAAA,KAAwEuC,EAAA,uBAAAC,EAAA,uBAAAC,EAAA,uBAAAC,EAAA,uBAAAC,EAAA,wBAAuI3C,GAAA,MAC/M,IAAAkC,EAAAU,WAAAC,EAAA,MAEA,SAAAA,IAEAhB,EAAAiB,QAAAjB,EAAAkB,OAAA,KACAC,aAAAd,GACA,IAAAe,EAAA5C,EAAAL,GACA,IAAAiD,IACAA,GACAA,EAAA,OAAAC,MAAA,iBAAAlD,EAAA,aAEAK,EAAAL,QAAAmD,GAKA,OAfAtB,EAAAiB,QAAAjB,EAAAkB,OAAAF,EAaAnB,EAAA0B,YAAAvB,GAEAL,GAIAX,EAAAwC,EAAA1C,EAGAE,EAAAyC,EAAAvC,EAGAF,EAAA0C,EAAA,SAAAtC,EAAAuC,EAAAC,GACA5C,EAAA6C,EAAAzC,EAAAuC,IACAjD,OAAAoD,eAAA1C,EAAAuC,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMA5C,EAAAkD,EAAA,SAAA7C,GACA,IAAAuC,EAAAvC,KAAA8C,WACA,WAA2B,OAAA9C,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAA0C,EAAAE,EAAA,IAAAA,GACAA,GAIA5C,EAAA6C,EAAA,SAAAO,EAAAC,GAAsD,OAAA3D,OAAAC,UAAAC,eAAAC,KAAAuD,EAAAC,IAGtDrD,EAAAyB,EAAA,KAGAzB,EAAAsD,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"static/js/manifest.402f31fbc5f103d5ca4b.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = window[\"webpackJsonp\"];\n \twindow[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t7: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData === 0) {\n \t\t\treturn new Promise(function(resolve) { resolve(); });\n \t\t}\n\n \t\t// a Promise means \"currently loading\".\n \t\tif(installedChunkData) {\n \t\t\treturn installedChunkData[2];\n \t\t}\n\n \t\t// setup Promise in chunk cache\n \t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t});\n \t\tinstalledChunkData[2] = promise;\n\n \t\t// start chunk loading\n \t\tvar head = document.getElementsByTagName('head')[0];\n \t\tvar script = document.createElement('script');\n \t\tscript.type = \"text/javascript\";\n \t\tscript.charset = 'utf-8';\n \t\tscript.async = true;\n \t\tscript.timeout = 120000;\n\n \t\tif (__webpack_require__.nc) {\n \t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t}\n \t\tscript.src = __webpack_require__.p + \"static/js/\" + chunkId + \".\" + {\"0\":\"4d32899c3299cb95b130\",\"1\":\"c2674a5b2e2c002ef41c\",\"2\":\"39effb7cc468a8b90c44\",\"3\":\"6017c2d464a188e3cc3a\",\"4\":\"c384492b24e03d00a718\"}[chunkId] + \".js\";\n \t\tvar timeout = setTimeout(onScriptComplete, 120000);\n \t\tscript.onerror = script.onload = onScriptComplete;\n \t\tfunction onScriptComplete() {\n \t\t\t// avoid mem leaks in IE.\n \t\t\tscript.onerror = script.onload = null;\n \t\t\tclearTimeout(timeout);\n \t\t\tvar chunk = installedChunks[chunkId];\n \t\t\tif(chunk !== 0) {\n \t\t\t\tif(chunk) {\n \t\t\t\t\tchunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));\n \t\t\t\t}\n \t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t}\n \t\t};\n \t\thead.appendChild(script);\n\n \t\treturn promise;\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"./\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 64dc507a81ac18d0793d"],"sourceRoot":""}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta name=screen-orientation content=portrait>
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=format-detection content="telephone=no">
<meta name=full-screen content=yes>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=renderer content=webkit>
<meta http-equiv=Pragma content=no-cache>
<meta http-equiv=Cache-Control content=no-cache>
<meta http-equiv=Expires content=0>
<meta name=x5-fullscreen content=true>
<meta content=yes name=apple-mobile-web-app-capable>
<meta content=yes name=apple-touch-fullscreen>
<meta content="telephone=no,email=no" name=format-detection>
<link rel="shortcut icon" href="./favicon.ico"/>
<title>好办 APP</title>
</head>
<body style="background-color: #f0f2f5;width: 100%;">
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
{ {
"name": "office-web", "name": "wechat-web",
"version": "1.0.0", "version": "1.0.4",
"description": "A Vue.js project", "description": "wechat-web",
"author": "fairyly", "author": "<fairyilys@gmail.com.com>",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", "serve": "vue-cli-service serve",
"start": "npm run dev", "build": "vue-cli-service build",
"build": "node build/build.js" "lint": "vue-cli-service lint",
"version": "conventional-changelog -p angular -i changelog.md -s -r 0 && git add changelog.md"
}, },
"dependencies": { "dependencies": {
"element-ui": "^2.3.9", "amfe-flexible": "^2.2.1",
"requset": "^1.0.5", "axios": "^0.18.0",
"script-loader": "^0.7.2", "babel-polyfill": "^6.26.0",
"tinymce": "^4.8.3", "es6-promise": "^4.2.6",
"vconsole": "^3.2.0", "jsbarcode": "^3.6.0",
"vue": "^2.5.2", "vant": "^1.4.1",
"vue-router": "^3.0.1" "vconsole": "^3.2.2",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.1.0"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^7.1.2", "@vue/cli-plugin-babel": "^3.0.1",
"axios": "^0.18.0", "@vue/cli-plugin-eslint": "^3.0.1",
"babel-core": "^6.22.1", "@vue/cli-service": "^3.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3", "babel-plugin-import": "^1.8.0",
"babel-loader": "^7.1.1", "postcss-pxtorem": "^4.0.1",
"babel-plugin-syntax-jsx": "^6.18.0", "less": "^3.8.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"less": "^3.0.4",
"less-loader": "^4.1.0", "less-loader": "^4.1.0",
"node-notifier": "^5.1.2", "vue-template-compiler": "^2.5.17"
"node-sass": "^4.9.0", },
"optimize-css-assets-webpack-plugin": "^3.2.0", "eslintConfig": {
"ora": "^1.2.0", "root": true,
"portfinder": "^1.0.13", "env": {
"postcss-import": "^11.0.0", "node": true
"postcss-loader": "^2.0.8", },
"postcss-url": "^7.2.1", "extends": [
"rimraf": "^2.6.0", "plugin:vue/essential",
"sass-loader": "^7.0.1", "eslint:recommended"
"semver": "^5.3.0", ],
"shelljs": "^0.7.6", "rules": {},
"uglifyjs-webpack-plugin": "^1.1.1", "parserOptions": {
"url-loader": "^0.5.8", "parser": "babel-eslint"
"vue-axios": "^2.1.1", }
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
}, },
"engines": { "postcss": {
"node": ">= 6.0.0", "plugins": {
"npm": ">= 3.0.0" "autoprefixer": {}
}
}, },
"browserslist": [ "browserslist": [
"> 1%", "Android >= 4.0",
"last 2 versions", "iOS >= 7"
"not ie <= 8"
] ]
} }
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>达摩</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
\ No newline at end of file
<template> <template>
<div id="app"> <div id="app">
<transition name="fade" mode="out-in"> <router-view />
<router-view></router-view>
</transition>
</div> </div>
</template> </template>
<script>
export default {
name: 'App',
data() {
return {
}
}
}
</script>
<style> <style>
body {
font-size: 16px;
background-color: #fff;
-webkit-font-smoothing: antialiased;
}
</style> </style>
import Vue from 'vue'
import axios from 'axios';
import qs from 'qs';
import {Message} from 'element-ui'
Vue.axios.defaults.timeout = 15000;
var local = window.location.origin;
if (local.indexOf('localhost')!= -1) {
local = 'http://www.gicdev.com';
}
console.log(local)
Vue.axios.interceptors.request.use(config=> {
console.log(local)
return config;
}, err=> {
Message.error({message: '请求超时!'});
return Promise.resolve(err);
})
Vue.axios.interceptors.response.use(data=> {
console.log("response data:",data)
if (data.status && data.status == 200 && data.data.status == 'error') {
Message.error({message: data.data.msg});
return;
}
return data;
}, err=> {
console.log("response err:",err);
Message.error({message: err.response.message});
if (err.response.status == 504||err.response.status == 404) {
// window.location.href= local + "/gic-web/#/"
// Message.error({message: '服务异常⊙﹏⊙∥'});
} else if (err.response.status == 403) {
// window.location.href= local + "/gic-web/#/"
// Message.error({message: '权限不足,请联系管理员!'});
}else {
// window.location.href= local + "/gic-web/#/"
// Message.error({message: '未知错误!'});
}
return Promise.resolve(err);
})
// var localhost = window.location.protocol +'//'+ window.location.host
// console.log(localhost)
// let base = local + '/gicweb/cloudweb/';
const timeout = 15000;
let token = '';//sessionStorage.getItem('user');
/*
*
* 统一 get 请求方法
* @url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const getRequest = (url, params) => {
params.requestProject = "gic-clique";
return Vue.axios({
method: 'get',
url: `${local}${url}`,
data: {},
params: params,
headers: {'content-type': 'application/x-www-form-urlencoded'},// "token": token
});
}
/*
*
* 统一 post 请求方法
* url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const postRequest = (url, params) => {
params.requestProject = "gic-clique";
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: qs.stringify(params),
// params: params,
// paramsSerializer: function(params) {
// return QS.stringify(params, {arrayFormat: 'brackets'})
// },
// transformRequest: [function (data) {
// // Do whatever you want to transform the data
// console.log(data)
// data = JSON.stringify(data)
// return data;
// }],
// transformRequest: [
// function (data) { // 解决传递数组变成对象的问题
// Object.keys(data).forEach((key) => {
// if ((typeof data[key]) === 'object') {
// data[key] = JSON.stringify(data[key]) // 这里必须使用内置JSON对象转换
// }
// })
// data = qs.stringify(data) // 这里必须使用qs库进行转换
// return data
// }
// ],
headers: {'content-type': 'application/x-www-form-urlencoded'} //multipart/form-data{"token": token}
});
}
export const postJsonRequest = (url, params) => {
params.requestProject = "gic-clique";
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: "{}",
params: params,
// paramsSerializer: function(params) {
// return QS.stringify(params, {arrayFormat: 'brackets'})
// },
// transformRequest: [function (data) {
// // Do whatever you want to transform the data
// console.log(data)
// data = JSON.stringify(data)
// return data;
// }],
// transformRequest: [
// function (data) { // 解决传递数组变成对象的问题
// Object.keys(data).forEach((key) => {
// if ((typeof data[key]) === 'object') {
// data[key] = JSON.stringify(data[key]) // 这里必须使用内置JSON对象转换
// }
// })
// data = qs.stringify(data) // 这里必须使用qs库进行转换
// return data
// }
// ],
// withCredentials: true,
// credentials: 'same-origin',
headers: {'Content-Type': 'application/json;charset=UTF-8'} //multipart/form-data{"token": token}
});
}
/*
* method: 'post'
* 'Content-Type': 'application/json;charset=UTF-8'
* @data: params
* @requestProject: 'gic-clique'
*
*/
export const postJson = (url, params) => {
// params.requestProject = "gic-clique";
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: params,
params: {requestProject:'gic-clique'},
// withCredentials: true,
// credentials: 'same-origin',
headers: {'Content-Type': 'application/json;charset=UTF-8'} //multipart/form-data{"token": token}
});
}
/*
* method: 'post'
* data: params
*
*/
export const postForm = (url, params) => {
params.requestProject = "gic-clique";
return Vue.axios({
method: 'post',
url: `${local}${url}`,
data: params,
// params: params,
// paramsSerializer: function(params) {
// return QS.stringify(params, {arrayFormat: 'brackets'})
// },
// transformRequest: [function (data) {
// // Do whatever you want to transform the data
// console.log(data)
// data = JSON.stringify(data)
// return data;
// }],
// transformRequest: [
// function (data) { // 解决传递数组变成对象的问题
// Object.keys(data).forEach((key) => {
// if ((typeof data[key]) === 'object') {
// data[key] = JSON.stringify(data[key]) // 这里必须使用内置JSON对象转换
// }
// })
// data = qs.stringify(data) // 这里必须使用qs库进行转换
// return data
// }
// ],
headers: {} //'content-type': 'application/x-www-form-urlencoded'multipart/form-data{"token": token}
});
}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
let device = {}; let device = {};
let classNames = []; let classNames = [];
let ua = navigator.userAgent; let ua = navigator.userAgent;
/* eslint-disable */
let android = ua.match(/(Android);?[\s\/]+([\d.]+)?/); let android = ua.match(/(Android);?[\s\/]+([\d.]+)?/);
let ipad = ua.match(/(iPad).*OS\s([\d_]+)/); let ipad = ua.match(/(iPad).*OS\s([\d_]+)/);
let ipod = ua.match(/(iPod)(.*OS\s([\d_]+))?/); let ipod = ua.match(/(iPod)(.*OS\s([\d_]+))?/);
...@@ -13,33 +13,33 @@ device.ios = device.android = device.iphone = device.ipad = device.androidChrome ...@@ -13,33 +13,33 @@ device.ios = device.android = device.iphone = device.ipad = device.androidChrome
// Android // Android
if (android) { if (android) {
device.os = 'android'; device.os = 'android';
device.osVersion = android[2]; device.osVersion = android[2];
device.android = true; device.android = true;
device.androidChrome = ua.toLowerCase().indexOf('chrome') >= 0; device.androidChrome = ua.toLowerCase().indexOf('chrome') >= 0;
} }
if (ipad || iphone || ipod) { if (ipad || iphone || ipod) {
device.os = 'ios'; device.os = 'ios';
device.ios = true; device.ios = true;
} }
// iOS // iOS
if (iphone && !ipod) { if (iphone && !ipod) {
device.osVersion = iphone[2].replace(/_/g, '.'); device.osVersion = iphone[2].replace(/_/g, '.');
device.iphone = true; device.iphone = true;
} }
if (ipad) { if (ipad) {
device.osVersion = ipad[2].replace(/_/g, '.'); device.osVersion = ipad[2].replace(/_/g, '.');
device.ipad = true; device.ipad = true;
} }
if (ipod) { if (ipod) {
device.osVersion = ipod[3] ? ipod[3].replace(/_/g, '.') : null; device.osVersion = ipod[3] ? ipod[3].replace(/_/g, '.') : null;
device.iphone = true; device.iphone = true;
} }
// iOS 8+ changed UA // iOS 8+ changed UA
if (device.ios && device.osVersion && ua.indexOf('Version/') >= 0) { if (device.ios && device.osVersion && ua.indexOf('Version/') >= 0) {
if (device.osVersion.split('.')[0] === '10') { if (device.osVersion.split('.')[0] === '10') {
device.osVersion = ua.toLowerCase().split('version/')[1].split(' ')[0]; device.osVersion = ua.toLowerCase().split('version/')[1].split(' ')[0];
} }
} }
// Webview // Webview
...@@ -48,13 +48,13 @@ device.webView = (iphone || ipad || ipod) && ua.match(/.*AppleWebKit(?!.*Safari) ...@@ -48,13 +48,13 @@ device.webView = (iphone || ipad || ipod) && ua.match(/.*AppleWebKit(?!.*Safari)
// OS classes // OS classes
if (device.os) { if (device.os) {
classNames.push(device.os, device.os + '-' + device.osVersion.split('.')[0], device.os + '-' + device.osVersion.replace(/\./g, '-')); classNames.push(device.os, device.os + '-' + device.osVersion.split('.')[0], device.os + '-' + device.osVersion.replace(/\./g, '-'));
if (device.os === 'ios') { if (device.os === 'ios') {
var major = parseInt(device.osVersion.split('.')[0], 10); var major = parseInt(device.osVersion.split('.')[0], 10);
for (var i = major - 1; i >= 6; i--) { for (var i = major - 1; i >= 6; i--) {
classNames.push('ios-gt-' + i); classNames.push('ios-gt-' + i);
}
} }
}
} }
......
import * as api from './api';
export default api;
// setupBridge(function(bridge) { import device from './device';
/* eslint-disable */
// window["bridge"] = bridge
// /*JS给ObjC提供公开的API,在ObjC端可以手动调用JS的这个API。接收ObjC传过来的参数,且可以回调ObjC*/
// bridge.registerHandler('jsHandler', function(data, responseCallback) {
// let json = JSON.parse(data)
// let method = json['method']
// let param = json['param']
// let paramStr = JSON.stringify(param)
// let evalMethod = method + "(paramStr)"
// let result = eval(evalMethod);
// responseCallback(result)
// })
// })
// function setupBridge(callback) {
// if (navigator.userAgent.indexOf('iPhone') > -1) {
// setupIOSBridge(callback);
// } else {
// setupAndroidBridge(callback);
// }
// }
// function setupAndroidBridge(callback) {
// if (window.WebViewJavascriptBridge) {
// callback(WebViewJavascriptBridge)
// } else {
// document.addEventListener(
// 'WebViewJavascriptBridgeReady',
// function() {
// callback(WebViewJavascriptBridge)
// },
// false
// );
// }
// }
// function setupIOSBridge(callback) {
// if (window.WebViewJavascriptBridge) {
// return callback(WebViewJavascriptBridge);
// }
// if (window.WVJBCallbacks) { return window.WVJBCallbacks.push(callback); }
// window.WVJBCallbacks = [callback];
// var WVJBIframe = document.createElement('iframe');
// WVJBIframe.style.display = 'none';
// WVJBIframe.src = 'wvjbscheme://__BRIDGE_LOADED__';
// document.documentElement.appendChild(WVJBIframe);
// setTimeout(function() { document.documentElement.removeChild(WVJBIframe) }, 0)
// }
// function callHandler(param, method, callback) {
// let bridge = window["bridge"]
// let data = { 'method': method, 'param': param }
// bridge.callHandler('apiHandler', data, function(responseData) {
// callback(responseData)
// })
// }
import device from './device'
function setupWebViewJavascriptBridge(callback) { function setupWebViewJavascriptBridge(callback) {
if (window.WebViewJavascriptBridge) { if (window.WebViewJavascriptBridge) {
return callback(window.WebViewJavascriptBridge); return callback(window.WebViewJavascriptBridge);
...@@ -81,7 +8,7 @@ function setupWebViewJavascriptBridge(callback) { ...@@ -81,7 +8,7 @@ function setupWebViewJavascriptBridge(callback) {
document.addEventListener( document.addEventListener(
'WebViewJavascriptBridgeReady', 'WebViewJavascriptBridgeReady',
function() { function() {
callback(WebViewJavascriptBridge) callback(WebViewJavascriptBridge)
}, },
false false
); );
......
import axios from 'axios';
import store from '../store/index';
import qs from 'qs';
import { Toast } from 'vant';
let local = '';
if (process.env.NODE_ENV === 'development') {
local = '//www.gicdev.com';
}else {
local = '//www.gicdev.com';
}
let loading = '';
// 创建axios 实例
const service = axios.create({
baseURL: local, // api的base_url
timeout: 20000, // 请求超时时间
withCredentials: true,
})
// request 拦截器
service.interceptors.request.use(
config => {
loading = Toast.loading({
duration: 0, // 持续展示 toast
mask: true,
forbidClick: true, // 禁用背景点击
loadingType: 'spinner',
message: ' '
});
// loading true
store.dispatch('SetLoading', true);
return config;
},
error => {
loading.clear();
// loading false
setTimeout(function() {
store.dispatch('SetLoading', false);
}, 300)
Promise.reject(error);
}
)
// response 拦截器
service.interceptors.response.use(
response => {
const res = response.data;
loading.clear();
// loading false
store.dispatch('SetLoading', false);
return res;
},
error => {
loading.clear();
// loading false
store.dispatch('SetLoading', false);
return Promise.reject(error);
}
)
// export default service
/*
*
* 统一响应处理
* @url:
*
*/
function handleResponse(code, msg) {
switch (code) {
case 1:
Toast(msg);
break;
}
}
/*
*
* 统一 get 请求方法
* @url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const getRequest = (url, params) => {
params.requestProject = "web";
return new Promise((resolve, reject) => {
service({
method: 'get',
url: `${local}${url}`,
data: {},
params: params,
headers: { 'content-type': 'application/x-www-form-urlencoded' },// "token": token
}).then(res => {
resolve(res)
}).catch(error => {
reject(error)
})
})
}
/*
*
* 统一 post 请求方法
* url: 请求的 url
* @params: 请求带的参数
* @header:
*
*/
export const postRequest = (url, params) => {
params.requestProject = "web";
return new Promise((resolve, reject) => {
service({
method: 'post',
url: `${local}${url}`,
data: qs.stringify(params),
headers: { 'content-type': 'application/x-www-form-urlencoded' }
}).then(res => {
resolve(res)
}).catch(error => {
reject(error)
})
})
}
export const postJsonRequest = (url, params) => {
params.requestProject = "web";
return new Promise((resolve, reject) => {
service({
method: 'post',
url: `${local}${url}`,
data: "{}",
params: params,
headers: { 'Content-Type': 'application/json;charset=UTF-8' }
}).then(res => {
resolve(res);
}).catch(error => {
reject(error);
})
})
}
/*
* method: 'post'
* 'Content-Type': 'application/json;charset=UTF-8'
* @data: params
* @requestProject: 'web'
*
*/
export const postJson = (url, params) => {
return new Promise((resolve, reject) => {
service({
method: 'post',
url: `${local}${url}`,
data: params,
params: { requestProject: 'web' },
headers: { 'Content-Type': 'application/json;charset=UTF-8' }
}).then(res => {
if (res.errorCode != 0) {
handleResponse(res.errorCode, res.message);
reject(res);
} else {
resolve(res);
}
}).catch(error => {
reject(error);
})
})
}
/*
* method: 'post'
* @data: params
*
*/
export const postForm = (url, params) => {
params.requestProject = "web";
return new Promise((resolve, reject) => {
service({
method: 'post',
url: `${local}${url}`,
data: params,
headers: {}
}).then(res => {
resolve(res)
}).catch(error => {
reject(error)
})
})
}
* {
margin: 0;
padding: 0;
}
html, body {
font-family: -apple-system-font, "Helvetica Neue", sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
/* 浮动 */
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before,
.clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.over-hide {
overflow: hidden;
}
.border-box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* display */
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.top {
vertical-align: top;
}
.middle {
vertical-align: middle;
}
/* flex */
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-2 {
-webkit-box-flex: 2;
-webkit-flex: 2;
-ms-flex: 2;
flex: 2;
}
.flex-row {
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
-o-flex-direction: row;
flex-direction: row;
}
.flex-column {
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
.flex-align-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-pack-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.max-80 {
max-width: 80px;
}
.w-0 {
width: 0;
}
/* 字体大小 */
.font-12 {
font-size: 12px;
}
.font-13 {
font-size: 13px;
}
.font-14 {
font-size: 14px;
}
.font-15 {
font-size: 15px;
}
.font-16 {
font-size: 16px;
}
.font-18 {
font-size: 18px;
}
.font-20 {
font-size: 20px;
}
.font-30 {
font-size: 30px;
}
.font-50 {
font-size: 50px;
}
.font-w-500 {
font-weight: 500;
}
.color-232326 {
color: #232326;
}
.color-848689 {
color: #848689;
}
.color-cfa972 {
color: #CFA972;
}
.color-606266 {
color: #606266;
}
.color-666 {
color: #666;
}
.color-000 {
color: #000;
}
.bg-f4f5f6 {
background: #f4f5f6;
}
.bg-fff {
background: #fff;
}
.m-r-4 {
margin-right: 4px;
}
.m-t-6 {
margin-top: 6px;
}
.m-t-8 {
margin-top: 8px;
}
.m-t-10 {
margin-top: 10px;
}
.m-b-15 {
margin-bottom: 15px;
}
.padding-lr-12 {
padding: 0 12px;
}
.p-l-8 {
padding-left: 8px;
}
.p-t-10 {
padding-top: 10px;
}
.border-right-1 {
position: relative;
}
.border-right-1::after {
content: " ";
position: absolute;
right: 0;
top: 0;
width: 1px;
height: 100%;
border-right: 1px solid #D9D9D9;
color: #D9D9D9;
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
-webkit-transform: scaleX(0.5);
transform: scaleX(0.5);
}
.border-left-1 {
position: relative;
}
.border-left-1::after {
content: " ";
position: absolute;
left: 0;
top: 0;
width: 1px;
height: 100%;
border-left: 1px solid #D9D9D9;
color: #D9D9D9;
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
-webkit-transform: scaleX(0.5);
transform: scaleX(0.5);
}
.border-top-1 {
position: relative;
}
.border-top-1:after {
content: " ";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
border-top: 1px solid #D5D5D6;
color: #D5D5D6;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.border-bottom-1 {
position: relative;
}
.border-bottom-1:after {
content: " ";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1px;
border-top: 1px solid #D5D5D6;
color: #D5D5D6;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
/* 弹窗 */
.qrcode-mask {
position: fixed;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.6);
}
.qrcode-dialog {
position: fixed;
z-index: 13;
width: 70%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #FAFAFC;
text-align: center;
border-radius: 8px;
}
/* 三角 */
.triangle-up {
position: absolute;
left: 50%;
margin-left: -5px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 9px solid #666;
}
/* 无数据 */
.no-data-contain {
position: absolute;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
font-size: 16px;
color: #848689;
}
.no-data-contain img {
width: 80px;
padding-bottom: 10px;
}
@font-face {
font-family: 'DINPro';
/* src: url('BebasNeueBold.ttf') format('truetype'); */
src: url('DINPro-Bold.otf');
font-weight: bold;
font-style: normal;
}
body {
width: 100%;
height: 100%;
}
.fixed {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
/* logo */
.clique-logo {
width: 100%;
padding-top: 20px;
text-align: center;
}
.clique-logo img {
width: 50%;
}
/* 条形码 */
.clique-qrcode {
padding: 0 22px;
}
#barcode {
width: 100%;
min-height: 60px;
}
.clique-qrcode p {
text-align: center;
margin-top: -6px;
}
/* 菜单 */
.clique-menu {
width: 100%;
padding: 25px 0;
}
.clique-menu-cell:after {
top: 9px;
height: 63%;
}
.clique-menu p {
text-align: center;
margin-top: 10px;
}
.van-swipe__indicator {
background: rgba(35,35,38,0.3);
}
.goods-swipe {
font-size: 0;
line-height: 1;
}
/* 品牌 logo */
.clique-brand {
width: 100%;
overflow: hidden;
}
.clique-brand-logo {
float: left;
width: 33.333333%;
min-width: 33.333333%;
max-width: 33.333333%;
border-left: 1px solid #fff;
border-bottom: 1px solid #fff;
overflow: hidden;
font-size: 0;
}
.clique-brand-logo.half {
width: 50%;
min-width: 50%;
max-width: 50%;
}
.b-l-1 {
border-left: 1px solid #f0f0f0;
}
.clique-brand-logo_a {
display: block;
}
.clique-brand-logo img {
display: inline-block;
vertical-align: top;
width: 100%;
}
.logo-more {
color: #232326;
}
.p-tips {
width: 100%;
height: 54px;
line-height: 54px;
padding: 0 16px;
}
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont Demo</title>
<link rel="shortcut icon" href="https://gtms04.alicdn.com/tps/i4/TB1_oz6GVXXXXaFXpXXJDFnIXXX-64-64.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="iconfont.css">
<script src="iconfont.js"></script>
<!-- jQuery -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
<!-- 代码高亮 -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
</head>
<body>
<div class="main">
<h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">&#xe86b;</a></h1>
<div class="nav-tabs">
<ul id="tabs" class="dib-box">
<li class="dib active"><span>Unicode</span></li>
<li class="dib"><span>Font class</span></li>
<li class="dib"><span>Symbol</span></li>
</ul>
<a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=984834" target="_blank" class="nav-more">查看项目</a>
</div>
<div class="tab-container">
<div class="content unicode" style="display: block;">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon font_family">&#xe639;</span>
<div class="name">优惠券为空</div>
<div class="code-name">&amp;#xe639;</div>
</li>
<li class="dib">
<span class="icon font_family">&#xe63f;</span>
<div class="name">暂无记录</div>
<div class="code-name">&amp;#xe63f;</div>
</li>
<li class="dib">
<span class="icon font_family">&#xe64d;</span>
<div class="name">门店消费记录为空</div>
<div class="code-name">&amp;#xe64d;</div>
</li>
<li class="dib">
<span class="icon font_family">&#xe7ac;</span>
<div class="name">qiaquan-2</div>
<div class="code-name">&amp;#xe7ac;</div>
</li>
<li class="dib">
<span class="icon font_family">&#xe7ad;</span>
<div class="name">jifenshangcheng-2</div>
<div class="code-name">&amp;#xe7ad;</div>
</li>
</ul>
<div class="article markdown">
<h2 id="unicode-">Unicode 引用</h2>
<hr>
<p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
<ul>
<li>兼容性最好,支持 IE6+,及所有现代浏览器。</li>
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
<li>但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。</li>
</ul>
<blockquote>
<p>注意:新版 iconfont 支持多色图标,这些多色图标在 Unicode 模式下将不能使用,如果有需求建议使用symbol 的引用方式</p>
</blockquote>
<p>Unicode 使用步骤如下:</p>
<h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
<pre><code class="language-css"
>@font-face {
font-family: 'font_family';
src: url('iconfont.eot');
src: url('iconfont.eot?#iefix') format('embedded-opentype'),
url('iconfont.woff2') format('woff2'),
url('iconfont.woff') format('woff'),
url('iconfont.ttf') format('truetype'),
url('iconfont.svg#font_family') format('svg');
}
</code></pre>
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
<pre><code class="language-css"
>.font_family {
font-family: "font_family" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
<pre>
<code class="language-html"
>&lt;span class="font_family"&gt;&amp;#x33;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"font_family" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content font-class">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon font_family icon-youhuiquanweikong"></span>
<div class="name">
优惠券为空
</div>
<div class="code-name">.icon-youhuiquanweikong
</div>
</li>
<li class="dib">
<span class="icon font_family icon-zanwujilu"></span>
<div class="name">
暂无记录
</div>
<div class="code-name">.icon-zanwujilu
</div>
</li>
<li class="dib">
<span class="icon font_family icon-mendianxiaofeijiluweikong"></span>
<div class="name">
门店消费记录为空
</div>
<div class="code-name">.icon-mendianxiaofeijiluweikong
</div>
</li>
<li class="dib">
<span class="icon font_family icon-qiaquan-"></span>
<div class="name">
qiaquan-2
</div>
<div class="code-name">.icon-qiaquan-
</div>
</li>
<li class="dib">
<span class="icon font_family icon-jifenshangcheng-"></span>
<div class="name">
jifenshangcheng-2
</div>
<div class="code-name">.icon-jifenshangcheng-
</div>
</li>
</ul>
<div class="article markdown">
<h2 id="font-class-">font-class 引用</h2>
<hr>
<p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
<p>与 Unicode 使用方式相比,具有如下特点:</p>
<ul>
<li>兼容性良好,支持 IE8+,及所有现代浏览器。</li>
<li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
<li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
<li>不过因为本质上还是使用的字体,所以多色图标还是不支持的。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
<pre><code class="language-html">&lt;link rel="stylesheet" href="./iconfont.css"&gt;
</code></pre>
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;span class="font_family icon--xxx"&gt;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"
font_family" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content symbol">
<ul class="icon_lists dib-box">
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-youhuiquanweikong"></use>
</svg>
<div class="name">优惠券为空</div>
<div class="code-name">#icon-youhuiquanweikong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-zanwujilu"></use>
</svg>
<div class="name">暂无记录</div>
<div class="code-name">#icon-zanwujilu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-mendianxiaofeijiluweikong"></use>
</svg>
<div class="name">门店消费记录为空</div>
<div class="code-name">#icon-mendianxiaofeijiluweikong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-qiaquan-"></use>
</svg>
<div class="name">qiaquan-2</div>
<div class="code-name">#icon-qiaquan-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-jifenshangcheng-"></use>
</svg>
<div class="name">jifenshangcheng-2</div>
<div class="code-name">#icon-jifenshangcheng-</div>
</li>
</ul>
<div class="article markdown">
<h2 id="symbol-">Symbol 引用</h2>
<hr>
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
<ul>
<li>支持多色图标了,不再受单色限制。</li>
<li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
<li>兼容性较差,支持 IE9+,及现代浏览器。</li>
<li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
<pre><code class="language-html">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;
</code></pre>
<h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
<pre><code class="language-html">&lt;style&gt;
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
&lt;/style&gt;
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;svg class="icon" aria-hidden="true"&gt;
&lt;use xlink:href="#icon-xxx"&gt;&lt;/use&gt;
&lt;/svg&gt;
</code></pre>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$('.tab-container .content:first').show()
$('#tabs li').click(function (e) {
var tabContent = $('.tab-container .content')
var index = $(this).index()
if ($(this).hasClass('active')) {
return
} else {
$('#tabs li').removeClass('active')
$(this).addClass('active')
tabContent.hide().eq(index).fadeIn()
}
})
})
</script>
</body>
</html>
/**
* 手机号格式化
* import formatPhone from '@/assets/js/public.js';
* formatPhone.formatPhone(12345678900)
* @param {String} phone
*/
const formatPhone = (phone) => {
phone = phone.toString();
return phone.substr(0, 3) + '****' + phone.substr(7, 11);
};
/**
* 千分位格式化
* @param {数字} val
*/
const toThousands = (val) => {
let num = (val || 0).toString(),
result = '';
while (num.length > 3) {
result = ',' + num.slice(-3) + result;
num = num.slice(0, num.length - 3);
}
if (num) {
result = num + result;
}
return result;
};
/**
* 时间戳转换年-月 日
* @param timestamp,
*/
function timeToDateTime(timestamp, sym) {
// 格式化 timestamp 返回年月日
function formatNumber(n) {
//对于小于 10 的数字返回 0[1-9]
n = n.toString();
return n[1] ? n : '0' + n;
}
if (timestamp != null) {
let date = new Date(timestamp);
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
return [year, month, day].map(formatNumber).join(sym || '-');
}
return '--';
}
export default {
formatPhone,
toThousands,
timeToDateTime
}
<template>
<div class="searh-menu-container">
<div class="p-0-15">
<el-input prefix-icon="el-icon-search" v-model="searchKey" placeholder="请输入内容" clearable @clear="clearFn" @keyup.enter.native="searchFn"></el-input>
<el-tree
v-if="!searchResultShow"
class="search-menu"
node-key="id"
:default-expanded-keys="defaultOpen"
:data="menuData"
:highlight-current="true"
:expand-on-click-node="false"
:props="myProps"
@node-click="handleNodeClick">
<span class="custom-tree-node" slot-scope="{ node, data }">
<i class="iconfont" :class="node.level == 1 ? 'icon-2zuzhijiagou' : 'icon-tongshi-zuzhijiagou'"></i>
<span>{{ node.label }}</span>
</span>
</el-tree>
</div>
<div class="search-result-container" v-if="searchResultShow">
<ul class="search-result-ul">
<p class="title">部门列表</p>
<li class="group-item items">
<i class="iconfont icon-tongshi-zuzhijiagou"></i>
人事部
</li>
<li class="group-item items">
<i class="iconfont icon-tongshi-zuzhijiagou"></i>
人事部
</li>
</ul>
<ul class="search-result-ul">
<p class="title">人员列表</p>
<li class="person-item items">
<i class="iconfont icon-chengyuan"></i>
陈景良
<span class="from-group">人事部</span>
</li>
<li class="person-item items">
<i class="iconfont icon-chengyuan"></i>
陈景良
<span class="from-group">人事部</span>
</li>
</ul>
</div>
</div>
</template>
<script>
export default {
name: "searchMenu",
components: {},
props: {
treeData: {
type: Array,
required: true
}
},
data() {
return {
searchKey: "",
searchResultShow: false,
myProps: {
children: 'childrens',
label: 'label',
disabled: "disabled"
},
menuData: [],
defaultOpen: []
};
},
created() {
// this.sortGroupByLevel();
},
methods: {
/**
* 清楚输入框
*/
clearFn() {
this.searchResultShow = false;
},
/**
* 关键字搜索
*/
searchFn() {
if (this.searchKey == "") {
this.searchResultShow = false;
return false;
}
this.searchResultShow = true;
// console.log(this.searchKey);
this.$emit("handleSearchKey", this.searchKey);
},
/**
* 树形菜单选择
*/
handleNodeClick(obj, node) {
// console.log(obj, node);
this.$emit("handleTreeSelection", obj, node);
},
/**
* 按层级排序部门
* fixme 现在代码是将每个层级都剥离了出来,为的是适用后面可能出现的需求,但是如果后期需求无特殊更改,本代码可优化精简
*/
sortGroupByLevel(list) {
let that = this;
var arr = {
list0: {},
list1: {},
list2: {},
list3: {},
list4: {},
list5: {},
list6: {},
list: list,
listObj: {}
},
key,
obj2,
key2,
parent,
idOfLevel0,
parentLevel;
list.length && list.forEach(obj => {
obj.name = obj.name || "";
obj.disabled = true;
obj.label = obj.name || "";
obj.id = obj.groupId || "";
obj.englishName = obj.englishName || "";
obj.level = obj.level;
obj.groupId = obj.groupId || "";
obj.parentId = obj.parentId || "";
key = obj.groupId;
if (arr["list" + obj.level]) {
arr["list" + obj.level][key] = obj;
arr["list" + obj.level][key]["children"] = {};
}
if (obj.level == 0) {
idOfLevel0 = obj.groupId;
}
});
for (let level = 6; level > 0; level--) {
for (let item in arr["list" + level]) {
obj2 = arr["list" + level][item];
parentLevel = level - 1;
parent = arr["list" + parentLevel][obj2.parentId];
if (!parent) {
continue;
}
key2 = obj2.groupId;
if (!parent.hasOwnProperty("childrens")) {
parent["childrens"] = [];
}
parent["children"][key2] = obj2;
parent["childrens"].push(obj2);
}
}
arr.listObj = Object.assign({}, arr.list0, arr.list1, arr.list2, arr.list3, arr.list4, arr.list5, arr.list6);
let menuArr = [];
for (let key in arr.list0) {
menuArr.push(arr.list0[key]);
that.defaultOpen.push(key);
}
that.menuData = menuArr;
console.log(that.menuData);
}
},
filter: {},
computed: {},
watch: {
treeData(newArr, old) {
// console.log(old, newArr, "newarr");
this.sortGroupByLevel(newArr);
}
}
};
</script>
<style lang="scss">
.searh-menu-container {
overflow-y: auto;
overflow-x: auto;
width: 260px;
background: #eef1f8;
height: 690px;
padding: 20px 0;
box-sizing: border-box;
.p-0-15 {
padding: 0 15px;
}
.search-menu {
margin-top: 30px;
color: #606266;
font-size: 14px;
background: #EEF1F8;
min-width: 100%;
display:inline-block !important;
.el-tree-node {
.el-tree-node__content {
height: 36px;
.iconfont {
color: #409EFF;
margin-right: 5px;
}
&:hover {
color: #fff;
background: #409EFF;
.iconfont {
color: #fff;
}
}
}
}
}
.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
background: #409EFF;
color: #fff;
.iconfont {
color: #fff;
}
}
.search-result-ul {
font-size: 14px;
color: #606266;
.title {
padding: 15px;
color: #303133;
}
li.items {
padding: 15px;
background: #fff;
box-sizing: border-box;
border-bottom: 1px solid #E4E7ED;
cursor: pointer;
.iconfont {
color: #409EFF;
}
.from-group {
float: right;
}
}
}
}
</style>
let baseInfo = [{
fieldTemplateId: '',
parentFieldTemplateId: '',
minCount: 10,
maxCount: 20,
parentCode: 'baseInfo',
fieldName: '姓名',
fieldCode: 'clerkName',
systemFlag: true,
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fieldType: "0", //字段类型(0:单行输入框,1:多行输入框,2:单选框 3:多选框 4:日期 5:日期区间 6:数字输入框 7:图片上传 )
fixed: false, // 判断字段是否已经在列表中
fieldDescription: '请输入', // 提示文字
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false, // 是否必填
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldName: '部门',
fieldCode: 'groupName',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldCode: "clerkPhone",
fieldName: '手机号',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
modifyLimitStatus: '0',
modifyTimesLimit: 1,
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldName: 'code',
fieldCode: 'clerkCode',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldName: '邮箱',
fieldCode: 'clerkEmail',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldName: '职位',
fieldCode: 'positionName',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'baseInfo',
fieldName: '入职时间',
fieldCode: 'hireDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
}
];
let jobInfo = [{
parentCode: 'jobInfo',
fieldName: '员工类型',
fieldCode: 'clerkType',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '全职', 'key': 1 },
{ 'type': 'radio', 'name': '兼职', 'key': 2 },
{ 'type': 'radio', 'name': '外包', 'key': 3 },
{ 'type': 'radio', 'name': '实习', 'key': 4 },
{ 'type': 'radio', 'name': '无类型', 'key': 5 },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'jobInfo',
fieldName: '员工状态',
fieldCode: 'clerkStatus',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '正式', 'key': '1' },
{ 'type': 'radio', 'name': '试用', 'key': '2' },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'jobInfo',
fieldName: '转正日期',
fieldCode: 'correctionDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
},
fieldContent: [],
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'jobInfo',
fieldName: '岗位职级',
fieldCode: 'positionRank',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
}
]
let selfInfo = [{
parentCode: 'selfInfo',
fieldName: '身份证姓名',
fieldCode: 'identifyName',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '证件号码',
fieldCode: 'identifyNo',
systemFlag: true,
fieldType: "6", // 字段类型 数字输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
unit: '元', // 数字单位
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '出生日期',
fieldCode: 'birthDay',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'checkbox', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'checkbox', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '性别',
fieldCode: 'sex',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '男', 'key': 1 },
{ 'type': 'radio', 'name': '女', 'key': 2 },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '民族',
fieldCode: 'nation',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '汉', 'key': 1 },
{ 'type': 'radio', 'name': '女', 'key': 2 },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '身份证地址',
fieldCode: 'identifyAddr',
systemFlag: true,
fieldType: "1", // 字段类型 多行输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '证件有效期',
fieldCode: 'identifyEffectiveDate',
systemFlag: true,
fieldType: "4", // 字段类型 多行输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: []
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '户籍类型',
fieldCode: 'birthPlaceType',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '本地城镇', 'key': 1 },
{ 'type': 'radio', 'name': '本地农村', 'key': 2 },
{ 'type': 'radio', 'name': '外地城镇(省内)', 'key': 3 },
{ 'type': 'radio', 'name': '外地农村(省内)', 'key': 4 },
{ 'type': 'radio', 'name': '外地城镇(省外)', 'key': 5 },
{ 'type': 'radio', 'name': '外地农村(省外)', 'key': 6 },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '地址',
fieldCode: 'address',
systemFlag: true,
fieldType: "1", // 字段类型 多行输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '政治面貌',
fieldCode: 'politicalStatus',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '团员', 'key': 1 },
{ 'type': 'radio', 'name': '党员', 'key': 2 },
{ 'type': 'radio', 'name': '群众', 'key': 3 },
{ 'type': 'radio', 'name': '其他', 'key': 4 }
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '婚姻状况',
fieldCode: 'maritalStatus',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '已婚', 'key': 1 },
{ 'type': 'radio', 'name': '未婚', 'key': 2 }
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '首次参加工作时间',
fieldCode: 'firstWorkDate',
systemFlag: true,
fieldType: "4", // 字段类型 多行输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '银行卡号',
fieldCode: 'bankNo',
systemFlag: true,
fieldType: "6", // 字段类型 数字输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
unit: '元', // 数字单位
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'selfInfo',
fieldName: '开户行',
fieldCode: 'bankName',
systemFlag: true,
fieldType: "0", // 字段类型 多行输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
]
let eduInfo = [{
parentCode: 'eduInfo',
fieldName: '毕业院校',
fieldCode: 'graduateInstitutions',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'eduInfo',
fieldName: '毕业时间',
fieldCode: 'graduateDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'eduInfo',
fieldName: '所学专业',
fieldCode: 'majorCourse',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'eduInfo',
fieldName: '最高学历',
fieldCode: 'highestEducation',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '初中', 'key': 1 },
{ 'type': 'radio', 'name': '高中', 'key': 2 },
{ 'type': 'radio', 'name': '中专', 'key': 3 },
{ 'type': 'radio', 'name': '大专', 'key': 4 },
{ 'type': 'radio', 'name': '本科', 'key': 5 },
{ 'type': 'radio', 'name': '硕士', 'key': 6 },
{ 'type': 'radio', 'name': '博士', 'key': 7 },
{ 'type': 'radio', 'name': '其他', 'key': 8 }
],
},
isMust: false,
staffRecordsIds: []
},
]
let contractInfo = [{
parentCode: 'contractInfo',
fieldName: '合同公司',
fieldCode: 'contractCompany',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '合同类型',
fieldCode: 'contractType',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '固定曲线劳动合同', 'key': 1 },
{ 'type': 'radio', 'name': '无固定期限劳动合同', 'key': 2 },
{ 'type': 'radio', 'name': '实习协议', 'key': 3 },
{ 'type': 'radio', 'name': '劳务协议', 'key': 4 },
{ 'type': 'radio', 'name': '劳务派遣合同', 'key': 5 },
{ 'type': 'radio', 'name': '返聘协议', 'key': 6 },
{ 'type': 'radio', 'name': '短期劳动合同', 'key': 7 },
{ 'type': 'radio', 'name': '其他', 'key': 8 },
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '首次合同起始日',
fieldCode: 'firstContractBeginDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
},
fieldContent: [],
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '首次合同到期日',
fieldCode: 'firstContractEndDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
},
fieldContent: [],
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '现合同起始日',
fieldCode: 'currentContractBeginDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '现合同到期日',
fieldCode: 'currentContractEndDate',
systemFlag: true,
fieldType: "4", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: '1',
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '合同期限',
fieldCode: 'contractDateType',
systemFlag: true,
fieldType: "2", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'radio', 'name': '无', 'key': 1 },
{ 'type': 'radio', 'name': '6个月', 'key': 2 },
{ 'type': 'radio', 'name': '12个月', 'key': 3 },
{ 'type': 'radio', 'name': '24个月', 'key': 4 },
{ 'type': 'radio', 'name': '36个月或以上', 'key': 5 }
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contractInfo',
fieldName: '续签次数',
fieldCode: 'contractRenewNum',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
]
let contactInfo = [{
parentCode: 'contactInfo',
fieldName: '紧急联系人姓名',
fieldCode: 'emergencyContact',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'contactInfo',
fieldName: '紧急联系人手机号',
fieldCode: 'emergencyContactPhone',
systemFlag: true,
fieldType: "6", // 字段类型 数字输入框
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
unit: '元', // 数字单位
staffRecordsIds: []
},
{
parentCode: 'contactInfo',
fieldName: '紧急联系人关系',
fieldCode: 'emergencyContactRelationship',
systemFlag: true,
fieldType: "0", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
]
let personalInfo = [{
parentCode: 'personalInfo',
fieldName: '身份证(人像面)',
fieldCode: 'identifyFrontImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'personalInfo',
fieldName: '身份证(国徽面)',
fieldCode: 'identifyBackImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'personalInfo',
fieldName: '学历证书',
fieldCode: 'qualificationImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'personalInfo',
fieldName: '学位证书',
fieldCode: 'diplomaImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'personalInfo',
fieldName: '上家公司离职证明',
fieldCode: 'fireEvidenceImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'personalInfo',
fieldName: '员工照片',
fieldCode: 'clerkImageUrl',
systemFlag: true,
fieldType: "7", // 字段类型
fieldEdited: false, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
]
let defineInfo = [{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '单行输入框',
fieldCode: '',
systemFlag: false,
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '0',
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '多行输入框',
fieldCode: '',
systemFlag: false,
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '1',
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '单选框',
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '2',
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'checkbox', 'name': '选项1', },
{ 'type': 'checkbox', 'name': '选项2', },
{ 'type': 'checkbox', 'name': '选项3', }
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '多选框',
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '3',
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
ruleContent: [],
fieldContent: [
{ 'type': 'checkbox', 'name': '选项1', },
{ 'type': 'checkbox', 'name': '选项2', },
{ 'type': 'checkbox', 'name': '选项3', }
],
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '日期',
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '4',
fixed: false,
fieldDescription: '请选择',
fieldOperations: {
typeValue: 1,
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [] // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '日期区间',
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fieldType: '5',
fixed: false,
fieldOperations: {
startName: '开始时间',
endName: '结束时间',
startDescription: '请选择开始时间',
endDescription: '请选择结束时间',
typeValue: 1,
ruleContent: [
{ 'type': 'radio', 'name': '年-月-日', 'key': 1, 'isEdit': 1 },
{ 'type': 'radio', 'name': '年-月', 'key': 2, 'isEdit': 1 }
],
fieldContent: [] // 选项
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '数字输入框',
fieldCode: '',
systemFlag: false,
fieldType: "6", // 字段类型 数字输入框
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '请输入',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
unit: '元', // 数字单位
},
isMust: false,
staffRecordsIds: []
},
{
parentCode: 'defineInfo',
fieldCode: '-1',
fieldName: '图片',
fieldCode: '',
systemFlag: false,
fieldType: "7", // 字段类型
fieldEdited: true, // 修改(0:不可修改,1:可修改)
fixed: false,
fieldDescription: '最多上传9张图片',
fieldOperations: {
ruleContent: [], // 单选 日期有
fieldContent: [], // 选项
},
isMust: false,
staffRecordsIds: []
}
]
export default {
baseInfo: function() {
return baseInfo;
},
jobInfo: function() {
return jobInfo;
},
selfInfo: function() {
return selfInfo;
},
eduInfo: function() {
return eduInfo;
},
contractInfo: function() {
return contractInfo;
},
contactInfo: function() {
return contactInfo;
},
personalInfo: function() {
return personalInfo;
},
defineInfo: function() {
return defineInfo;
}
}
<!--
限制输入框组件
<limitInput
:inputWidth="500"
:limitClass="'limit-color'"
:disflag='!childItem.fieldEdited'
:inputValue.sync="ruleForm.addressDetail"
:holder="'请输入详细地址'"
:getByType="'word'"
:maxLength="40">
</limitInput>
-->
<template>
<div :class="['input-line-cell',limitClass]" :style="{width: inputWidth + 'px'}">
<el-input
:style="{width: inputWidth + 'px'}"
v-model="itemValue"
:disabled='disflag'
:placeholder="holder"
@focus="inputFocus()"
@keyup.native="(value) => toInput(value)">
</el-input>
<span class="tip"><span class="len_span">{{inputNum}}</span>/{{limitLength}}</span>
</div>
</template>
<script>
import strLength from '@/common/js/strlen';
export default {
name: "limitinput",
props: {
inputValue: {// 传入 input value
type: String,
default: ''
},
maxLength: {// 限制长度
type: Number,
default: 10
},
inputWidth: {// input 长度
type: Number,
default: 500
},
getByType: { // 字或字符判断类型
type: String,
default: 'word' // word: 字, char: 字符
},
holder: {
type: String,
default: '请输入'
},
disflag: {
type: Boolean,
default: false
},
limitClass: {
type: String,
default: ''
},
},
data() {
return {
inputNum: 0,
limitLength: 10,
itemValue: '',
}
},
methods: {
inputFocus(num) {
const that = this
},
// 输入
toInput: function(value) {
const that = this;
let temp = '';
if (that.getByType == 'word') {
temp = strLength.getByteVal(value.target.value,that.limitLength)
that.itemValue= temp.trim()
that.inputNum = strLength.getZhLen(that.itemValue);
}else {
temp = strLength.getCharVal(value.target.value,that.limitLength)
that.itemValue= temp.trim()
that.inputNum = strLength.getByteLen(that.itemValue);
}
that.$emit('update:inputValue',that.itemValue)
},
},
watch: {
maxLength: function(newData,oldData){
const that = this;
that.limitLength = newData
},
inputValue: function(newData,oldData){
const that = this;
that.itemValue = newData
that.inputNum = strLength.getZhLen(that.itemValue)
},
},
/* 接收数据 */
mounted(){
const that = this;
that.limitLength = that.maxLength;
that.itemValue = that.inputValue || '';
that.inputNum = strLength.getZhLen(that.inputValue);
},
}
</script>
<style lang="less" scoped>
.input-line-cell {
position: relative;
display: inline-block;
&.limit-color {
.tip {
color: rgba(255,255,255,0.7);
}
}
}
.w-340 {
width: 340px;
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
.el-input {
/deep/ .el-input__inner {
font-size: 12px;
color: #606266;
background-color: rgba(255,255,255,.1);
}
.is-disabled{
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
}
.tip {
position: absolute;
top: 2px;
right: 10px;
display: inline-block;
line-height: 32px;
text-align: right;
font-size: 12px;
color: #909399;
}
</style>
<!--
限制文本框组件
<limit-textarea
:inputWidth="500"
:inputValue.sync="ruleForm.addressDetail"
:holder="'请输入详细地址'"
:getByType="'word'"
:maxLength="40">
</limit-textarea>
-->
<template>
<div class="input-line-cell" :style="{width: inputWidth + 'px'}">
<el-input
:style="{width: inputWidth + 'px'}"
v-model="itemValue"
:placeholder="holder"
type="textarea"
:rows="3"
@focus="inputFocus()"
@keyup.native="(value) => toInput(value)">
</el-input>
<span class="tip"><span class="len_span">{{inputNum}}</span>/{{limitLength}}</span>
</div>
</template>
<script>
import strLength from '@/common/js/strlen';
export default {
name: "limittextarea",
props: {
inputValue: {// 传入 input value
type: String,
default: ''
},
maxLength: {// 限制长度
type: Number,
default: 10
},
inputWidth: {// input 长度
type: Number,
default: 500
},
getByType: { // 字或字符判断类型
type: String,
default: 'word' // word: 字, char: 字符
},
holder: {
type: String,
default: '请输入'
}
},
data() {
return {
inputNum: 0,
limitLength: 10,
itemValue: '',
}
},
methods: {
inputFocus(num) {
const that = this
console.log(num)
},
// 输入
toInput: function(value) {
const that = this;
console.log(value)
let temp = '';
if (that.getByType == 'word') {
temp = strLength.getByteVal(value.target.value,that.limitLength)
that.itemValue= temp.trim()
that.inputNum = strLength.getZhLen(that.itemValue);
}else {
temp = strLength.getCharVal(value.target.value,that.limitLength)
that.itemValue= temp.trim()
that.inputNum = strLength.getByteLen(that.itemValue);
}
that.$emit('update:inputValue',that.itemValue)
},
},
watch: {
maxLength: function(newData,oldData){
const that = this;
that.limitLength = newData
},
inputValue: function(newData,oldData){
const that = this;
that.itemValue = newData
that.inputNum = strLength.getZhLen(that.itemValue)
},
},
/* 接收数据 */
mounted(){
const that = this;
that.limitLength = that.maxLength;
that.itemValue = that.inputValue || '';
that.inputNum = strLength.getZhLen(that.inputValue);
},
}
</script>
<style lang="less" scoped>
.input-line-cell {
position: relative;
display: inline-block;
}
.w-340 {
width: 340px;
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
.el-input {
/deep/ .el-textarea__inner {
font-size: 12px;
color: #606266;
background-color: rgba(255,255,255,.1);
resize: none;
}
.is-disabled{
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
}
.tip {
position: absolute;
bottom: -28px;
right: 10px;
display: inline-block;
line-height: 32px;
text-align: right;
font-size: 12px;
color: #909399;
}
</style>
<template>
<div class="input-line-cell">
<el-input class="w-340" v-model="itemValue" placeholder="" :disabled="disableInput==0? false: true" @focus="inputFocus(c3Index)" @keyup.native="(value) => toInput(value)"></el-input>
<span class="tip"><span class="len_span">{{inputNum}}</span>/{{limitLength}}</span>
</div>
</template>
<script>
import strLength from '@/common/js/strlen';
export default {
name: "addinput",
props: {
childItem: String, // 传入是不是 k303(原C3)
childIndex: Number, // 传入的 k303(原C3) 索引
titleName: String, //传入的标题子段
inputValue: String, // 传入 input value
maxLength: Number, // 限制长度
disFlag: Number, // 禁用标志,0: false,1: true
child: String, // 传入的子级标题
},
data() {
return {
inputNum: 0,
limitLength: 10,
itemValue: '',
disableInput: false,
c3Flag: '',
c3Index: '',
titleFlag: '',
childFlag: '',
}
},
methods: {
inputFocus(num) {
var that = this
console.log(num)
},
// 输入
toInput: function(value) {
var that = this;
console.log(value)
var temp = '';
var temp = strLength.getByteVal(value.target.value,that.limitLength)
// console.log(temp)
that.itemValue= temp.trim()
that.inputNum = strLength.getZhLen(that.itemValue);
// 如果是子级
if (!!that.childFlag) {
var obj = {}
obj.child = that.childFlag
obj.value = that.itemValue;
if (that.titleFlag == 'title') {
obj.title = that.titleFlag;
}
if (that.c3Flag == 'k303') {
obj.c3Index = that.c3Index;
obj.flag = that.c3Flag;
}
that.$emit('itemInput',obj)
return;
}
// 如果是标题
if (that.titleFlag == 'title') {
var obj = {}
obj.value = that.itemValue;
obj.title = that.titleFlag;
that.$emit('itemInput',obj)
return;
}
// console.log(that.inputNum )
if (that.c3Flag == 'k303') {
var obj = {}
obj.value = that.itemValue;
obj.flag = that.c3Flag;
obj.c3Index = that.c3Index;
that.$emit('itemInput',obj)
return;
}
that.$emit('itemInput',that.itemValue)
},
},
watch: {
maxLength: function(newData,oldData){
var that = this;
that.limitLength = newData
},
inputValue: function(newData,oldData){
var that = this;
that.itemValue = newData
that.inputNum = strLength.getZhLen(that.itemValue)
},
disFlag: function(newData,oldData){
var that = this;
that.disableInput = newData
},
childItem: function(newData,oldData){
var that = this;
that.c3Flag = newData
},
childIndex: function(newData,oldData){
var that = this;
that.c3Index = newData
},
titleName: function(newData,oldData){
var that = this;
that.titleFlag = newData
},
child: function(newData,oldData){
var that = this;
that.childFlag = newData
},
},
/* 接收数据 */
mounted(){
var that = this;
console.log(that.childIndex)
that.limitLength = that.maxLength;
that.itemValue = that.inputValue || '';
that.inputNum = strLength.getZhLen(that.inputValue);
that.disableInput = that.disFlag || 0;
that.c3Flag = that.childItem || '';
that.c3Index = that.childIndex==0? 0: that.childIndex;
that.titleFlag = that.titleName
that.childFlag = that.child
},
}
</script>
<style lang="less" scoped>
.input-line-cell {
display: inline-block;
}
.w-340 {
width: 340px;
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
.el-input {
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
.is-disabled{
/deep/ .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,.1);
}
}
}
.edit-item {
color:#fff;
.tip {
margin-left: -47px;
color: rgba(255,255,255,0.7);
width: 30px;
display: inline-block;
text-align: right;
margin-right: 10px;
font-size: 12px;
}
}
</style>
import Vue from 'vue' import 'babel-polyfill';
import App from './App' import 'amfe-flexible';
import router from './router' import Vue from 'vue';
import ElementUI ,{ Message } from 'element-ui' import App from './App';
import VueAxios from 'vue-axios' import store from './store/index'
import axios from 'axios' import { router } from './router';
import store from './store/store' import './assets/font/iconfont.css';
import * as types from './store/types' import './assets/css/common.css';
import '../static/css/index.less' import Es6Promise from 'es6-promise';
// import 'element-ui/lib/theme-chalk/index.css' import Bridge from './api/jsBridge.js'
import '../static/font/iconfont.css'
import '../theme/index.css'
import Bridge from '@/api/jsBridge.js'
import Vconsole from 'vconsole'
// let vconsole = new Vconsole();
Vue.prototype.$bridge = Bridge Vue.prototype.$bridge = Bridge
require('es6-promise').polyfill();
Es6Promise.polyfill();
/* eslint-disable */
// import VConsole from 'vconsole';
// let vConsole = new VConsole();
Vue.config.productionTip = false;
Vue.use(ElementUI,{size: 'large'});
Vue.use(VueAxios,axios);
Vue.axios.defaults.withCredentials = true ;// 跨域cookie访问
Vue.axios.interceptors.request.use(
config => {
return config;
},
err => {
console.log('requesterr' + err);
return Promise.reject(err);
});
Vue.axios.interceptors.response.use(
response => {
console.log("main:",response);
if(response.status == 200 && response.data.errorCode == 1) {
// router.replace({
// path: 'login',
// query: {redirect: router.currentRoute.fullPath}
// })
console.log("main:",response);
}
return response;
},
error => {
console.log(error);
if (error.response) {
switch (error.response.status) {
case 401:
// 401 清除token信息并跳转到登录页面
// store.commit(types.LOGOUT);
// router.replace({
// path: 'login',
// query: {redirect: router.currentRoute.fullPath}
// });
// window.location.href = window.location.origin + '/gic-web/#/';
case 500:
Message.error('服务器500')
}
}
return Promise.reject(error.response.data)
});
router.beforeEach((to, from, next) => {
// if (window.location.pathname.slice(-1) !== '/') {
// window.location = window.location.pathname + '/';
// }
if (to.path == '/') {
next({ path: '/login' })
} else {
next()
}
})
/* eslint-disable no-new */
new Vue({ new Vue({
el: '#app',
router, router,
store, store,
components: { App }, el: '#app',
template: '<App/>' render: h => h(App)
}); });
import Vue from 'vue';
import Router from 'vue-router';
Vue.use(Router);
const routes = [{
path: '*',
redirect: '/index'
},
{
path: '/staffRecordsTemplate',
name: '员工档案',
component: () => import('./views/contacts/staffRecordsTemplate'),
meta: {
title: '员工档案'
}
},
{
name: 'index',
path: '/index',
component: () =>
import ('./views/index'),
meta: {
title: '首页'
}
}
];
// add route path
routes.forEach(route => {
route.path = route.path || '/' + (route.name || '');
});
const router = new Router({
/* mode: 'history',
base: '/', */
routes
});
router.beforeEach((to, from, next) => {
const title = to.meta && to.meta.title;
if (title) {
document.title = title;
}
next();
});
export {
router
};
module.exports = (parantfile,file) => (r) => {
import('views/'+ parantfile + '/' + file + '.vue').then((module) => {
r(module)
})
}
import Vue from 'vue'
import Router from 'vue-router'
import _import from './_import.js'
Vue.use(Router);
// const error403 = (r) => {
// import('views/errorPage/403.vue').then((module) => {
// r(module)
// })
// };
// const error404 = (r) => {
// import('views/errorPage/404.vue').then((module) => {
// r(module)
// })
// };
// const error500 = (r) => {
// import('views/errorPage/500.vue').then((module) => {
// r(module)
// })
// };
const errorPage = (r) => {
import('views/errorPage/index.vue').then((module) => {
r(module)
})
};
// 页面刷新时,重新赋值token
if (window.sessionStorage.getItem('token')) {
store.commit(types.LOGIN, window.sessionStorage.getItem('token'))
}
export const constantRouterMap = [
{
path: '/index',
name: 'index',
component: _import('index','index'),
},
{
path: '/staffRecordsTemplate',
name: '员工档案',
component: _import('contacts','staffRecordsTemplate')
},
{
path: '/403',
name: '无权访问',
component: errorPage
},
{
path: '/404',
name: 'error404',
component: errorPage
},
{
path: '/500',
name: 'error500',
component: errorPage
},
{ path: '*', redirect: '/404', hidden: true },
];
export default new Router({
// mode:'history',
routes: constantRouterMap,
scrollBehavior: () => ({ y: 0 }),
})
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);
export default new Vuex.Store({
state: {
bodyH: document.documentElement.clientHeight,
reqLoading: false,
memberId: 'ff80808163a6ab7a0163a6abd0710000'
},
mutations: {
setReqLoading(state, data) {
state.reqLoading = data;
},
setMemberId(state, data) {
state.memberId = data;
}
},
actions: {
SetLoading({ commit }, flag) {
commit('setReqLoading', flag);
},
modifyMemberId({ commit }, val) {
commit('setMemberId', val);
}
}
})
import Vuex from 'vuex'
import Vue from 'vue'
import * as types from './types'
Vue.use(Vuex);
export default new Vuex.Store({
state: {
user: {},
token: null,
title: '',
show: false
},
mutations: {
[types.LOGIN]: (state, data) => {
sessionStorage.token = data;
state.token = data;
},
[types.LOGOUT]: (state) => {
sessionStorage.removeItem('token');
state.token = null
},
[types.TITLE]: (state, data) => {
state.title = data;
},
[types.SHOW]: (state,data) => {
state.show = data;
}
}
})
export const LOGIN = 'login';
export const LOGOUT = 'logout';
export const TITLE = 'title';
export const SHOW = 'show';
...@@ -11,47 +11,24 @@ ...@@ -11,47 +11,24 @@
<div class="drag-show-content"> <div class="drag-show-content">
<div class="view-container"> <div class="view-container">
<ul class="view-content" id="showPhoneView"> <ul class="view-content" id="showPhoneView">
<!-- <template v-if="tempaletDataList.length == 0"> <div class="drag-wrap" >
<img class="templet-null-img" src="../../assets/templet_null_img.png"/>
</template> -->
<div
:options="{group:{name:'people', pull:false, put:false },sort: false}"
v-model="tempaletDataList"
class="drag-wrap"
>
<li <li
:class="['filed-item',currentIndex == index? 'active-item': '','li-block']" :class="['filed-item',currentIndex == index? 'active-item': '','li-block']"
v-for="(item,index) in tempaletDataList" v-for="(item,index) in tempaletDataList"
:key="item.fieldName+index"
> >
<!-- 删除 -->
<!-- <span
v-if= "item.fieldCode != 'baseInfo'"
class="item-close p-item-close"
>
<i class="el-icon-close"></i>
</span> -->
<template> <template>
<div class="block"> <div class="block">
<div class="block-head"> <div class="block-head">
<div :class="['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']">{{item.fieldName}}</div> <div :class="['opencard-item-title',item.fieldName.length>6? 'block-pre-wrap': '']">{{item.fieldName}}</div>
</div> </div>
<ul class="view-content"> <ul class="view-content">
<div <div :class="['drag-wrap','block-wrap',item.fieldCode]">
:options="{group:{name:'people', pull:false, put:false },sort: false}"
v-model="item.children" :class="['drag-wrap','block-wrap',item.fieldCode]"
>
<li <li
:class="['filed-item','child-filed-item',(currentChildKey == childItem.fieldCode && currentChildIndex == ind)? 'active-item': '']" :class="['filed-item','child-filed-item',(currentChildKey == childItem.fieldCode && currentChildIndex == ind)? 'active-item': '']"
v-for="(childItem,ind) in item.children" v-for="(childItem,ind) in item.children"
:key="ind"
> >
<!-- 删除 -->
<!-- <span
class="item-close child-item-close"
v-if="childItem.fieldCode!='clerkPhone'">
<i class="el-icon-close"></i>
</span> -->
<!-- item --> <!-- item -->
<!-- 单择/多选/日期 --> <!-- 单择/多选/日期 -->
<div v-if="(childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4)"> <div v-if="(childItem.fieldType == 2 || childItem.fieldType == 3 || childItem.fieldType == 4)">
...@@ -94,12 +71,10 @@ ...@@ -94,12 +71,10 @@
</ul> </ul>
</div> </div>
</template> </template>
</li> </li>
</div> </div>
</ul> </ul>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
...@@ -109,16 +84,12 @@ ...@@ -109,16 +84,12 @@
</div> </div>
</template> </template>
<script> <script>
import showMsg from '@/common/js/showmsg';
import errMsg from '@/common/js/error';
export default { export default {
name: "staffRecordsTemplate", name: "staffRecordsTemplate",
data() { data() {
return { return {
bodyHeight: (document.documentElement.clientHeight || document.body.clientHeight) + 'px', bodyHeight: (document.documentElement.clientHeight || document.body.clientHeight) + 'px',
selectKey: '', selectKey: '',
// 基本信息 // 基本信息
baseInfo: [], baseInfo: [],
// 工作信息 // 工作信息
...@@ -135,22 +106,1742 @@ export default { ...@@ -135,22 +106,1742 @@ export default {
personalInfo: [], personalInfo: [],
// 自定义 // 自定义
defineInfo: [], defineInfo: [],
// 中间数据集合 // 中间数据集合
currentIndex: 0, //当前选择的 item currentIndex: 0, //当前选择的 item
// children // children
currentChildKey: null, currentChildKey: null,
currentChildIndex: null, currentChildIndex: null,
childIndex: 0, childIndex: 0,
tempaletDataList: [
tempaletDataList: [], {
"fieldTemplateId": "b23057f563444b16b58247e340a424a9",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "基本信息",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "baseInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "3eee3c3353414e2986fa13132bc5fb51",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "姓名",
"fieldEdited": 0,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "clerkName",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 0,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "3d582cf08e7442e397da587c46fdb82d",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "部门",
"fieldEdited": 0,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "groupName",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 0,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "3168545ac47844449fd669f9258552fd",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "手机号",
"fieldEdited": 0,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "clerkPhone",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 6,
"fieldOperations":
{
"ruleContent": [],
"unit": "",
"fieldContent": []
},
"fixed": 0,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "c14f91649d6146ef89dc3a48a8cebb09",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "邮箱",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "clerkEmail",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": "/^[A-Za-z\\d]+([-_.][A-Za-z\\d]+)*@([A-Za-z\\d]+[-.])+[A-Za-z\\d]{2,4}$/",
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550739689000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "54d0b99864ac4fefafd3c37eb86b9886",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "单选框",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "k629157",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "选项1",
"type": "radio",
"key": "选项1"
},
{
"name": "选项2",
"type": "radio",
"key": "选项2"
},
{
"name": "选项3",
"type": "radio",
"key": "选项3"
}]
},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 4,
"systemFlag": 0,
"createTime": 1550547876000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "0727f6db9e6540f1bd74fcdab31aee70",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "code",
"fieldEdited": 0,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "clerkCode",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 0,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 5,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "7a165731592742b28084bbd3b0a10279",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "职位",
"fieldEdited": 0,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "positionName",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 0,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 6,
"systemFlag": 1,
"createTime": 1548397769000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "c00939073a21485fb5c95ab32a35fb48",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "图片",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "k354922",
"parentCode": "baseInfo",
"parentFieldTemplateId": "b23057f563444b16b58247e340a424a9",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 7,
"systemFlag": 0,
"createTime": 1548397769000,
"updateTime": 1550740247000
}]
},
{
"fieldTemplateId": "a698c1bbf483413b9f351eaebf248f2e",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "工作信息",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "jobInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "a75b6072bfe1456aa47c840e6d227460",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "员工类型",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "clerkType",
"parentCode": "jobInfo",
"parentFieldTemplateId": "a698c1bbf483413b9f351eaebf248f2e",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "全职",
"type": "radio",
"key": "1"
},
{
"name": "兼职",
"type": "radio",
"key": "2"
},
{
"name": "外包",
"type": "radio",
"key": "3"
},
{
"name": "实习",
"type": "radio",
"key": "4"
},
{
"name": "无类型",
"type": "radio",
"key": "5"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "c1b1351a87824af2b35b06f6ed6b233c",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "员工状态",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "clerkStatus",
"parentCode": "jobInfo",
"parentFieldTemplateId": "a698c1bbf483413b9f351eaebf248f2e",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "正式",
"type": "radio",
"key": "1"
},
{
"name": "试用",
"type": "radio",
"key": "2"
},
{
"name": "无状态",
"type": "radio",
"key": "-1"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "e1ed067dde63441b9cc23420d9446672",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "转正日期",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "correctionDate",
"parentCode": "jobInfo",
"parentFieldTemplateId": "a698c1bbf483413b9f351eaebf248f2e",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "394c7c9d0d9f4be9a02ebb906521fd11",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "岗位职级",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "positionRank",
"parentCode": "jobInfo",
"parentFieldTemplateId": "a698c1bbf483413b9f351eaebf248f2e",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
}]
},
{
"fieldTemplateId": "032a365aa79e4256bd948be8da508979",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "个人信息",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "selfInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "dfda308010664492b5841f72b8d645a9",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "身份证姓名",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "identifyName",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "acf404e5e11c4202b993767f125535b5",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "证件号码",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "identifyNo",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 6,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": "/^[1-9]\\d{5}(18|19|20)\\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx]$/",
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "b28d1851a5174002833f8b87e4f05b9d",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "性别",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "sex",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "男",
"type": "radio",
"key": "1"
},
{
"name": "女",
"type": "radio",
"key": "2"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "76a4410ef86b48d8addf86cb5aac842d",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "身份证地址",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "identifyAddr",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 1,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "5ff3759bb43d4662970b0631383f60c5",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "证件有效期",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "identifyEffectiveDate",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 4,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "3b68a3d2c39d4931a5a0e8f8ee79a1b0",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "户籍类型",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "birthPlaceType",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "本地城镇",
"type": "radio",
"key": "1"
},
{
"name": "本地农村",
"type": "radio",
"key": "2"
},
{
"name": "外地城镇(省内)",
"type": "radio",
"key": "3"
},
{
"name": "外地农村(省内)",
"type": "radio",
"key": "4"
},
{
"name": "外地城镇(省外)",
"type": "radio",
"key": "5"
},
{
"name": "外地农村(省外)",
"type": "radio",
"key": "6"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 5,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "acbdda147c48428fb73b96d1b9b9137b",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "住址",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "address",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 1,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 6,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "1d5af5b05acd49f689a0b87eeb2a6ea4",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "婚姻状况",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "maritalStatus",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "已婚",
"type": "radio",
"key": "1"
},
{
"name": "未婚",
"type": "radio",
"key": "2"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 7,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "5b9b61b63a4241739e2a0cf9cd57e0c6",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "首次参加工作时间",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "firstWorkDate",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 8,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "e9785f03df4a4c86b996fedd49044032",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "政治面貌",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "politicalStatus",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "团员",
"type": "radio",
"key": "1"
},
{
"name": "党员",
"type": "radio",
"key": "2"
},
{
"name": "群众",
"type": "radio",
"key": "3"
},
{
"name": "其他",
"type": "radio",
"key": "4"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 9,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "de792014fefe4e5f9f4be0b2d61691a9",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "银行卡号",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "bankNo",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 6,
"fieldOperations":
{
"ruleContent": [],
"unit": "元",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": "/^([1-9]{1})(\\d{14}|\\d{18})$/",
"status": 1,
"sort": 10,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "a0c8e1e1a51d43d8b4c0f95aa7b6f75d",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "开户行",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "bankName",
"parentCode": "selfInfo",
"parentFieldTemplateId": "032a365aa79e4256bd948be8da508979",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 11,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
}]
},
{
"fieldTemplateId": "dd7d39d51ee14d039e7a884d1a308059",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "学历信息",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "eduInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "9d2c6cd5b91143c9ba55c15bb103e397",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "毕业时间",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "graduateDate",
"parentCode": "eduInfo",
"parentFieldTemplateId": "dd7d39d51ee14d039e7a884d1a308059",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "5589132aac5649ac879bb22bbd446d3f",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "最高学历",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "highestEducation",
"parentCode": "eduInfo",
"parentFieldTemplateId": "dd7d39d51ee14d039e7a884d1a308059",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "初中",
"type": "radio",
"key": "1"
},
{
"name": "高中",
"type": "radio",
"key": "2"
},
{
"name": "中专",
"type": "radio",
"key": "3"
},
{
"name": "大专",
"type": "radio",
"key": "4"
},
{
"name": "本科",
"type": "radio",
"key": "5"
},
{
"name": "硕士",
"type": "radio",
"key": "6"
},
{
"name": "博士",
"type": "radio",
"key": "7"
},
{
"name": "其他",
"type": "radio",
"key": "8"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
}]
},
{
"fieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "合同信息",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "contractInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 4,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "169b2ecc3db640629575b6414d2999ae",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "合同公司",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "contractCompany",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "2dfb36f981aa43ab8a15cc592694d606",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "合同类型",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "contractType",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "固定曲线劳动合同",
"type": "radio",
"key": "1"
},
{
"name": "无固定期限劳动合同",
"type": "radio",
"key": "2"
},
{
"name": "实习协议",
"type": "radio",
"key": "3"
},
{
"name": "劳务协议",
"type": "radio",
"key": "4"
},
{
"name": "劳务派遣合同",
"type": "radio",
"key": "5"
},
{
"name": "返聘协议",
"type": "radio",
"key": "6"
},
{
"name": "短期劳动合同",
"type": "radio",
"key": "7"
},
{
"name": "其他",
"type": "radio",
"key": "8"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "d65c9fec1a4a4c51bbcd3d787bcd7ea5",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "首次合同起始日",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "firstContractBeginDate",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "cfb17668d16543c085421220b8e4792e",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "首次合同到期日",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "firstContractEndDate",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "f122b859dc7e4e408ba84b128b8d376e",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "现合同起始日",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "currentContractBeginDate",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 4,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "314b6d715b1f4e3499c734fb1a4e8604",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "现合同到期日",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "currentContractEndDate",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 4,
"fieldOperations":
{
"ruleContent": [
{
"isEdit": 1,
"name": "年-月-日",
"type": "radio",
"key": "yyyy-MM-dd"
},
{
"isEdit": 1,
"name": "年-月",
"type": "radio",
"key": "yyyy-MM"
}],
"typeValue": "yyyy-MM-dd",
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 5,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "0b4cc4fe0ae249949cb50a32156afdd2",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "合同期限",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请选择",
"fieldCode": "contractDateType",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 2,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": [
{
"name": "无",
"type": "radio",
"key": "1"
},
{
"name": "6个月",
"type": "radio",
"key": "2"
},
{
"name": "12个月",
"type": "radio",
"key": "3"
},
{
"name": "24个月",
"type": "radio",
"key": "4"
},
{
"name": "36个月或以上",
"type": "radio",
"key": "5"
}]
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 6,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "07e0ab936aaa45d883b93964d77b6a5a",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "续签次数",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "请输入",
"fieldCode": "contractRenewNum",
"parentCode": "contractInfo",
"parentFieldTemplateId": "e611425fb5604650bcdf3c3fe3ebf08f",
"fieldType": 0,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": "/^[1-9]\\d*$/",
"status": 1,
"sort": 7,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
}]
},
{
"fieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "个人资料",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "",
"fieldCode": "personalInfo",
"parentCode": "0",
"parentFieldTemplateId": "-1",
"fieldType": 0,
"fieldOperations":
{},
"fixed": 0,
"minCount": null,
"maxCount": null,
"staffRecordsIds": [],
"regular": null,
"status": 1,
"sort": 5,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000,
"children": [
{
"fieldTemplateId": "d020e9964841441d9e0f0a0796f7ba63",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "身份证(人像面)",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "identifyFrontImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 0,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "daf05ebf4e144e46b5ba75cbf871289c",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "身份证(国徽面)",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "identifyBackImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 1,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "1bade6be5e56420384456deeb7784638",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "学历证书",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "qualificationImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 2,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "f72694a3535840c380d393a565be08c9",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "学位证书",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "diplomaImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 3,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "de714d461f8d4313aa68246ab4995539",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "员工照片",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "clerkImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 4,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
},
{
"fieldTemplateId": "8607dc02a525411f9e389ee512faf5ea",
"enterpriseId": "4bf4a6e2c27d456b988dc4cb274c2709",
"fieldName": "上家公司离职证明",
"fieldEdited": 1,
"isMust": 0,
"fieldDescription": "最多上传9张图片",
"fieldCode": "fireEvidenceImageUrl",
"parentCode": "personalInfo",
"parentFieldTemplateId": "e6d17e2c1898485fab0eaab37928b436",
"fieldType": 7,
"fieldOperations":
{
"ruleContent": [],
"fieldContent": []
},
"fixed": 1,
"minCount": 0,
"maxCount": 100,
"staffRecordsIds":
{
"staffVisible": "1",
"staffModify": "1"
},
"regular": null,
"status": 1,
"sort": 5,
"systemFlag": 1,
"createTime": 1550740247000,
"updateTime": 1550740247000
}]
}],
} }
}, },
created() {
},
methods: { methods: {
/** /**
* 路由跳转 * 路由跳转
*/ */
...@@ -176,8 +1867,8 @@ export default { ...@@ -176,8 +1867,8 @@ export default {
return a.sort - b.sort; return a.sort - b.sort;
}) })
tree.forEach(function(ele,index){ tree.forEach(function(ele){
ele.children.sort(function(a,b){ ele.children.sort(function(a, b){
return a.sort - b.sort; return a.sort - b.sort;
}) })
}) })
...@@ -190,11 +1881,12 @@ export default { ...@@ -190,11 +1881,12 @@ export default {
handleGetInfo(result) { handleGetInfo(result) {
const that = this; const that = this;
let data = JSON.parse(result).result let data = JSON.parse(result).result
data.forEach(function(ele,index){ data.forEach(function(ele){
ele.fixed = parseInt(ele.fixed) === 1? true : false; ele.fixed = parseInt(ele.fixed) === 1? true : false;
ele.isMust = parseInt(ele.isMust) === 1? true : false; ele.isMust = parseInt(ele.isMust) === 1? true : false;
ele.fieldEdited = parseInt(ele.fieldEdited) === 1? true : false; ele.fieldEdited = parseInt(ele.fieldEdited) === 1? true : false;
ele.systemFlag = true; ele.systemFlag = true;
/* eslint-disable */
ele.fieldOperations = !!ele.fieldOperations? JSON.parse(ele.fieldOperations): {}; ele.fieldOperations = !!ele.fieldOperations? JSON.parse(ele.fieldOperations): {};
ele.staffRecordsIds = !!ele.staffRecordsIds? JSON.parse(ele.staffRecordsIds): []; ele.staffRecordsIds = !!ele.staffRecordsIds? JSON.parse(ele.staffRecordsIds): [];
}) })
...@@ -202,57 +1894,51 @@ export default { ...@@ -202,57 +1894,51 @@ export default {
that.tempaletDataList = that.treeData(data) that.tempaletDataList = that.treeData(data)
}, },
}, },
watch: {
},
components: {
},
mounted() { mounted() {
const that = this; const that = this;
// js 调用客户端方法 // js 调用客户端方法
let param = {'enterpriseId': that.$route.query.enterpriseId}; let param = {'enterpriseId': that.$route.query.enterpriseId};
let method = "getUserArchivesTempletContent"; let method = "getUserArchivesTempletContent";
let data = { 'method': method, 'param': param } let data = { 'method': method, 'param': param };
that.$bridge.callhandler('apiHandler', data, (data) => { that.$bridge.callhandler('apiHandler', data, (data) => {
// 处理返回数据 // 处理返回数据
console.log("js 调用成功");
// console.log(data); // console.log(data);
that.handleGetInfo(data) that.handleGetInfo(data);
}) })
that.$bridge.registerhandler('jsHandler', (data, responseCallback) => { that.$bridge.registerhandler('jsHandler', (data, responseCallback) => {
let json = JSON.parse(data) let json = JSON.parse(data);
let method = json['method'] let method = json['method'];
let param = json['param'] let param = json['param'];
/* eslint-disable */
let paramStr = JSON.stringify(param) let paramStr = JSON.stringify(param);
let evalMethod = method + "(paramStr)" let evalMethod = method + "(paramStr)";
let result = eval(evalMethod); let result = eval(evalMethod);
responseCallback(result) responseCallback(result);
}) })
/* eslint-disable */
function appInvocationMethod(param) { function appInvocationMethod(param) {
// console.log("app 调用成功"); return {'userId': '123456','name':'张琦'};
return {'userId': '123456','name':'张琦'}
} }
} }
} }
</script> </script>
<style lang="less" scoped> <style type="text/less" lang="less" scoped>
.template-wrap { .template-wrap {
width: 100%; width: 100%;
/*height: 100%;*/
/*min-height: 860px;*/
padding: 0; padding: 0;
margin: 0; margin: 0;
/*background: url('../../assets/template-bg.jpg') no-repeat center center;*/
background-size: 100% 100%; background-size: 100% 100%;
.el-icon-arrow-right {
display: inline-block;
width: 8px;
height: 8px;
border-top: 1px solid #ccc;
border-right: 1px solid #ccc;
transform: rotate(45deg);
vertical-align: middle;
}
.b-t-1 { .b-t-1 {
border-top: 1px solid #E4E7ED; border-top: 1px solid #E4E7ED;
} }
...@@ -306,25 +1992,18 @@ export default { ...@@ -306,25 +1992,18 @@ export default {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
.template-cell {
}
/* 中间 */ /* 中间 */
/* 模板 */ /* 模板 */
.template-cell-m { .template-cell-m {
width: 100%; width: 100%;
/*height: 740px;*/
position: relative; position: relative;
.view-content { .view-content {
position: relative; position: relative;
} }
} }
.drag-wrap { .drag-wrap {
/*min-height: 530px;*/
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
} }
...@@ -332,18 +2011,14 @@ export default { ...@@ -332,18 +2011,14 @@ export default {
margin-top:40px; margin-top:40px;
} }
.phone-view{ .phone-view{
/*background: url(../../assets/iphone.png) no-repeat;*/
background-size: 100%; background-size: 100%;
background-color: #f0eff4; background-color: #f0eff4;
width: 100%; width: 100%;
/*height: 740px;*/
/*margin: 0 20px;*/
position: relative; position: relative;
} }
.phone-show-content{ .phone-show-content{
width: 100%; width: 100%;
/*height: 537px;*/
position:relative; position:relative;
overflow-y: auto; overflow-y: auto;
} }
...@@ -411,9 +2086,6 @@ export default { ...@@ -411,9 +2086,6 @@ export default {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
&.active-item {
/*border: 1px solid #1890ff;*/
}
&+.filed-item { &+.filed-item {
margin-top: 5px; margin-top: 5px;
...@@ -440,7 +2112,6 @@ export default { ...@@ -440,7 +2112,6 @@ export default {
z-index: 2; z-index: 2;
} }
&:hover{ &:hover{
/*border: 1px dashed #1890ff;*/
.p-item-close { .p-item-close {
display: block; display: block;
} }
...@@ -453,14 +2124,10 @@ export default { ...@@ -453,14 +2124,10 @@ export default {
} }
} }
} }
} }
/* 组块 */ /* 组块 */
.block { .block {
/*min-height: 308px;*/
background: #f0eff4; background: #f0eff4;
.block-head { .block-head {
width: 100%; width: 100%;
background: #f5f5f8; background: #f5f5f8;
...@@ -470,15 +2137,6 @@ export default { ...@@ -470,15 +2137,6 @@ export default {
.opencard-item-title { .opencard-item-title {
height: 35px; height: 35px;
line-height: 35px; line-height: 35px;
/* &.block-pre-wrap{
line-height: 12px;
word-break: break-all;
white-space: pre-wrap;
padding-top: 7px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}*/
} }
} }
.drag-wrap { .drag-wrap {
...@@ -515,15 +2173,6 @@ export default { ...@@ -515,15 +2173,6 @@ export default {
white-space: pre-wrap; white-space: pre-wrap;
padding-top: 9px; padding-top: 9px;
} }
/*&.block-pre-wrap{
line-height: 12px;
word-break: break-all;
white-space: pre-wrap;
padding-top: 9px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}*/
} }
.show-warm-text{ .show-warm-text{
...@@ -541,7 +2190,6 @@ export default { ...@@ -541,7 +2190,6 @@ export default {
} }
} }
.limit-w-340 { .limit-w-340 {
/deep/ .el-input__inner { /deep/ .el-input__inner {
font-size: 12px; font-size: 12px;
...@@ -553,9 +2201,6 @@ export default { ...@@ -553,9 +2201,6 @@ export default {
color: rgba(255,255,255,0.7); color: rgba(255,255,255,0.7);
} }
} }
} }
} }
</style> </style>
<template>
<div class="index-contain">
</div>
</template>
<script>
export default {
data() {
return {}
}
};
</script>
<style lang="less">
</style>
@import './public.css';
.arrowico{
position: absolute;
transition: all .5s;
.icoposition(0px,25px);
}
.icoposition(@right: right,@top: top){
right: @right;
top: @top;
}
.user-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
/deep/ .el-input {
width: 260px;
}
}
.pass-form-dialog {
/deep/ .el-dialog {
min-width: 425px;
}
/*/deep/ .el-dialog__body {
padding: 0 20px;
}*/
}
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* custom */
a {
color: #7e8c8d;
text-decoration: none;
-webkit-backface-visibility: hidden;
}
.a-href {
color: #409EFF;
cursor: pointer;
}
li {
list-style: none;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
/*background: #e4e7ed;*/
/*background-color: rgba(0, 0, 0, 0.1)*/
}
::-webkit-scrollbar-track {
/*background: #f5f7fa;*/
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
/*background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;*/
}
::-webkit-scrollbar-thumb {
background: #c0c4cc;
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.1)
}
@-moz-document url-prefix(http: //),url-prefix(https://) {
/* 滚动条颜色 */
scrollbar {
-moz-appearance: none !important;
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* 滚动条按钮颜色 */
thumb, scrollbarbutton {
-moz-appearance: none !important;
}
/* 鼠标悬停时按钮颜色 */
thumb:hover, scrollbarbutton:hover {
-moz-appearance: none !important;
}
/* 隐藏上下箭头 */
scrollbarbutton {
display: none !important;
}
/* 纵向滚动条宽度 */
scrollbar[orient="vertical"] {
/*min-width: 15px !important;*/
}
}
scrollbar {
/* clear useragent default style*/
-moz-appearance: none !important;
}
/* buttons at two ends */
scrollbarbutton {
-moz-appearance: none !important;
}
/* the sliding part*/
thumb {
-moz-appearance: none !important;
}
scrollcorner {
-moz-appearance: none !important;
resize: both;
}
/* vertical or horizontal */
scrollbar[orient="vertical"] {
color: silver;
}
-moz-scrollbar-track {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-face {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-arrow {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar {
-moz-scrollbar-width: 15px;
-moz-scrollbar-border: 1px solid black;
-moz-scrollbar-background-color: white;
-moz-scrollbar-track-background-color: silver;
-moz-scrollbar-arrow-background-color: silver;
-moz-scrollbar-arrow-color: blue;
}
/*::-webkit-scrollbar-button {
color: #c8cbd3;
}*/
html,
body {
width: 100%;
min-height: 100%;
height: 100%;
/*background-color: #ffffff;*/
background-color: #f0f2f5;
}
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:focus {
box-shadow: none;
outline: none;
}
.btn-default {
color: #333;
border: 1px solid #ddd;
background-color: #f7f7f7;
cursor: pointer;
}
.btn {
font-size: 12px;
border-radius: 2px;
padding: 8px 16px;
height: 32px;
line-height: 14px;
}
.btn-new {
color: #333;
border: 1px solid #fede29;
background-color: #fede29;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before, .clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.inline-block {
display: inline-block;
}
.m-l-16 {
margin-left: 16px;
}
.m-t-10 {
margin-top: 10px;
}
.m-t-30 {
margin-top: 30px;
}
.m-r-10 {
margin-right: 10px;
}
.font-0 .el-form-item__content, .dialog-footer {
font-size: 0;
}
/* 公共 body 内的 left 和 right */
.common-wrap__left {
width: 260px;
height: 690px;
vertical-align: top;
font-size: 14px;
background: rgba(238,241,248,1);
border-radius: 2px;
}
.common-wrap__right {
width: calc(100% - 260px);
min-height: 690px;
padding: 24px;
vertical-align: top;
font-size: 14px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.pagewrap {
margin: 20px 0;
text-align: right;
}
.dialogwrap {
position: relative;
}
.dialogwrap:before {
position: absolute;
left: -20px;
top: -20px;
right: -20px;
content: '';
border-bottom: 1px solid #dedede;
}
.dialogcontent {
padding: 0 10px;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: rgb(250, 255, 189);
/* #FAFFBD; */
background-image: none;
color: rgb(0, 0, 0);
}
.el-table th {
background: #f1f3f7 !important;
}
.slide-fade-enter-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-leave-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to {
opacity: 0;
}
/* 丹 新加*/
#app, #index, #content {
height: 100%;
}
/* table 的表头 -- 背景色 */
.el-table thead tr, .el-table thead th {
background: #f1f3f7;
}
/* 面包屑 */
.breadcrumb {
padding: 24px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 -1px 10px #dfdfdf;
}
.breadcrumb .breadcrumb-title {
margin: 30px 0 10px 0;
font-size: 20px;
}
/*有侧边栏的 右侧 */
.content-wrap {
height: 100%;
display: flex;
}
.content-wrap .right-wrap {
width: 100%;
box-sizing: border-box;
height: 100%;
overflow-y: auto;
}
.content-wrap .right-wrap .right-content {
padding: 24px;
}
.content-wrap .right-wrap .right-content .right-box {
background: #fff;
padding: 24px;
}
/* 无侧边栏的底部 */
.bottom-wrap {
padding: 24px;
color: #606266;
font-size: 14px;
}
.bottom-content-wrap {
/*background: #fff;
padding: 24px;*/
}
/*提示文字*/
.tip-text {
font-size: 12px;
color: #909399;
position: absolute;
bottom: -30px;
}
.el-form .el-form-item.is-success .el-input__inner, .el-form .el-form-item.is-success .el-input__inner:focus, .el-form .el-form-item.is-success .el-textarea__inner, .el-form .el-form-item.is-success .el-textarea__inner:focus {
border-color: #dcdfe6;
}
/* 开卡模板 */
.template-cell-r .el-input.is-disabled .el-input__inner {
font-size: 12px;
color: #fff;
background-color: rgba(255, 255, 255, .1);
}
.el-button--text.m-l-10 {
margin-left: 10px;
}
.task-public .el-tabs .el-tabs__header {
margin: 0;
padding-left: 24px;
border-bottom: 1px solid #e4e7ed;
background: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 头部 */
.user-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.user-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
.pass-form-dialog .el-dialog__body {
padding: 30px 20px 0;
}
.pass-form-dialog .el-dialog__header {
padding: 0 20px;
height: 54px;
}
/* 左侧菜单 */
.leftBar-wrap .el-menu {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item .el-submenu__title, .leftBar-wrap .cardmenu-item .el-menu-item, .leftBar-wrap .cardmenu-item .el-submenu .el-menu-item {
height: 40px;
line-height: 40px;
}
.leftBar-wrap .el-submenu__title:hover {
background-color: #020b21;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-menu-item:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover i {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu:hover span {
/*background-color: #1890ff;*/
color: #fff;
}
.leftBar-wrap .cardmenu-item li.el-submenu .el-menu-item:hover label {
/*background-color: #1890ff;*/
color: #fff;
cursor: pointer;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title i {
color: #fff;
}
.leftBar-wrap .cardmenu-item .el-submenu.is-active div.el-submenu__title span {
color: #fff;
}
.el-menu.el-menu--popup .el-menu-item.is-active label {
color: #fff;
}
/* 百分号 */
.percent-item .el-input-group__append {
padding: 0 12px;
}
/* table lable*/
.table-label .el-form-item__label {
line-height: 48px;
}
@base-color: #353944;
@hover-color: #3c92eb;
@hoverbg-color: #20242d;
@main-color: #1890ff;
@navbgcolor: #04143a;
@sidebgcolor: #343c4c;
@userinfobgcolor: #ecf5ff;
@contentbgcolor: #f5f7fa;
@bordercolor: #dcdfe6;
@customnavcolor: #04143a;
@btnbgcolor: #f5f7fa;
@iconbgcolor: #e6e9f2;
.flex1(@width,@height) {
flex: 0 0 @width;
width: @width;
height: @height;
}
*{margin: 0;padding: 0;list-style: none;}
/*
KISSY CSS Reset
理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。
2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。
3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。
特色:1. 适应中文;2. 基于最新主流浏览器。
维护:玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>
*/
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
margin: 0;
padding: 0;
}
/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
/** 重置列表元素 **/
ul, ol { list-style: none; }
/** 重置文本格式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: underline; }
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注:optgroup 无法扶正 */
/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
/* 清除浮动 */
.ks-clear:after, .clear:after {
content: '\20';
display: block;
height: 0;
clear: both;
}
.ks-clear, .clear {
*zoom: 1;
}
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;}
.helps{margin-top:40px;}
.helps pre{
padding:20px;
margin:10px 0;
border:solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists{
width: 100% !important;
}
.icon_lists li{
float:left;
width: 100px;
height:180px;
text-align: center;
list-style: none !important;
}
.icon_lists .icon{
font-size: 42px;
line-height: 100px;
margin: 10px 0;
color:#333;
-webkit-transition: font-size 0.25s ease-out 0s;
-moz-transition: font-size 0.25s ease-out 0s;
transition: font-size 0.25s ease-out 0s;
}
.icon_lists .icon:hover{
font-size: 100px;
}
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p,
.markdown pre {
margin: 1em 0;
}
.markdown > p,
.markdown > blockquote,
.markdown > .highlight,
.markdown > ol,
.markdown > ul {
width: 80%;
}
.markdown ul > li {
list-style: circle;
}
.markdown > ul li,
.markdown blockquote ul > li {
margin-left: 20px;
padding-left: 4px;
}
.markdown > ul li p,
.markdown > ol li p {
margin: 0.6em 0;
}
.markdown ol > li {
list-style: decimal;
}
.markdown > ol li,
.markdown blockquote ol > li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown pre {
border-radius: 6px;
background: #f7f7f7;
padding: 20px;
}
.markdown pre code {
border: none;
background: #f7f7f7;
margin: 0;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown > table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown > table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown > table th,
.markdown > table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown > table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
font-style: italic;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown > br,
.markdown > p > br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
pre{
background: #fff;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="iconfont.css">
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<i class="icon iconfont icon-icon"></i>
<div class="name">相机</div>
<div class="fontclass">.icon-icon</div>
</li>
<li>
<i class="icon iconfont icon-xiugaimima"></i>
<div class="name">修改密码</div>
<div class="fontclass">.icon-xiugaimima</div>
</li>
<li>
<i class="icon iconfont icon-2zuzhijiagou"></i>
<div class="name">2组织架构</div>
<div class="fontclass">.icon-2zuzhijiagou</div>
</li>
<li>
<i class="icon iconfont icon-tianjiabumen"></i>
<div class="name">添加部门</div>
<div class="fontclass">.icon-tianjiabumen</div>
</li>
<li>
<i class="icon iconfont icon-shouji"></i>
<div class="name">手机</div>
<div class="fontclass">.icon-shouji</div>
</li>
<li>
<i class="icon iconfont icon-renzheng"></i>
<div class="name">认证</div>
<div class="fontclass">.icon-renzheng</div>
</li>
<li>
<i class="icon iconfont icon-qiyefuwuyingyong"></i>
<div class="name">企业服务应用</div>
<div class="fontclass">.icon-qiyefuwuyingyong</div>
</li>
<li>
<i class="icon iconfont icon-tongshi-zuzhijiagou"></i>
<div class="name">同事-组织架构</div>
<div class="fontclass">.icon-tongshi-zuzhijiagou</div>
</li>
<li>
<i class="icon iconfont icon-zidingyi"></i>
<div class="name">自定义</div>
<div class="fontclass">.icon-zidingyi</div>
</li>
<li>
<i class="icon iconfont icon-chengyuan"></i>
<div class="name">成员</div>
<div class="fontclass">.icon-chengyuan</div>
</li>
<li>
<i class="icon iconfont icon-chaojiguanliyuan"></i>
<div class="name">超级管理员</div>
<div class="fontclass">.icon-chaojiguanliyuan</div>
</li>
<li>
<i class="icon iconfont icon-jifeizhongxin"></i>
<div class="name">计费中心</div>
<div class="fontclass">.icon-jifeizhongxin</div>
</li>
<li>
<i class="icon iconfont icon-zhankai"></i>
<div class="name">展开</div>
<div class="fontclass">.icon-zhankai</div>
</li>
<li>
<i class="icon iconfont icon-shouqi"></i>
<div class="name">收起</div>
<div class="fontclass">.icon-shouqi</div>
</li>
<li>
<i class="icon iconfont icon-qiyedizhi"></i>
<div class="name">企业地址</div>
<div class="fontclass">.icon-qiyedizhi</div>
</li>
<li>
<i class="icon iconfont icon-yewuduanmorentouxiang"></i>
<div class="name">业务端默认头像</div>
<div class="fontclass">.icon-yewuduanmorentouxiang</div>
</li>
<li>
<i class="icon iconfont icon-zhuzuoquan"></i>
<div class="name">著作权</div>
<div class="fontclass">.icon-zhuzuoquan</div>
</li>
<li>
<i class="icon iconfont icon-yuangongdangan"></i>
<div class="name">员工档案</div>
<div class="fontclass">.icon-yuangongdangan</div>
</li>
<li>
<i class="icon iconfont icon-qiyetongxunlu"></i>
<div class="name">企业通讯录</div>
<div class="fontclass">.icon-qiyetongxunlu</div>
</li>
<li>
<i class="icon iconfont icon-tongxunlu"></i>
<div class="name">共享通讯录</div>
<div class="fontclass">.icon-tongxunlu</div>
</li>
<li>
<i class="icon iconfont icon-mendianjiagou"></i>
<div class="name">门店架构</div>
<div class="fontclass">.icon-mendianjiagou</div>
</li>
<li>
<i class="icon iconfont icon-tianjiachengyuan"></i>
<div class="name">添加成员</div>
<div class="fontclass">.icon-tianjiachengyuan</div>
</li>
<li>
<i class="icon iconfont icon-hangzhengjiagou"></i>
<div class="name">行政架构</div>
<div class="fontclass">.icon-hangzhengjiagou</div>
</li>
<li>
<i class="icon iconfont icon-yuangonglizhi"></i>
<div class="name">员工离职</div>
<div class="fontclass">.icon-yuangonglizhi</div>
</li>
<li>
<i class="icon iconfont icon-lizhi"></i>
<div class="name">员工转正</div>
<div class="fontclass">.icon-lizhi</div>
</li>
<li>
<i class="icon iconfont icon-gongxiangtongxunlu"></i>
<div class="name">共享通讯录</div>
<div class="fontclass">.icon-gongxiangtongxunlu</div>
</li>
<li>
<i class="icon iconfont icon-qiyerenzheng"></i>
<div class="name">企业认证</div>
<div class="fontclass">.icon-qiyerenzheng</div>
</li>
<li>
<i class="icon iconfont icon-yuangongxiangqing"></i>
<div class="name">员工详情</div>
<div class="fontclass">.icon-yuangongxiangqing</div>
</li>
<li>
<i class="icon iconfont icon-mendianquanxian"></i>
<div class="name">门店权限</div>
<div class="fontclass">.icon-mendianquanxian</div>
</li>
<li>
<i class="icon iconfont icon-icon_yunxiazai"></i>
<div class="name">下载</div>
<div class="fontclass">.icon-icon_yunxiazai</div>
</li>
<li>
<i class="icon iconfont icon-yd-icon-upload2"></i>
<div class="name">upload</div>
<div class="fontclass">.icon-yd-icon-upload2</div>
</li>
<li>
<i class="icon iconfont icon-yishenhe"></i>
<div class="name">审核中心</div>
<div class="fontclass">.icon-yishenhe</div>
</li>
<li>
<i class="icon iconfont icon-daishenpi"></i>
<div class="name">待审核</div>
<div class="fontclass">.icon-daishenpi</div>
</li>
<li>
<i class="icon iconfont icon-yishenpi"></i>
<div class="name">已审核</div>
<div class="fontclass">.icon-yishenpi</div>
</li>
<li>
<i class="icon iconfont icon-xingbienv"></i>
<div class="name">性别女</div>
<div class="fontclass">.icon-xingbienv</div>
</li>
<li>
<i class="icon iconfont icon-xingbienan"></i>
<div class="name">性别男</div>
<div class="fontclass">.icon-xingbienan</div>
</li>
<li>
<i class="icon iconfont icon-qiyeshezhi"></i>
<div class="name">企业设置</div>
<div class="fontclass">.icon-qiyeshezhi</div>
</li>
<li>
<i class="icon iconfont icon-tongxunlu_icon"></i>
<div class="name">通讯录信息</div>
<div class="fontclass">.icon-tongxunlu_icon</div>
</li>
<li>
<i class="icon iconfont icon-shezhiziguanliyuan"></i>
<div class="name">设置子管理员</div>
<div class="fontclass">.icon-shezhiziguanliyuan</div>
</li>
<li>
<i class="icon iconfont icon-tuanduichengyuan"></i>
<div class="name">成员</div>
<div class="fontclass">.icon-tuanduichengyuan</div>
</li>
<li>
<i class="icon iconfont icon-shujukaifa-huishouzhan"></i>
<div class="name">回收站</div>
<div class="fontclass">.icon-shujukaifa-huishouzhan</div>
</li>
<li>
<i class="icon iconfont icon-oa_nofind"></i>
<div class="name">暂无数据</div>
<div class="fontclass">.icon-oa_nofind</div>
</li>
<li>
<i class="icon iconfont icon-xinxixianshi"></i>
<div class="name">信息 显示</div>
<div class="fontclass">.icon-xinxixianshi</div>
</li>
</ul>
<h2 id="font-class-">font-class引用</h2>
<hr>
<p>font-class是unicode使用方式的一种变种,主要是解决unicode书写不直观,语意不明确的问题。</p>
<p>与unicode使用方式相比,具有如下特点:</p>
<ul>
<li>兼容性良好,支持ie8+,及所有现代浏览器。</li>
<li>相比于unicode语意明确,书写更直观。可以很容易分辨这个icon是什么。</li>
<li>因为使用class来定义图标,所以当要替换图标时,只需要修改class里面的unicode引用。</li>
<li>不过因为本质上还是使用的字体,所以多色图标还是不支持的。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-fontclass-">第一步:引入项目下面生成的fontclass代码:</h3>
<pre><code class="lang-js hljs javascript"><span class="hljs-comment">&lt;link rel="stylesheet" type="text/css" href="./iconfont.css"&gt;</span></code></pre>
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="lang-css hljs">&lt;<span class="hljs-selector-tag">i</span> <span class="hljs-selector-tag">class</span>="<span class="hljs-selector-tag">iconfont</span> <span class="hljs-selector-tag">icon-xxx</span>"&gt;&lt;/<span class="hljs-selector-tag">i</span>&gt;</code></pre>
<blockquote>
<p>"iconfont"是你项目下的font-family。可以通过编辑项目查看,默认是"iconfont"。</p>
</blockquote>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<script src="iconfont.js"></script>
<style type="text/css">
.icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em; height: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
</style>
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-icon"></use>
</svg>
<div class="name">相机</div>
<div class="fontclass">#icon-icon</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xiugaimima"></use>
</svg>
<div class="name">修改密码</div>
<div class="fontclass">#icon-xiugaimima</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-2zuzhijiagou"></use>
</svg>
<div class="name">2组织架构</div>
<div class="fontclass">#icon-2zuzhijiagou</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tianjiabumen"></use>
</svg>
<div class="name">添加部门</div>
<div class="fontclass">#icon-tianjiabumen</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shouji"></use>
</svg>
<div class="name">手机</div>
<div class="fontclass">#icon-shouji</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-renzheng"></use>
</svg>
<div class="name">认证</div>
<div class="fontclass">#icon-renzheng</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-qiyefuwuyingyong"></use>
</svg>
<div class="name">企业服务应用</div>
<div class="fontclass">#icon-qiyefuwuyingyong</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tongshi-zuzhijiagou"></use>
</svg>
<div class="name">同事-组织架构</div>
<div class="fontclass">#icon-tongshi-zuzhijiagou</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-zidingyi"></use>
</svg>
<div class="name">自定义</div>
<div class="fontclass">#icon-zidingyi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-chengyuan"></use>
</svg>
<div class="name">成员</div>
<div class="fontclass">#icon-chengyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-chaojiguanliyuan"></use>
</svg>
<div class="name">超级管理员</div>
<div class="fontclass">#icon-chaojiguanliyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-jifeizhongxin"></use>
</svg>
<div class="name">计费中心</div>
<div class="fontclass">#icon-jifeizhongxin</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-zhankai"></use>
</svg>
<div class="name">展开</div>
<div class="fontclass">#icon-zhankai</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shouqi"></use>
</svg>
<div class="name">收起</div>
<div class="fontclass">#icon-shouqi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-qiyedizhi"></use>
</svg>
<div class="name">企业地址</div>
<div class="fontclass">#icon-qiyedizhi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yewuduanmorentouxiang"></use>
</svg>
<div class="name">业务端默认头像</div>
<div class="fontclass">#icon-yewuduanmorentouxiang</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-zhuzuoquan"></use>
</svg>
<div class="name">著作权</div>
<div class="fontclass">#icon-zhuzuoquan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yuangongdangan"></use>
</svg>
<div class="name">员工档案</div>
<div class="fontclass">#icon-yuangongdangan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-qiyetongxunlu"></use>
</svg>
<div class="name">企业通讯录</div>
<div class="fontclass">#icon-qiyetongxunlu</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tongxunlu"></use>
</svg>
<div class="name">共享通讯录</div>
<div class="fontclass">#icon-tongxunlu</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-mendianjiagou"></use>
</svg>
<div class="name">门店架构</div>
<div class="fontclass">#icon-mendianjiagou</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tianjiachengyuan"></use>
</svg>
<div class="name">添加成员</div>
<div class="fontclass">#icon-tianjiachengyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-hangzhengjiagou"></use>
</svg>
<div class="name">行政架构</div>
<div class="fontclass">#icon-hangzhengjiagou</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yuangonglizhi"></use>
</svg>
<div class="name">员工离职</div>
<div class="fontclass">#icon-yuangonglizhi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-lizhi"></use>
</svg>
<div class="name">员工转正</div>
<div class="fontclass">#icon-lizhi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-gongxiangtongxunlu"></use>
</svg>
<div class="name">共享通讯录</div>
<div class="fontclass">#icon-gongxiangtongxunlu</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-qiyerenzheng"></use>
</svg>
<div class="name">企业认证</div>
<div class="fontclass">#icon-qiyerenzheng</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yuangongxiangqing"></use>
</svg>
<div class="name">员工详情</div>
<div class="fontclass">#icon-yuangongxiangqing</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-mendianquanxian"></use>
</svg>
<div class="name">门店权限</div>
<div class="fontclass">#icon-mendianquanxian</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-icon_yunxiazai"></use>
</svg>
<div class="name">下载</div>
<div class="fontclass">#icon-icon_yunxiazai</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yd-icon-upload2"></use>
</svg>
<div class="name">upload</div>
<div class="fontclass">#icon-yd-icon-upload2</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yishenhe"></use>
</svg>
<div class="name">审核中心</div>
<div class="fontclass">#icon-yishenhe</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-daishenpi"></use>
</svg>
<div class="name">待审核</div>
<div class="fontclass">#icon-daishenpi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-yishenpi"></use>
</svg>
<div class="name">已审核</div>
<div class="fontclass">#icon-yishenpi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xingbienv"></use>
</svg>
<div class="name">性别女</div>
<div class="fontclass">#icon-xingbienv</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xingbienan"></use>
</svg>
<div class="name">性别男</div>
<div class="fontclass">#icon-xingbienan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-qiyeshezhi"></use>
</svg>
<div class="name">企业设置</div>
<div class="fontclass">#icon-qiyeshezhi</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tongxunlu_icon"></use>
</svg>
<div class="name">通讯录信息</div>
<div class="fontclass">#icon-tongxunlu_icon</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shezhiziguanliyuan"></use>
</svg>
<div class="name">设置子管理员</div>
<div class="fontclass">#icon-shezhiziguanliyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tuanduichengyuan"></use>
</svg>
<div class="name">成员</div>
<div class="fontclass">#icon-tuanduichengyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shujukaifa-huishouzhan"></use>
</svg>
<div class="name">回收站</div>
<div class="fontclass">#icon-shujukaifa-huishouzhan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-oa_nofind"></use>
</svg>
<div class="name">暂无数据</div>
<div class="fontclass">#icon-oa_nofind</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xinxixianshi"></use>
</svg>
<div class="name">信息 显示</div>
<div class="fontclass">#icon-xinxixianshi</div>
</li>
</ul>
<h2 id="symbol-">symbol引用</h2>
<hr>
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
这种用法其实是做了一个svg的集合,与另外两种相比具有如下特点:</p>
<ul>
<li>支持多色图标了,不再受单色限制。</li>
<li>通过一些技巧,支持像字体那样,通过<code>font-size</code>,<code>color</code>来调整样式。</li>
<li>兼容性较差,支持 ie9+,及现代浏览器。</li>
<li>浏览器渲染svg的性能一般,还不如png。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-symbol-">第一步:引入项目下面生成的symbol代码:</h3>
<pre><code class="lang-js hljs javascript"><span class="hljs-comment">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;</span></code></pre>
<h3 id="-css-">第二步:加入通用css代码(引入一次就行):</h3>
<pre><code class="lang-js hljs javascript">&lt;style type=<span class="hljs-string">"text/css"</span>&gt;
.icon {
width: <span class="hljs-number">1</span>em; height: <span class="hljs-number">1</span>em;
vertical-align: <span class="hljs-number">-0.15</span>em;
fill: currentColor;
overflow: hidden;
}
&lt;<span class="hljs-regexp">/style&gt;</span></code></pre>
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="lang-js hljs javascript">&lt;svg <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"icon"</span> aria-hidden=<span class="hljs-string">"true"</span>&gt;<span class="xml"><span class="hljs-tag">
&lt;<span class="hljs-name">use</span> <span class="hljs-attr">xlink:href</span>=<span class="hljs-string">"#icon-xxx"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">use</span>&gt;</span>
</span>&lt;<span class="hljs-regexp">/svg&gt;
</span></code></pre>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<style type="text/css">
@font-face {font-family: "iconfont";
src: url('iconfont.eot'); /* IE9*/
src: url('iconfont.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff') format('woff'), /* chrome, firefox */
url('iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<i class="icon iconfont">&#xe63d;</i>
<div class="name">相机</div>
<div class="code">&amp;#xe63d;</div>
</li>
<li>
<i class="icon iconfont">&#xe612;</i>
<div class="name">修改密码</div>
<div class="code">&amp;#xe612;</div>
</li>
<li>
<i class="icon iconfont">&#xe735;</i>
<div class="name">2组织架构</div>
<div class="code">&amp;#xe735;</div>
</li>
<li>
<i class="icon iconfont">&#xe631;</i>
<div class="name">添加部门</div>
<div class="code">&amp;#xe631;</div>
</li>
<li>
<i class="icon iconfont">&#xe62d;</i>
<div class="name">手机</div>
<div class="code">&amp;#xe62d;</div>
</li>
<li>
<i class="icon iconfont">&#xe635;</i>
<div class="name">认证</div>
<div class="code">&amp;#xe635;</div>
</li>
<li>
<i class="icon iconfont">&#xe659;</i>
<div class="name">企业服务应用</div>
<div class="code">&amp;#xe659;</div>
</li>
<li>
<i class="icon iconfont">&#xe632;</i>
<div class="name">同事-组织架构</div>
<div class="code">&amp;#xe632;</div>
</li>
<li>
<i class="icon iconfont">&#xe937;</i>
<div class="name">自定义</div>
<div class="code">&amp;#xe937;</div>
</li>
<li>
<i class="icon iconfont">&#xe72c;</i>
<div class="name">成员</div>
<div class="code">&amp;#xe72c;</div>
</li>
<li>
<i class="icon iconfont">&#xe642;</i>
<div class="name">超级管理员</div>
<div class="code">&amp;#xe642;</div>
</li>
<li>
<i class="icon iconfont">&#xe653;</i>
<div class="name">计费中心</div>
<div class="code">&amp;#xe653;</div>
</li>
<li>
<i class="icon iconfont">&#xe742;</i>
<div class="name">展开</div>
<div class="code">&amp;#xe742;</div>
</li>
<li>
<i class="icon iconfont">&#xe743;</i>
<div class="name">收起</div>
<div class="code">&amp;#xe743;</div>
</li>
<li>
<i class="icon iconfont">&#xe60e;</i>
<div class="name">企业地址</div>
<div class="code">&amp;#xe60e;</div>
</li>
<li>
<i class="icon iconfont">&#xe62e;</i>
<div class="name">业务端默认头像</div>
<div class="code">&amp;#xe62e;</div>
</li>
<li>
<i class="icon iconfont">&#xe60f;</i>
<div class="name">著作权</div>
<div class="code">&amp;#xe60f;</div>
</li>
<li>
<i class="icon iconfont">&#xe626;</i>
<div class="name">员工档案</div>
<div class="code">&amp;#xe626;</div>
</li>
<li>
<i class="icon iconfont">&#xe6dc;</i>
<div class="name">企业通讯录</div>
<div class="code">&amp;#xe6dc;</div>
</li>
<li>
<i class="icon iconfont">&#xe6dd;</i>
<div class="name">共享通讯录</div>
<div class="code">&amp;#xe6dd;</div>
</li>
<li>
<i class="icon iconfont">&#xe6df;</i>
<div class="name">门店架构</div>
<div class="code">&amp;#xe6df;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e0;</i>
<div class="name">添加成员</div>
<div class="code">&amp;#xe6e0;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e1;</i>
<div class="name">行政架构</div>
<div class="code">&amp;#xe6e1;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e2;</i>
<div class="name">员工离职</div>
<div class="code">&amp;#xe6e2;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e3;</i>
<div class="name">员工转正</div>
<div class="code">&amp;#xe6e3;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e4;</i>
<div class="name">共享通讯录</div>
<div class="code">&amp;#xe6e4;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e5;</i>
<div class="name">企业认证</div>
<div class="code">&amp;#xe6e5;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e6;</i>
<div class="name">员工详情</div>
<div class="code">&amp;#xe6e6;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e7;</i>
<div class="name">门店权限</div>
<div class="code">&amp;#xe6e7;</div>
</li>
<li>
<i class="icon iconfont">&#xe6e8;</i>
<div class="name">下载</div>
<div class="code">&amp;#xe6e8;</div>
</li>
<li>
<i class="icon iconfont">&#xe6ec;</i>
<div class="name">upload</div>
<div class="code">&amp;#xe6ec;</div>
</li>
<li>
<i class="icon iconfont">&#xe6ee;</i>
<div class="name">审核中心</div>
<div class="code">&amp;#xe6ee;</div>
</li>
<li>
<i class="icon iconfont">&#xe6ef;</i>
<div class="name">待审核</div>
<div class="code">&amp;#xe6ef;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f0;</i>
<div class="name">已审核</div>
<div class="code">&amp;#xe6f0;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f1;</i>
<div class="name">性别女</div>
<div class="code">&amp;#xe6f1;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f2;</i>
<div class="name">性别男</div>
<div class="code">&amp;#xe6f2;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f3;</i>
<div class="name">企业设置</div>
<div class="code">&amp;#xe6f3;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f4;</i>
<div class="name">通讯录信息</div>
<div class="code">&amp;#xe6f4;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f5;</i>
<div class="name">设置子管理员</div>
<div class="code">&amp;#xe6f5;</div>
</li>
<li>
<i class="icon iconfont">&#xe6f6;</i>
<div class="name">成员</div>
<div class="code">&amp;#xe6f6;</div>
</li>
<li>
<i class="icon iconfont">&#xe703;</i>
<div class="name">回收站</div>
<div class="code">&amp;#xe703;</div>
</li>
<li>
<i class="icon iconfont">&#xe611;</i>
<div class="name">暂无数据</div>
<div class="code">&amp;#xe611;</div>
</li>
<li>
<i class="icon iconfont">&#xe74f;</i>
<div class="name">信息 显示</div>
<div class="code">&amp;#xe74f;</div>
</li>
</ul>
<h2 id="unicode-">unicode引用</h2>
<hr>
<p>unicode是字体在网页端最原始的应用方式,特点是:</p>
<ul>
<li>兼容性最好,支持ie6+,及所有现代浏览器。</li>
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
<li>但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。</li>
</ul>
<blockquote>
<p>注意:新版iconfont支持多色图标,这些多色图标在unicode模式下将不能使用,如果有需求建议使用symbol的引用方式</p>
</blockquote>
<p>unicode使用步骤如下:</p>
<h3 id="-font-face">第一步:拷贝项目下面生成的font-face</h3>
<pre><code class="lang-js hljs javascript">@font-face {
font-family: <span class="hljs-string">'iconfont'</span>;
src: url(<span class="hljs-string">'iconfont.eot'</span>);
src: url(<span class="hljs-string">'iconfont.eot?#iefix'</span>) format(<span class="hljs-string">'embedded-opentype'</span>),
url(<span class="hljs-string">'iconfont.woff'</span>) format(<span class="hljs-string">'woff'</span>),
url(<span class="hljs-string">'iconfont.ttf'</span>) format(<span class="hljs-string">'truetype'</span>),
url(<span class="hljs-string">'iconfont.svg#iconfont'</span>) format(<span class="hljs-string">'svg'</span>);
}
</code></pre>
<h3 id="-iconfont-">第二步:定义使用iconfont的样式</h3>
<pre><code class="lang-js hljs javascript">.iconfont{
font-family:<span class="hljs-string">"iconfont"</span> !important;
font-size:<span class="hljs-number">16</span>px;font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: <span class="hljs-number">0.2</span>px;
-moz-osx-font-smoothing: grayscale;
}
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
<pre><code class="lang-js hljs javascript">&lt;i <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"iconfont"</span>&gt;&amp;#x33;<span class="xml"><span class="hljs-tag">&lt;/<span class="hljs-name">i</span>&gt;</span></span></code></pre>
<blockquote>
<p>"iconfont"是你项目下的font-family。可以通过编辑项目查看,默认是"iconfont"。</p>
</blockquote>
</div>
</body>
</html>
@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1544514887243'); /* IE9*/
src: url('iconfont.eot?t=1544514887243#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'),
url('iconfont.ttf?t=1544514887243') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('iconfont.svg?t=1544514887243#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-icon:before { content: "\e63d"; }
.icon-xiugaimima:before { content: "\e612"; }
.icon-2zuzhijiagou:before { content: "\e735"; }
.icon-tianjiabumen:before { content: "\e631"; }
.icon-shouji:before { content: "\e62d"; }
.icon-renzheng:before { content: "\e635"; }
.icon-qiyefuwuyingyong:before { content: "\e659"; }
.icon-tongshi-zuzhijiagou:before { content: "\e632"; }
.icon-zidingyi:before { content: "\e937"; }
.icon-chengyuan:before { content: "\e72c"; }
.icon-chaojiguanliyuan:before { content: "\e642"; }
.icon-jifeizhongxin:before { content: "\e653"; }
.icon-zhankai:before { content: "\e742"; }
.icon-shouqi:before { content: "\e743"; }
.icon-qiyedizhi:before { content: "\e60e"; }
.icon-yewuduanmorentouxiang:before { content: "\e62e"; }
.icon-zhuzuoquan:before { content: "\e60f"; }
.icon-yuangongdangan:before { content: "\e626"; }
.icon-qiyetongxunlu:before { content: "\e6dc"; }
.icon-tongxunlu:before { content: "\e6dd"; }
.icon-mendianjiagou:before { content: "\e6df"; }
.icon-tianjiachengyuan:before { content: "\e6e0"; }
.icon-hangzhengjiagou:before { content: "\e6e1"; }
.icon-yuangonglizhi:before { content: "\e6e2"; }
.icon-lizhi:before { content: "\e6e3"; }
.icon-gongxiangtongxunlu:before { content: "\e6e4"; }
.icon-qiyerenzheng:before { content: "\e6e5"; }
.icon-yuangongxiangqing:before { content: "\e6e6"; }
.icon-mendianquanxian:before { content: "\e6e7"; }
.icon-icon_yunxiazai:before { content: "\e6e8"; }
.icon-yd-icon-upload2:before { content: "\e6ec"; }
.icon-yishenhe:before { content: "\e6ee"; }
.icon-daishenpi:before { content: "\e6ef"; }
.icon-yishenpi:before { content: "\e6f0"; }
.icon-xingbienv:before { content: "\e6f1"; }
.icon-xingbienan:before { content: "\e6f2"; }
.icon-qiyeshezhi:before { content: "\e6f3"; }
.icon-tongxunlu_icon:before { content: "\e6f4"; }
.icon-shezhiziguanliyuan:before { content: "\e6f5"; }
.icon-tuanduichengyuan:before { content: "\e6f6"; }
.icon-shujukaifa-huishouzhan:before { content: "\e703"; }
.icon-oa_nofind:before { content: "\e611"; }
.icon-xinxixianshi:before { content: "\e74f"; }
!function(n){var c,a='<svg><symbol id="icon-icon" viewBox="0 0 1024 1024"><path d="M906.226957 850.573135 118.77797 850.573135c-29.658675 0-53.689959-24.046672-53.689959-53.68776L65.088011 331.59521c0-29.631878 24.031284-53.67855 53.689959-53.67855 0 0 107.379919 0 161.069878 0 53.688936 0 71.586272-107.375519 107.378896-107.375519 35.26867 0 197.263655 0 232.655127 0 53.218196 0 73.561333 107.375519 125.293628 107.375519 37.80248 0 161.052482 0 161.052482 0 29.640255 0 53.688936 24.047696 53.688936 53.67855l0 465.291189C959.915894 826.526463 935.867213 850.573135 906.226957 850.573135L906.226957 850.573135zM512.501952 331.59521c-118.599908 0-214.741418 96.14678-214.741418 214.740806 0 118.639051 96.14151 214.794018 214.741418 214.794018 118.617305 0 214.758815-96.15599 214.758815-214.794018C727.260767 427.740968 631.119257 331.59521 512.501952 331.59521L512.501952 331.59521zM772.00257 331.59521c-14.821151 0-26.828095 12.014638-26.828095 26.861788 0 14.81952 12.00592 26.825972 26.828095 26.825972 14.819104 0 26.861865-12.006452 26.861865-26.825972C798.864435 343.608825 786.822698 331.59521 772.00257 331.59521L772.00257 331.59521zM512.501952 707.440228c-88.958629 0-161.068855-72.14104-161.068855-161.105235 0-88.928379 72.110226-161.054069 161.068855-161.054069 88.940209 0 161.068855 72.124667 161.068855 161.054069C673.570807 635.299187 601.442161 707.440228 512.501952 707.440228L512.501952 707.440228zM154.570595 224.227877c0-9.883091 8.022026-17.904789 17.896312-17.904789l53.689959 0c9.891683 0 17.913709 8.021697 17.913709 17.904789 0 9.873882 0 17.904789 0 17.904789l-89.499981 0C154.570595 242.132666 154.570595 234.102782 154.570595 224.227877L154.570595 224.227877z" ></path></symbol><symbol id="icon-xiugaimima" viewBox="0 0 1024 1024"><path d="M561.203386 780.51449C561.203386 807.867424 538.882304 830.037888 511.343552 830.037888 483.813914 830.037888 461.492838 807.867424 461.492838 780.51449L461.492838 611.694605C461.492838 584.34167 483.813914 562.171206 511.343552 562.171206 538.882304 562.171206 561.203386 584.34167 561.203386 611.694605L561.203386 780.51449ZM861.967827 368.218157 317.73305 368.218157 317.73305 277.814848C317.73305 171.882253 404.508864 85.691968 511.161114 85.691968 617.822483 85.691968 704.598298 171.882253 704.598298 277.814848 704.598298 301.480256 723.909178 320.660832 747.735354 320.660832 771.55241 320.660832 790.87241 301.480256 790.87241 277.814848 790.87241 124.632979 665.392742 0 511.161114 0 356.929485 0 231.458938 124.632979 231.458938 277.814848L231.458938 368.218157 160.71927 368.218157C124.98 368.218157 96 396.993549 96 432.500723L96 959.708371C96 995.215546 124.98 1024 160.71927 1024L861.967827 1024C897.716218 1024 926.696218 995.215546 926.696218 959.708371L926.696218 432.500723C926.696218 396.993549 897.716218 368.218157 861.967827 368.218157L861.967827 368.218157Z" ></path></symbol><symbol id="icon-2zuzhijiagou" viewBox="0 0 1024 1024"><path d="M871.64915 710.660572l0-81.429591L535.831778 629.230981l0 81.429591 73.091692 0c21.427008 0 38.994106 17.848507 38.994106 39.069831l0 1.101077 0 192.483896c0 21.467941-17.567098 39.035038-38.994106 39.035038l-1.193175 0L415.592276 982.350414c-21.461801 0-39.293935-17.573237-39.293935-39.035038l0-1.139963L376.298342 749.730403c0-21.220301 17.832134-39.069831 39.293935-39.069831l0.865717 0 71.926146 0 0-81.429591L161.022347 629.230981l0 81.429591 72.946382 0c21.314445 0 39.1036 17.848507 39.1036 39.069831l0 1.101077 0 192.483896c0 21.467941-17.790178 39.035038-39.1036 39.035038l-1.047866 0L40.494273 982.350414c-21.832238 0-39.370683-17.573237-39.370683-39.035038l0-1.139963L1.12359 749.730403c0-21.220301 17.538445-39.069831 39.370683-39.069831l1.040702 0 72.050989 0L113.585965 605.827969l0-0.305969c0-13.101389 10.576893-23.702841 23.362081-23.702841l351.441211 0 0-164.55787L353.425402 417.261289c-21.838378 0-39.111786-17.873066-39.111786-39.593763l0-0.836041L314.313615 80.684624c0-21.720697 17.273409-39.035038 39.111786-39.035038l1.040702 0 316.296783 0c21.874193 0 39.411615 17.314341 39.411615 39.035038l0 1.11745 0 295.865451c0 21.726837-17.537422 39.593763-39.411615 39.593763l-1.00591 0L535.837918 417.261289l0 164.55787 359.290993 0 0.522909 0c12.785188 0 23.103184 10.601452 23.103184 23.702841l0 105.138572 64.937988 0c21.615297 0 39.182394 17.848507 39.182394 39.069831l0 1.101077 0 192.483896c0 21.467941-17.567098 39.035038-39.182394 39.035038l-1.011027 0L790.515295 982.350414c-22.097274 0-39.405475-17.573237-39.405475-39.035038l0-1.139963L751.10982 749.730403c0-21.220301 17.308201-39.069831 39.405475-39.069831l0.747014 0L871.64915 710.660572 871.64915 710.660572 871.64915 710.660572zM871.64915 710.660572" ></path></symbol><symbol id="icon-tianjiabumen" viewBox="0 0 1024 1024"><path d="M488.4992 271.0016C549.9904 271.0016 599.7568 221.7472 599.7568 161.0752 599.7568 100.352 549.9904 51.2 488.4992 51.2 427.1104 51.2 377.2928 100.352 377.2928 161.0752 377.2928 221.7472 427.1104 271.0016 488.4992 271.0016ZM761.3952 290.5088C817.8176 290.5088 863.5392 245.248 863.5392 189.5424 863.5392 133.7344 817.8176 88.576 761.3952 88.576 704.8704 88.576 659.1488 133.7344 659.1488 189.5424 659.1488 245.248 704.8704 290.5088 761.3952 290.5088ZM264.8064 395.3152C264.8064 364.4416 274.1248 335.616 290.0992 311.5008 282.88 309.76 275.3536 308.8896 267.6736 308.8896L148.224 308.8896C94.8224 308.8896 51.2 352.0512 51.2 404.736L51.2 555.5712C51.2 592.4352 72.6016 624.64 103.68 640.6656L103.68 935.424 182.1184 935.424 239.7184 935.424 311.7568 935.424 311.7568 669.2864C282.3168 640.8192 264.8064 601.4464 264.8064 559.4112L264.8064 395.3152 264.8064 395.3152ZM704.4608 308.8896C696.7296 308.8896 689.2544 309.76 682.0352 311.5008 698.0096 335.616 707.2768 364.4416 707.2768 395.3152L707.2768 559.4112C707.2768 588.288 699.0336 615.936 684.3392 639.6416 717.5168 616.448 758.0672 602.8288 801.7408 602.8288 834.1504 602.8288 864.8192 610.304 892.0576 623.616 909.824 606.208 920.9344 582.0928 920.9344 555.5712L920.9344 404.736C920.9344 352.0512 877.2608 308.8896 823.9104 308.8896L704.4608 308.8896ZM656.0256 395.3152C656.0256 337.92 608.512 290.9696 550.4 290.9696L420.4544 290.9696C362.3936 290.9696 314.8288 337.92 314.8288 395.3152L314.8288 559.4112C314.8288 599.552 338.1248 634.5728 371.968 652.032L371.968 972.7488 457.3184 972.7488 520.0384 972.7488 598.4256 972.7488 598.4256 810.4448C598.3232 808.1408 598.272 805.8368 598.272 803.5328 598.272 801.28 598.3232 799.0784 598.4256 796.8256L598.4256 652.2368C632.5248 634.88 656.0256 599.7056 656.0256 559.4112L656.0256 395.3152ZM210.7392 88.576C154.3168 88.576 108.544 133.7344 108.544 189.5424 108.544 245.248 154.3168 290.5088 210.7392 290.5088 267.2128 290.5088 312.9856 245.248 312.9856 189.5424 312.9856 133.7344 267.2128 88.576 210.7392 88.576ZM799.1296 630.0672C703.3344 630.0672 625.5616 706.816 625.4592 801.3824 625.408 895.9488 703.3856 972.8 799.3856 972.7488 894.8736 972.7488 972.6976 895.9488 972.8512 801.5872 973.0048 706.9696 895.1296 630.0672 799.1296 630.0672ZM911.4112 821.4528C895.8464 821.4016 859.1872 821.2992 819.456 821.2992 819.456 860.5184 819.4048 896.7168 819.3536 912.128 819.2512 923.136 810.1888 932.096 799.0272 932.1472 787.8656 932.1984 778.8544 923.2896 778.9056 912.2816 778.9568 896.8704 779.008 860.5696 779.0592 821.2992 739.2768 821.2992 702.5664 821.4016 686.9504 821.4528 675.7888 821.504 666.7776 812.5952 666.8288 801.5872 666.88 790.528 675.9936 781.568 687.1552 781.5168 702.6688 781.4144 739.328 781.4144 779.0592 781.4144 779.008 742.144 778.9568 705.9456 778.9056 690.5344 778.8544 679.5264 787.8656 670.6176 799.0272 670.6688 810.1888 670.72 819.2512 679.68 819.3536 690.7392 819.4048 706.0992 819.456 742.2464 819.456 781.4144 859.0848 781.4144 895.6928 781.4144 911.2064 781.5168 922.368 781.568 931.4816 790.528 931.5328 801.5872 931.584 812.5952 922.5728 821.504 911.4112 821.4528Z" ></path></symbol><symbol id="icon-shouji" viewBox="0 0 1024 1024"><path d="M225.113302 814.222884h562.461768V113.092465H225.089488v701.130419z m339.825117-757.688558a11.549767 11.549767 0 0 0-11.716466-11.311628h-117.212279a11.573581 11.573581 0 0 0-11.716465 11.311628v11.311627c0 6.215442 5.310512 11.311628 11.716465 11.311628h117.212279c6.429767 0 11.692651-5.096186 11.692652-11.311628v-11.311627z m-58.582326 893.380465c25.766698 0 46.86586-20.337116 46.86586-45.222698 0-24.861767-21.099163-45.246512-46.889674-45.246512-25.766698 0-46.86586 20.384744-46.86586 45.246512 0 24.885581 21.099163 45.246512 46.86586 45.246512z m281.218977 67.869767H225.089488C186.439442 1017.808372 154.790698 987.231256 154.790698 949.938605V67.869767C154.790698 30.529488 186.415628 0 225.113302 0h562.461768c38.67386 0 70.322605 30.529488 70.322604 67.869767v882.068838c0 37.292651-31.672558 67.869767-70.322604 67.869767z" fill="#79CF69" ></path></symbol><symbol id="icon-renzheng" viewBox="0 0 1024 1024"><path d="M998.808 451.155L890.742 343.088V222.979c0-49.17-39.866-89.036-89.035-89.036H681.576L572.864 25.208c-33.611-33.611-88.1-33.611-121.711 0L342.418 133.943h-119.44c-49.17 0-89.035 39.866-89.035 89.036V342.42L25.208 451.155c-33.611 33.611-33.611 88.101 0 121.712L133.942 681.58v120.131c0 49.17 39.866 89.036 89.035 89.036h120.131l108.044 108.045c33.611 33.611 88.1 33.611 121.711 0l108.045-108.045h120.799c49.17 0 89.035-39.866 89.035-89.036V680.912l108.066-108.045c33.589-33.611 33.589-88.101 0-121.712zM430.786 734.934L222.978 525.433l55.002-25.398 146.685 114.278 334.261-324.558 42.782 19.031-370.922 426.148z" ></path></symbol><symbol id="icon-qiyefuwuyingyong" viewBox="0 0 1024 1024"><path d="M1007.831579 280.252632v414.989473c0 21.557895-5.389474 37.726316-10.778947 53.894737-5.389474 16.168421-16.168421 32.336842-26.947369 48.505263-10.778947 16.168421-21.557895 26.947368-37.726316 43.11579-16.168421 10.778947-26.947368 21.557895-37.726315 26.947368-37.726316 16.168421-75.452632 32.336842-118.568421 48.505263-43.115789 16.168421-80.842105 32.336842-113.178948 48.505263-43.115789 16.168421-80.842105 32.336842-118.568421 48.505264v-538.947369l463.494737-194.021052" fill="#4E9AFA" ></path><path d="M0 280.252632l468.884211 199.410526v538.947368c-37.726316-16.168421-75.452632-32.336842-113.178948-53.894737-32.336842-16.168421-75.452632-32.336842-118.568421-53.894736-43.115789-21.557895-86.231579-37.726316-129.347368-59.284211-16.168421-5.389474-32.336842-16.168421-43.11579-26.947368-10.778947-10.778947-21.557895-26.947368-32.336842-37.726316-10.778947-16.168421-16.168421-26.947368-21.557895-43.11579-5.389474-16.168421-10.778947-32.336842-10.778947-48.505263V280.252632" fill="#22C4C7" ></path><path d="M980.884211 199.410526L512 393.431579 43.115789 199.410526 506.610526 10.778947l474.273685 188.631579" fill="#FF954F" ></path></symbol><symbol id="icon-tongshi-zuzhijiagou" viewBox="0 0 1024 1024"><path d="M512.02 255.98h8.54c124.191 0 248.403-0.041 372.593 0 31.11 0 56.075 18.083 63.734 46.428 1.68 6.205 2.417 12.861 2.417 19.292 0.123 169.636 0.143 339.251 0.061 508.887-0.02 38.031-27.73 65.68-65.74 65.7-254.362 0.061-508.703 0.061-763.045 0-38.195-0.02-65.966-27.915-65.966-66.171-0.04-211.989-0.04-423.957 0-635.966 0-38.502 27.874-66.437 66.315-66.437 104.837-0.04 209.694-0.04 314.531 0 38.749 0 66.376 27.546 66.499 66.171 0.123 18.37 0.061 36.782 0.061 55.173v6.923z m-383.098-0.39h318.873v-63.385H128.922v63.385z" ></path></symbol><symbol id="icon-zidingyi" viewBox="0 0 1024 1024"><path d="M128 128h320V64H128.288A64.32 64.32 0 0 0 64 128.288V448h64V128z m448-64v64h320v320h64V128.288A64.32 64.32 0 0 0 895.712 64H576zM128 576H64v319.712A64.32 64.32 0 0 0 128.288 960H448v-64H128V576z m768 320H576v64h319.712A64.32 64.32 0 0 0 960 895.712V576h-64v320zM544 480V256h-64v224H256v64h224v256h64v-256h256v-64h-256z" ></path></symbol><symbol id="icon-chengyuan" viewBox="0 0 1092 1024"><path d="M698.504533 679.3216c-9.284267-9.6256-13.994667-60.347733-23.210666-108.544 40.618667-32.085333 73.181867-79.530667 93.047466-135.850667 25.736533-9.693867 44.2368-41.506133 44.2368-79.2576 0-26.4192-9.216-50.107733-23.7568-65.194666C782.062933 128.477867 678.570667 0 552.072533 0 425.437867 0 321.9456 128.477867 315.118933 290.474667c-14.472533 15.086933-23.7568 38.775467-23.7568 65.194666 0 37.751467 18.8416 69.563733 44.509867 79.2576 18.0224 51.746133 46.6944 95.6416 82.397867 127.3856-10.0352 50.449067-14.677333 106.769067-24.507734 117.009067-30.583467 32.085333-80.554667 54.4768-130.798933 80.008533C239.479467 773.12 0 846.165333 0 955.528533 0 973.960533 14.199467 1024 46.967467 1024h998.331733c32.699733 0 46.967467-50.039467 46.967467-68.471467 0-109.431467-239.547733-182.408533-262.9632-196.1984-50.176-25.531733-100.215467-47.9232-130.798934-80.008533z" ></path></symbol><symbol id="icon-chaojiguanliyuan" viewBox="0 0 1030 1024"><path d="M585.182609 985.838509l19.080745-95.403726-69.962733-69.962733c-25.440994-25.440994-31.801242-57.242236-25.440994-89.043479 6.360248-31.801242 31.801242-50.881988 69.962733-57.242236l89.043479-12.720496c-6.360248 0-6.360248-6.360248-12.720497-6.360249-12.720497-12.720497-19.080745-19.080745-25.440994-31.801242-6.360248-6.360248-6.360248-19.080745-6.360249-31.801242v-31.801243c0-6.360248 6.360248-12.720497 6.360249-19.080745 0-6.360248 6.360248-12.720497 12.720497-12.720497l12.720497-12.720497c6.360248-6.360248 12.720497-6.360248 19.080745-12.720497 6.360248-6.360248 12.720497-12.720497 12.720497-19.080745 6.360248-6.360248 6.360248-19.080745 12.720497-25.440994 0-12.720497 6.360248-19.080745 6.360248-31.801242 6.360248 0 12.720497-6.360248 19.080746-12.720497 6.360248-6.360248 12.720497-12.720497 12.720496-19.080745 6.360248-6.360248 6.360248-19.080745 6.360249-31.801243v-25.440993c0-6.360248-6.360248-12.720497-6.360249-19.080746 0-6.360248-6.360248-12.720497-12.720496-12.720497 0-25.440994 0-50.881988-6.360249-82.683229 0-25.440994-6.360248-44.521739-19.080745-76.322982-6.360248-25.440994-19.080745-50.881988-38.161491-69.962733-6.360248-6.360248-19.080745-19.080745-31.801242-25.440993 0-12.720497-12.720497-19.080745-25.440994-25.440994-19.080745-6.360248-38.161491-12.720497-50.881988-19.080746C534.300621 0 515.219876 0 496.13913 0c-19.080745 0-31.801242 0-50.881987 6.360248-19.080745 0-31.801242 6.360248-50.881988 12.720497-12.720497 6.360248-25.440994 12.720497-44.521739 25.440994l-44.521739 44.521739c-12.720497 19.080745-25.440994 38.161491-31.801242 63.602485-6.360248 31.801242-6.360248 50.881988-12.720497 76.322981 0 25.440994-6.360248 50.881988-6.360249 76.322981 0 6.360248-6.360248 12.720497-6.360248 19.080746 0 6.360248-6.360248 12.720497-6.360248 25.440994 0 6.360248 0 19.080745 6.360248 31.801242s6.360248 19.080745 12.720497 25.440994c0 6.360248 6.360248 6.360248 6.360248 12.720497 6.360248 6.360248 6.360248 6.360248 12.720497 6.360248 6.360248 12.720497 6.360248 19.080745 12.720497 31.801242 6.360248 6.360248 6.360248 19.080745 12.720497 25.440994 6.360248 6.360248 6.360248 12.720497 12.720497 19.080745 12.720497 6.360248 19.080745 19.080745 31.801242 25.440994 6.360248 6.360248 12.720497 19.080745 12.720497 38.161491v25.440994c0 6.360248 0 19.080745-6.360248 25.440993 0 6.360248-6.360248 19.080745-19.080746 25.440994-6.360248 6.360248-19.080745 19.080745-31.801242 25.440994-19.080745 12.720497-38.161491 19.080745-63.602484 25.440994-25.440994 6.360248-127.204969 38.161491-146.285715 50.881987-19.080745 6.360248-38.161491 19.080745-57.242236 31.801243-19.080745 12.720497-25.440994 31.801242-31.801242 57.242236-6.360248 44.521739-6.360248 50.881988-6.360248 76.322981 6.360248 25.440994 6.360248 44.521739 19.080745 50.881988 6.360248 6.360248 25.440994 12.720497 50.881987 19.080745 38.161491 6.360248 222.608696 38.161491 432.496895 38.161491h82.68323v-31.801243z m419.776397-241.689441l-108.124223-12.720497c-19.080745 0-38.161491-19.080745-44.52174-31.801242l-44.521739-95.403727c-6.360248-6.360248-6.360248-12.720497-12.720497-12.720496s-6.360248 6.360248-12.720496 12.720496l-44.52174 95.403727c-6.360248 12.720497-25.440994 31.801242-44.521739 31.801242l-108.124223 12.720497c-19.080745 0-19.080745 12.720497-6.360249 25.440994l76.322982 76.322981c12.720497 12.720497 19.080745 31.801242 19.080745 50.881988l-19.080745 108.124224c0 12.720497 0 19.080745 12.720497 19.080745h12.720496l95.403727-50.881988c6.360248-6.360248 19.080745-6.360248 25.440994-6.360248 6.360248 0 19.080745 0 25.440994 6.360248l95.403726 50.881988h12.720497c6.360248 0 12.720497-6.360248 12.720497-19.080745l-19.080745-108.124224c0-19.080745 6.360248-38.161491 19.080745-50.881988l76.322982-76.322981c0-12.720497 0-25.440994-19.080746-25.440994z" fill="#999999" ></path></symbol><symbol id="icon-jifeizhongxin" viewBox="0 0 1024 1024"><path d="M544 512h192V448H588.8l160-160-44.8-44.8-192 192-192-192-44.8 44.8L435.2 448H288v64h192v64h-192v64h192v192h64v-192h192V576h-192V512zM512 0c281.6 0 512 230.4 512 512s-230.4 512-512 512-512-230.4-512-512 230.4-512 512-512z" fill="#BDC1CA" ></path></symbol><symbol id="icon-zhankai" viewBox="0 0 1089 1024"><path d="M535.744 455.936h-535.68v114.112h535.68V455.936z m489.28 389.952H1.28V960h1023.744v-114.112z m-260.096-145.472V320l260.096 190.208-260.096 190.208zM1025.024 64H2.624v116.096h1022.4V64z" fill="#979797" ></path></symbol><symbol id="icon-shouqi" viewBox="0 0 1088 1024"><path d="M489.536 455.936h535.68v114.112H489.6V455.936zM0.256 845.888H1024V960H0.256v-114.112z m260.096-145.472V320L0.256 510.208l260.096 190.208zM0.256 64h1022.4v116.096H0.256V64z" fill="#979797" ></path></symbol><symbol id="icon-qiyedizhi" viewBox="0 0 1025 1024"><path d="M885.12967111 372.43676445c0-204.70670222-167.30225778-370.71189333-373.82940444-370.71189334-206.46115555 0-373.83054222 166.00519111-373.83054222 370.71075556 0 67.63747555 18.55488 130.79438222 50.41379555 185.38951111h-0.39936l323.78197333 463.43623111 323.91395556-463.43623111h-0.43235556c31.96245333-54.59512889 50.38193778-117.75203555 50.38193778-185.38951111m-373.79640889 185.32124444c-103.21578667 0-186.91413333-82.96903111-186.91413333-185.35310222 0-102.31694222 83.69834667-185.35310222 186.91413333-185.35310222 103.31249778 0 186.91413333 83.03502222 186.91413333 185.35310222 0 102.38407111-83.60163555 185.35310222-186.91413333 185.35310222" fill="" ></path></symbol><symbol id="icon-yewuduanmorentouxiang" viewBox="0 0 1024 1024"><path d="M512.3 512.2m-448 0a448 448 0 1 0 896 0 448 448 0 1 0-896 0Z" fill="#82C5FF" ></path><path d="M509.2 522.9c74.3 0 134.7-59.6 134.7-132.9 0-73.3-60.4-132.9-134.7-132.9-74.3 0-134.7 59.6-134.7 132.9 0 73.3 60.4 132.9 134.7 132.9z m53.6 23.8h-101c-93.8 0-170.1 75.2-170.1 167.6v10c0 48.3 75.1 48.3 170.1 48.3h100.9c91.3 0 170.1 0 170.1-48.3v-10c0.1-92.4-76.2-167.6-170-167.6z" fill="#E5F3FF" ></path></symbol><symbol id="icon-zhuzuoquan" viewBox="0 0 1024 1024"><path d="M828.3 195.7C742.1 110.3 632.7 65.1 512 65.1c-119.6 0-232 46.4-316.3 130.6C110.3 282 65.1 391.3 65.1 512c0 121.5 45.1 230.8 130.6 316.3 83.5 84.3 195.9 130.6 316.3 130.6 121.5 0 230.8-45.2 316.3-130.6 85.5-85.5 130.6-194.8 130.6-316.3 0-120.7-45.1-230-130.6-316.3z m-37.5 595.4c-36.2 36.2-78.4 64.6-125.4 84.4-48.6 20.5-100.3 30.9-153.4 30.9-53.2 0-104.8-10.4-153.4-30.9-47-19.9-89.2-48.3-125.4-84.4-74.6-74.5-115.6-173.6-115.6-279.1 0-217.5 176.9-394.5 394.5-394.5 217.5 0 394.5 176.9 394.5 394.5-0.1 105.4-41.2 204.6-115.8 279.1z m0 0" ></path><path d="M646.7 599.7c-28.2 39.2-73.6 65.8-125.3 65.8-84.6 0-155.1-68.9-155.1-155.1 0-86.2 68.9-155.1 155.1-155.1 51.7 0 97.1 25.1 125.3 65.8h92.4c-36-86.2-119.1-145.7-217.7-145.7-130 0-236.5 106.5-236.5 236.5s106.5 236.5 236.5 236.5c98.7 0 183.3-61.1 217.7-145.7h-92.4v-3z m0 0" ></path></symbol><symbol id="icon-yuangongdangan" viewBox="0 0 1024 1024"><path d="M1022.489 824.131c3.43 20.57-0.855 39.082-12.855 55.547-12 16.458-28.291 26.406-48.861 29.829l-123.442 19.542c-19.888 3.429-38.226-0.856-55.038-12.857-16.794-12-26.909-28.291-30.338-48.861L647.026 202.816c-1.371-10.289-0.855-20.062 1.544-29.321 2.4-9.253 6.35-17.829 11.833-25.718 5.482-7.883 12.514-14.4 21.086-19.54 8.57-5.142 18.002-8.745 28.291-10.803l122.405-19.542c20.577-3.43 39.094 1.024 55.552 13.371 16.46 12.347 26.401 28.799 29.836 49.377l104.916 663.491zM505.074 93.776c20.57 0 38.058 7.199 52.465 21.606 14.4 14.4 21.594 31.883 21.594 52.459v687.15c0 20.57-7.194 38.058-21.594 52.459-14.406 14.399-31.894 21.6-52.465 21.6H398.093c-20.576 0-38.058-7.201-52.459-21.6-14.406-14.4-21.606-31.889-21.606-52.459V167.84c0-20.576 5.488-38.058 16.458-52.459 10.976-14.406 27.088-21.606 48.347-21.606h116.241z m0 518.45c6.859 0 12.688-3.261 17.483-9.779 4.806-6.512 7.205-14.227 7.205-23.144 0-9.6-2.399-17.482-7.205-23.659-4.795-6.17-10.624-9.259-17.483-9.259H398.093c-6.859 0-12.689 3.089-17.488 9.259-4.801 6.177-7.199 14.06-7.199 23.659 0 8.917 2.399 16.632 7.199 23.144 4.799 6.518 10.63 9.779 17.488 9.779h106.981z m0-130.647c6.859 0 12.688-3.255 17.483-9.773 4.806-6.512 7.205-14.574 7.205-24.168 0-9.6-2.399-17.488-7.205-23.658-4.795-6.177-10.624-9.265-17.483-9.265H398.093c-6.859 0-12.689 3.088-17.488 9.265-4.801 6.17-7.199 14.058-7.199 23.658 0 9.594 2.399 17.656 7.199 24.168 4.799 6.518 10.63 9.773 17.488 9.773h106.981zM182.076 93.776c20.57 0 38.232 7.199 52.973 21.606 14.747 14.4 22.114 31.883 22.114 52.459v687.15c0 20.57-7.367 38.058-22.114 52.459-14.741 14.399-32.403 21.6-52.973 21.6H75.094c-20.577 0-38.233-7.201-52.98-21.6C7.368 893.048 0 875.56 0 854.99V167.84c0-20.576 7.368-38.058 22.114-52.459 14.747-14.406 32.403-21.606 52.98-21.606h106.982zM79.206 350.94c-7.542 0-13.713 3.088-18.518 9.263-4.795 6.165-7.2 14.054-7.2 23.654 0 8.917 2.405 16.632 7.2 23.144 4.805 6.518 10.976 9.779 18.518 9.779h98.752c7.546 0 13.544-3.261 18.002-9.779 4.458-6.512 6.685-14.227 6.685-23.144 0-9.6-2.227-17.488-6.685-23.654-4.458-6.175-10.456-9.263-18.002-9.263H79.206z m102.87 323.004c7.54 0 13.538-3.089 17.997-9.259 4.458-6.171 6.691-13.717 6.691-22.63 0-9.606-2.233-17.321-6.691-23.144-4.458-5.829-10.456-8.749-17.997-8.749H79.206c-7.542 0-13.713 2.92-18.518 8.749-4.795 5.823-7.2 13.538-7.2 23.144 0 8.912 2.405 16.458 7.2 22.63 4.805 6.17 10.976 9.259 18.518 9.259h102.87z m0-126.529c7.54 0 13.538-3.082 17.997-9.259 4.458-6.17 6.691-14.058 6.691-23.652 0-9.606-2.233-17.494-6.691-23.665-4.458-6.17-10.456-9.259-17.997-9.259H79.206c-7.542 0-13.713 3.089-18.518 9.259-4.795 6.171-7.2 14.06-7.2 23.665 0 9.594 2.405 17.482 7.2 23.652 4.805 6.177 10.976 9.259 18.518 9.259h102.87z m0 0" fill="" ></path></symbol><symbol id="icon-qiyetongxunlu" viewBox="0 0 1024 1024"><path d="M899.072 45.568H196.608c-43.008 0-78.336 35.328-78.336 77.824V240.64h-38.912c-23.552 0-38.912 15.36-38.912 38.912s15.36 38.912 38.912 38.912h38.912v156.16h-38.912c-23.552 0-38.912 15.872-38.912 38.912 0 23.552 15.36 38.912 38.912 38.912h38.912v156.16h-38.912c-23.552 0-38.912 15.872-38.912 38.912 0 23.552 15.36 38.912 38.912 38.912h38.912v117.248c0 43.008 35.328 77.824 78.336 77.824h702.464c43.008 0 77.824-35.328 77.824-77.824V123.904c0.512-43.008-34.816-78.336-77.824-78.336z m0 859.136H196.608v-117.248H235.52c23.552 0 38.912-15.872 38.912-38.912 0-23.552-15.36-38.912-38.912-38.912h-38.912V552.96H235.52c23.552 0 38.912-15.872 38.912-38.912 0-23.552-15.36-38.912-38.912-38.912h-38.912V318.976H235.52c23.552 0 38.912-15.36 38.912-38.912S259.072 240.64 235.52 240.64h-38.912V123.904h702.464v780.8z" fill="" ></path><path d="M658.432 489.984c25.088-22.528 40.96-54.784 40.96-91.136 0-67.584-54.784-122.368-122.368-122.368S454.656 331.264 454.656 398.848c0 36.352 15.872 68.608 40.96 91.136-53.76 35.84-90.112 102.4-90.112 156.672 0 78.336 76.8 101.376 171.52 101.376s171.52-23.04 171.52-101.376c0-54.272-36.352-120.832-90.112-156.672z" fill="" ></path></symbol><symbol id="icon-tongxunlu" viewBox="0 0 1024 1024"><path d="M899.072 45.568H196.608c-43.008 0-78.336 35.328-78.336 77.824V240.64h-38.912c-23.552 0-38.912 15.36-38.912 38.912s15.36 38.912 38.912 38.912h38.912v156.16h-38.912c-23.552 0-38.912 15.872-38.912 38.912 0 23.552 15.36 38.912 38.912 38.912h38.912v156.16h-38.912c-23.552 0-38.912 15.872-38.912 38.912 0 23.552 15.36 38.912 38.912 38.912h38.912v117.248c0 43.008 35.328 77.824 78.336 77.824h702.464c43.008 0 77.824-35.328 77.824-77.824V123.904c0.512-43.008-34.816-78.336-77.824-78.336z m0 859.136H196.608v-117.248H235.52c23.552 0 38.912-15.872 38.912-38.912 0-23.552-15.36-38.912-38.912-38.912h-38.912V552.96H235.52c23.552 0 38.912-15.872 38.912-38.912 0-23.552-15.36-38.912-38.912-38.912h-38.912V318.976H235.52c23.552 0 38.912-15.36 38.912-38.912S259.072 240.64 235.52 240.64h-38.912V123.904h702.464v780.8z" fill="" ></path><path d="M774.144 736.768c31.232-31.232 81.92-66.56 15.36-120.832-66.56-54.784-86.016-27.136-117.248 4.096-19.456 19.456-74.24-23.552-120.832-70.144-46.592-46.592-89.6-101.376-70.144-120.832 31.232-31.232 58.368-50.688 4.096-117.248-54.784-66.56-89.6-15.36-120.832 15.872-35.328 35.328 0 160.256 124.928 285.184 124.928 123.904 249.856 155.136 284.672 123.904z" fill="" ></path></symbol><symbol id="icon-mendianjiagou" viewBox="0 0 1024 1024"><path d="M337.92 477.696c-18.944 92.16-109.568 151.552-201.728 132.608C56.832 593.92 0 524.288 0 443.904c0-38.4 12.8-73.728 34.304-102.4l102.4-307.2h751.104l102.4 307.2c56.32 75.264 40.96 182.272-34.304 239.104-75.264 56.32-182.272 40.96-239.104-34.304-15.36-19.968-25.6-43.52-30.72-68.096h-6.656c-18.944 92.16-109.056 152.064-201.728 133.12-67.072-13.824-119.296-66.048-133.12-133.12 0-0.512-6.656-0.512-6.656-0.512zM307.2 614.4h68.096c32.256 43.008 82.944 68.096 136.704 68.096s104.448-25.088 136.704-68.096H716.8c32.256 43.008 82.944 68.096 136.704 68.096 24.064 0 47.616-5.12 68.096-14.336v219.136c0 56.32-46.08 102.4-102.4 102.4H204.8c-56.32 0-102.4-46.08-102.4-102.4v-219.136c21.504 9.216 44.544 14.336 68.096 14.336 53.76 0 104.448-25.088 136.704-68.096z m0 102.4v204.8h68.096v-204.8H307.2z" fill="" ></path></symbol><symbol id="icon-tianjiachengyuan" viewBox="0 0 1024 1024"><path d="M768.180531 448c-141.312 0-256 114.688-256 256s114.688 256 256 256 256-114.688 256-256-114.688-256-256-256z m153.088 285.184h-124.928v124.928h-58.368v-124.928h-124.928v-58.368h124.928v-124.928h58.368v124.928h124.928v58.368z" fill="" ></path><path d="M467.124531 728.064c0-62.464 20.992-122.88 59.392-172.032 1.024-7.168 3.072-13.824 5.632-18.944 2.56-5.632 5.632-10.24 9.728-14.336 4.096-4.096 8.704-7.68 13.824-11.264 5.12-3.584 10.752-8.192 16.896-13.312 5.12-4.608 10.24-11.264 14.336-19.456 4.096-8.192 8.192-16.896 11.264-25.6 3.072-10.24 6.144-20.48 8.704-31.232 7.168-2.048 13.312-6.144 18.944-10.752 5.12-4.608 10.24-11.264 14.336-19.456 4.096-8.192 7.68-19.456 9.216-33.28 1.536-10.752 1.024-19.456-0.512-27.136-1.024-6.144-3.584-12.288-6.144-17.92-2.56-5.12-6.144-9.216-10.752-11.776 1.536-51.712-6.144-103.424-22.528-152.576-8.192-25.6-20.992-49.664-37.376-70.656-8.192-10.24-17.92-19.456-28.672-27.648-12.8-9.728-26.624-17.92-40.96-24.576-15.872-7.68-32.256-13.824-49.152-17.92C436.404531 2.048 417.972531 0 399.540531 0c-15.36 0-30.72 1.024-47.104 4.096C317.620531 9.728 284.852531 24.064 256.692531 45.568c-16.384 12.288-30.72 27.648-41.984 44.544-13.312 19.968-23.552 41.984-30.208 65.024-6.656 24.064-11.776 46.592-14.336 68.096-3.584 25.088-4.608 50.688-4.096 76.288-5.12 6.144-9.216 13.312-11.776 20.992-3.072 7.68-4.608 15.36-5.632 23.552-1.024 8.704 0 18.944 3.584 30.72 3.072 11.264 7.168 19.968 11.776 26.112 4.608 6.144 8.704 10.752 12.8 13.824 4.096 3.072 8.704 5.632 13.824 6.656 3.072 10.752 6.656 20.992 9.728 31.232 3.072 8.704 6.656 16.896 10.752 25.6 3.072 7.168 8.192 13.824 13.824 19.456 11.264 9.216 21.504 18.432 30.208 27.136 8.704 8.704 13.824 20.992 15.36 36.864 0.512 9.728 1.024 19.456 1.024 28.16 0 8.704-1.536 16.896-4.608 25.088-3.072 8.192-8.192 15.872-15.872 24.064-9.728 9.728-20.48 17.92-32.256 25.088-17.408 11.264-37.376 19.968-59.904 26.112-23.04 6.144-45.056 12.8-66.56 19.968-58.88 19.456-95.232 80.384-92.16 95.232 0 51.712 1.536 96.256 1.536 150.528 0 72.192 491.008 86.016 702.464 45.568-134.144-17.92-237.056-133.632-237.056-273.408z" fill="" ></path></symbol><symbol id="icon-hangzhengjiagou" viewBox="0 0 1024 1024"><path d="M768.512 713.216l-182.784-72.704s-34.816-12.8-47.104-28.16c-9.216-9.216-9.216-28.16 0-53.76 6.144-25.088 100.864-132.608 100.864-226.816 0-147.968-97.792-267.776-217.6-267.776S204.288 183.808 204.288 332.288c0 91.136 84.992 201.728 94.72 220.672 9.216 18.944 6.144 50.176 0 59.904-12.8 12.8-56.832 28.16-56.832 28.16l-166.912 72.704c-37.888 15.872-69.12 50.176-69.12 91.136v69.632c0 44.032 37.888 72.704 81.92 72.704h668.16c44.032 0 81.92-28.16 81.92-72.704v-69.632c-0.512-40.96-32.256-78.848-69.632-91.648z m-31.744-340.48c-18.944 0-34.816-9.216-34.816-31.744 0-22.016 15.872-31.744 34.816-31.744h245.76c18.944 0 34.816 9.216 34.816 31.744 0 22.016-15.872 31.744-34.816 31.744h-245.76z m50.688 138.752c-18.944 0-34.816-9.216-34.816-31.744 0-22.016 15.872-31.744 34.816-31.744h198.656c18.944 0 31.744 9.216 31.744 31.744 0 22.016-15.872 31.744-34.816 31.744h-195.584z m66.048 129.024c-18.944 0-34.816-9.216-34.816-31.744 0-22.016 15.872-31.744 34.816-31.744h129.024c18.944 0 34.816 9.216 34.816 31.744 0 22.016-15.872 31.744-34.816 31.744h-129.024z" fill="" ></path></symbol><symbol id="icon-yuangonglizhi" viewBox="0 0 1024 1024"><path d="M761.856 521.216c-133.632 0-241.664 108.032-241.664 241.152s108.032 241.152 241.664 241.152 241.664-108.032 241.664-241.152-108.032-241.152-241.664-241.152z m118.272 311.808l-47.616 47.616-70.144-70.144-70.656 70.656-48.64-48.64 70.656-70.656-70.144-70.144 47.616-47.616 70.144 70.144 70.656-70.656 48.64 48.64-70.656 70.656 70.144 70.144z m-406.016-70.656c0-55.808 16.384-107.52 44.032-151.552-1.024-8.192 0.512-17.92 6.144-30.208 30.72-41.472 49.152-88.064 50.688-103.424 0 0 47.104-37.376 50.176-93.184 3.072-55.808-10.24-58.368-10.24-58.368 19.968-60.928 26.112-288.768-120.32-261.632C470.016 16.384 316.928-20.992 245.76 105.984c-35.328 63.488-48.64 150.528-20.992 221.184-1.024 5.12-9.728-5.12-12.8 27.648-3.072 31.744 11.264 76.8 26.624 97.792 6.656 8.704 17.408 15.36 25.088 18.432 0 0 9.216 56.32 53.248 109.056 10.24 41.984-31.744 64-31.744 64-138.24 26.624-265.216 103.424-265.216 186.368v64.512c0 90.112 209.92 109.568 398.848 109.568 56.832 0 115.712-5.12 169.984-13.312-69.632-52.736-114.688-135.68-114.688-228.864z" fill="" ></path></symbol><symbol id="icon-lizhi" viewBox="0 0 1024 1024"><path d="M474.112 762.368c0-55.808 16.384-107.52 44.032-151.552-1.024-8.192 0.512-17.92 6.144-30.208 30.72-41.472 49.152-88.064 50.688-103.424 0 0 47.104-37.376 50.176-93.184 3.072-55.808-10.24-58.368-10.24-58.368 19.968-60.928 26.112-288.768-120.32-261.632C470.016 16.384 316.928-20.992 245.76 105.984c-35.328 63.488-48.64 150.528-20.992 221.184-1.024 5.12-9.728-5.12-12.8 27.648-3.072 31.744 11.264 76.8 26.624 97.792 6.656 8.704 17.408 15.36 25.088 18.432 0 0 9.216 56.32 53.248 109.056 10.24 41.984-31.744 64-31.744 64-138.24 26.624-265.216 103.424-265.216 186.368v64.512c0 90.112 209.92 109.568 398.848 109.568 56.832 0 115.712-5.12 169.984-13.312-69.632-52.736-114.688-135.68-114.688-228.864z" fill="" ></path><path d="M762.88 522.752c-133.12 0-240.64 107.52-240.64 240.64s107.52 240.64 240.64 240.64 240.64-107.52 240.64-240.64c0-132.608-107.52-240.64-240.64-240.64z m168.448 182.272l-207.36 207.36-53.248-53.248-79.872-79.872 53.248-53.248 79.872 79.872 154.112-154.112 53.248 53.248z" fill="" ></path></symbol><symbol id="icon-gongxiangtongxunlu" viewBox="0 0 1024 1024"><path d="M874.138 10.24H158.72A104.755 104.755 0 0 0 53.862 114.944v135.27h20.941a43.674 43.674 0 0 1 0 87.04h-20.94v131.124h20.94a43.674 43.674 0 0 1 0 87.04h-20.94v130.918h20.94a43.674 43.674 0 0 1 0 87.04h-20.94v135.22A104.755 104.755 0 0 0 158.72 1013.76h715.418c57.804 0 96-46.9 96-104.755V114.944c0-57.805-38.298-104.704-96-104.704z m-140.34 830.771c-50.278 29.082-188.057-48.384-295.065-234.342S333.568 262.144 384 233.062c43.571-25.139 101.58-74.137 143.36 21.146s5.427 109.312-39.629 134.912c-31.385 18.227 3.584 95.13 43.162 163.84S619.52 691.2 650.906 672.87c45.056-26.163 75.161-51.2 136.55 32.87s-10.086 109.927-53.658 135.271z" fill="" ></path></symbol><symbol id="icon-qiyerenzheng" viewBox="0 0 1024 1024"><path d="M367.616 162.816L512 18.432l144.384 144.384h204.288v204.288l144.896 144.384-144.384 144.384V860.16h-204.288L512 1005.568l-144.384-144.384h-204.8v-204.288L18.432 512l144.384-144.384v-204.8h204.8zM448.512 609.28L322.048 482.816l-54.272 54.272 181.248 181.248 307.712-307.712-54.272-54.272L448.512 609.28z" fill="" ></path></symbol><symbol id="icon-yuangongxiangqing" viewBox="0 0 1024 1024"><path d="M886.272 146.944H137.728C75.776 147.456 25.6 197.632 25.6 259.584v505.344c0 61.952 50.176 112.128 112.128 112.128h749.056c61.952 0 112.128-50.176 112.128-112.128V259.584c-0.512-61.952-50.688-112.64-112.64-112.64zM140.8 713.728c-12.288-2.56-19.968-14.336-17.408-26.624 13.824-74.24 67.584-134.144 139.776-155.648-37.888-20.992-61.44-60.928-61.44-103.936 0-65.536 51.712-118.272 115.712-118.272 63.488 0 115.712 53.248 115.712 118.272 0 43.52-23.552 83.456-61.44 103.936 72.192 21.504 126.464 81.92 139.776 156.16 2.56 12.288-5.632 24.064-17.408 26.624-1.536 0.512-2.56 0.512-4.096 0.512l-349.184-1.024zM650.24 374.272h161.28c12.8 0 24.576 18.944 24.576 32.256 0 13.824-11.776 32.256-24.576 32.256H650.24c-12.8 0-24.576-18.944-24.576-32.256 0-13.824 11.776-32.256 24.576-32.256z m0 129.536h161.28c12.8 0 24.576 18.432 24.576 32.256s-11.776 32.256-24.576 32.256H650.24c-12.8 0-24.576-18.432-24.576-32.256s11.776-32.256 24.576-32.256z m227.328 178.176h-228.352c-12.288 0-23.552-18.944-23.552-32.256 0-13.824 11.264-32.256 23.552-32.256h228.352c12.288 0 23.552 18.944 23.552 32.256 0 13.824-11.264 32.256-23.552 32.256z" fill="" ></path></symbol><symbol id="icon-mendianquanxian" viewBox="0 0 1024 1024"><path d="M618.607753 431.907872C661.082815 413.996701 706.628363 404.785242 752.685659 404.785242h13.817189c22.005153-55.268755 27.634378-120.260717 16.375927-183.717437-25.587387-145.336356-162.735779-242.568426-306.536892-216.981039-143.801113 25.587387-265.597074 137.66014-240.009688 282.996497 5.629225 31.216612 20.469909 80.344394 38.38108 115.654988L13.210183 780.408079c-9.723207 13.817189-15.352432 38.892828-12.281945 55.780503l11.25845 64.480214c-10.746702-61.921476 3.070486 22.5169 11.25845 22.005153l85.973619 1.023495c16.375927-3.070486 37.357585-16.887675 46.569044-31.216612l103.373042-161.712284 1.023496-1.023495 90.579349 7.164468 120.772465-189.346661h1.023495c10.746702-14.840684 22.5169-28.657873 35.822342-41.963314 31.72836-31.216612 69.085944-56.292251 110.025763-73.691674zM70.014182 819.812654l-12.793693 5.629225 1.535243-13.817189 250.244642-363.340891 14.840684 13.817189-253.826876 357.711666zM450.754496 150.958366c39.404576-56.803998 117.701979-71.132935 173.994229-30.704864 56.803998 40.428071 70.10944 118.725474 30.704865 176.04122-39.404576 56.803998-79.832646 16.887675-136.636645-23.028648-56.292251-40.428071-107.978772-64.991962-68.062449-122.307708z" fill="" ></path><path d="M743.985947 469.777204c-151.477329 0-274.808533 122.819456-274.808533 274.808533s122.819456 274.808533 274.808533 274.808533 274.808533-122.819456 274.808534-274.808533-122.819456-274.808533-274.808534-274.808533z m79.832647 418.097899h-167.853257c-73.691674-20.981657-47.592539-123.331204-47.592539-123.331204 16.375927 41.451566 53.733512 41.451566 53.733512 41.451566l159.153545 1.535244c46.057296-5.117477 63.968467-44.522053 63.968467-44.522053 22.5169 132.030915-61.409728 124.866447-61.409728 124.866447z m30.704864-126.401691c-41.451566 0-56.292251-50.663026-56.292251-50.663025s0 49.63953-53.221764 50.663025h-0.511748-0.511748c-53.221764-1.023495-53.221764-50.663026-53.221764-50.663025s-14.840684 50.663026-56.292251 50.663025c-63.968467 0-50.663026-52.198269-50.663025-52.198268l10.234954-74.71517s1.535243-29.169621 22.005153-33.77535H872.434629c20.981657 4.60573 22.005153 33.77535 22.005152 33.77535l10.234955 74.71517s13.817189 52.198269-50.151278 52.198268z" fill="" ></path></symbol><symbol id="icon-icon_yunxiazai" viewBox="0 0 1024 1024"><path d="M790.528 409.6c-18.432-141.824-136.704-252.416-278.528-252.416S251.904 267.264 233.472 409.6C117.76 417.28 25.6 517.12 25.6 637.952c0 125.952 99.84 228.864 220.672 228.864h533.504c120.832-2.56 218.112-102.4 218.112-228.864C998.4 517.12 906.24 417.28 790.528 409.6z m-286.208 389.12l-194.56-223.232h131.584V367.616h125.952v207.872h131.584l-194.56 223.232z" fill="" ></path></symbol><symbol id="icon-yd-icon-upload2" viewBox="0 0 1024 1024"><path d="M512 115.712l322.56 322.56-53.76 53.76-230.4-230.4v620.544H474.112V261.632l-230.4 230.4L189.44 438.272l322.56-322.56z" fill="" ></path></symbol><symbol id="icon-yishenhe" viewBox="0 0 1024 1024"><path d="M937.472 877.056H86.528C52.736 877.056 25.6 849.92 25.6 816.128v-121.344c0-33.792 27.136-60.928 60.928-60.928h364.544V503.296C321.024 470.016 242.688 337.408 276.48 207.36S442.88-1.024 572.928 32.768s208.384 166.4 174.592 296.448c-22.016 85.504-89.088 152.064-174.592 174.08v130.048h364.544c33.792 0 60.928 27.136 60.928 60.928v121.856c0 33.792-27.136 60.928-60.928 60.928zM177.664 937.472h668.672c16.896 0 30.208 13.824 30.208 30.208 0 16.896-13.824 30.208-30.208 30.208H177.664c-16.896 0-30.208-13.824-30.208-30.208s13.312-30.208 30.208-30.208z" fill="" ></path></symbol><symbol id="icon-daishenpi" viewBox="0 0 1024 1024"><path d="M809.472 940.032H788.48c-14.848 0-26.624 11.776-26.624 26.112s11.776 26.112 26.624 26.112h21.504c14.848 0 26.624-11.776 26.624-26.112-0.512-14.336-12.288-26.112-27.136-26.112zM931.84 395.776L537.6 31.744 428.032 145.408l394.24 364.032L931.84 395.776z m-260.608 544.256H118.784c-14.848 0-26.624 11.776-26.624 26.112s11.776 26.112 26.624 26.112h552.448c14.848 0 26.624-11.776 26.624-26.112s-11.776-26.112-26.624-26.112z m-485.376-604.16l-66.048 492.544 254.464-264.704c-16.896-25.6-14.848-59.904 7.68-82.944 26.112-27.136 70.144-28.16 97.792-2.56 27.648 25.6 29.184 68.608 3.072 95.744-22.528 23.552-57.856 27.136-84.992 11.776L143.36 849.92l499.2-93.184-4.096-3.584 97.28-253.44-296.96-272.896-252.928 109.056z" fill="" ></path></symbol><symbol id="icon-yishenpi" viewBox="0 0 1024 1024"><path d="M860.672 989.696l-684.032 13.312c-41.472 0-74.752-34.304-74.752-76.288V324.096c0-41.984 33.28-76.288 74.752-76.288H317.44c24.576 0 47.104 12.288 61.44 32.256 7.168 10.752 11.776 17.408 16.896 23.04 60.416 61.44 170.496 63.488 232.448-1.024 8.704-8.704 14.336-15.872 19.456-23.04 13.824-19.968 36.864-31.744 60.416-31.744h139.776c41.472 0 74.752 34.304 74.752 76.288V926.72c-0.512 41.984-20.48 62.976-61.952 62.976z m-85.504-499.2c-15.872-15.872-40.448-16.896-54.784-2.048l-228.352 232.448c-15.36-14.336-162.304-149.504-162.304-149.504-15.872-15.872-41.472-15.872-56.832 0-15.872 15.872-15.872 41.472 0 56.832l165.376 159.744c21.504 18.944 27.648 28.16 53.76 27.136 29.184-1.536 44.544-13.824 53.76-27.136l231.936-242.688c14.336-14.848 13.312-39.424-2.56-54.784z m-173.056-246.784c-23.04 23.552-54.784 38.4-90.112 38.4-35.328 0-67.584-14.848-91.136-38.4-7.168-7.68-13.824-15.872-18.944-25.088v-0.512l-0.512-0.512v-0.512l-0.512-0.512c-10.752-19.456-16.384-41.984-16.384-64.512 0-72.704 57.344-130.56 128-130.56 35.328 0 67.072 14.336 90.112 37.888 23.552 24.064 37.888 57.344 37.888 93.184-0.512 33.792-13.824 67.072-38.4 91.136z" fill="" ></path></symbol><symbol id="icon-xingbienv" viewBox="0 0 1024 1024"><path d="M648.192 719.36s-58.368 152.064-163.328 147.456c-104.96-3.584-174.592-147.456-174.592-147.456s-139.776 77.824-171.008 131.584c-31.744 58.368-18.944 144.384-18.944 144.384h715.264s18.944-112.64-11.264-147.456c-39.936-50.688-144.384-116.224-176.128-128.512zM828.416 547.328c3.584-38.4 14.848-79.872 24.576-120.32 17.92-65.536 33.792-127.488 17.92-174.592-29.184-86.528-67.584-180.224-168.96-199.168-20.992-5.12-41.472-6.144-60.416-7.168 12.288 7.68 21.504 22.528 21.504 38.4 0 5.632-1.024 11.264-3.584 16.896 9.216 7.68 17.92 17.92 27.136 29.184 10.24 13.312 20.48 24.576 28.16 33.792 27.136 29.184 45.056 49.664 43.008 124.928-1.024 44.032 1.024 69.632 3.584 89.088 2.048 24.576 3.584 39.424-3.584 65.536-12.288 47.104-60.928 96.768-62.976 97.792l-1.024 4.608-7.68 30.208c1.024 10.24 9.216 109.056 92.16 113.664 66.56 4.608 110.592-11.264 128.512-18.944-25.088-10.24-84.992-43.008-78.336-123.904z" fill="" ></path><path d="M686.592 544.768l2.048-7.68c11.264-11.264 50.688-54.272 60.928-94.72 11.264-45.056-2.048-55.296 0-152.064s-28.16-96.768-69.632-153.088c-9.216-12.288-17.92-21.504-27.136-29.184-7.68 11.264-20.48 18.944-34.816 18.944-18.944 0-34.816-12.288-39.424-30.208-5.632 3.584-13.312 5.632-21.504 5.632-21.504 0-39.424-16.896-40.448-38.4l-10.24-1.024c-93.696-12.288-154.112 27.136-224.256 79.872-75.264 56.32-75.264 158.72-69.632 259.072 5.632 95.744 66.56 124.928 68.608 125.952l7.68 3.584-1.024-4.608c28.16 107.008 105.984 184.832 199.168 184.832 89.088 0 165.376-72.192 196.096-173.568l-1.024 11.264 4.608-4.608z m-17.92-97.792c0 133.12-84.48 245.76-185.856 245.76-102.4 0-185.856-110.592-185.856-245.76 0-11.264 1.024-17.92 2.048-23.552 0-2.048 1.024-4.608 1.024-7.68 0-1.024 2.048-10.24 4.608-21.504 2.048 0 5.632-1.024 7.68-1.024 49.664-4.608 151.04-13.312 234.496-100.352 17.92 37.376 79.872 68.608 118.272 85.504 2.048 14.848 2.048 22.528 2.048 30.208 0 5.632 0 12.288 1.024 22.528v15.872z" fill="" ></path><path d="M558.08 93.184c7.68 0 14.848-2.048 21.504-7.68l6.656-5.632 1.024 9.216c1.024 16.896 15.872 29.184 31.744 29.184 17.92 0 32.768-14.848 32.768-32.768-1.024-17.92-15.872-32.768-32.768-32.768-7.68 0-14.848 2.048-21.504 7.68l-6.656 5.632-1.024-9.216c-1.024-16.896-15.872-29.184-31.744-29.184-17.92 0-32.768 14.848-32.768 32.768s14.848 32.768 32.768 32.768z" fill="" ></path></symbol><symbol id="icon-xingbienan" viewBox="0 0 1024 1024"><path d="M855.552 761.344c-45.568-38.4-205.312-81.408-205.312-81.408 52.224 158.72-79.36 292.352-79.36 292.352l-30.72-209.92 13.824-10.24-13.824-24.064h-40.96l-13.824 24.064 13.824 10.24-20.48 212.992c-133.632-86.016-106.496-295.936-106.496-295.936-58.88 3.584-166.912 36.352-224.256 96.256s-40.96 216.576-40.96 216.576h808.448c13.824-57.344-17.92-209.408-59.904-230.912z" fill="#040000" ></path><path d="M761.344 233.984c-19.456-97.28-154.112-132.608-183.808-144.896-14.848-11.264-17.92-21.504-22.528-56.832-1.024-1.024-21.504 52.224-25.088 52.224-2.048 0 14.848-54.272 12.288-53.248-3.584 1.024-32.768 55.808-37.376 57.856-2.048 1.024 19.456-51.2 16.896-49.664-45.568 20.48-120.32 72.704-120.32 72.704l14.848-59.904c-51.2 22.528-162.304 137.216-162.304 263.168 0 100.864 26.112 129.024 36.352 136.192l20.48 29.696c16.896 122.368 100.864 210.944 199.68 210.944 99.84 0 185.856-91.648 199.68-214.528v-2.048l14.848-14.848c-1.024-2.048 54.784-129.024 36.352-226.816z m-69.12 192c1.024 3.584 1.024 6.656 0 10.24v3.584c0 126.976-81.408 230.4-182.784 230.4s-182.784-103.424-182.784-230.4V404.48c13.824-22.528 28.16-52.224 39.936-86.016 121.344 35.328 196.096 36.352 274.432-4.608 8.192 26.112 29.696 64.512 48.64 96.256l2.56 15.872z" fill="#040000" ></path></symbol><symbol id="icon-qiyeshezhi" viewBox="0 0 1024 1024"><path d="M512 15.872C238.08 15.872 15.872 238.08 15.872 512c0 273.92 222.208 496.128 496.128 496.128 273.92 0 496.128-222.208 496.128-496.128 0-273.92-222.208-496.128-496.128-496.128z m3.584 806.4c-14.336 0-158.72-121.344-158.72-139.776 0-17.92 117.248-343.552 117.248-343.552l-77.312-97.28c-11.264-14.336-9.216-39.936 23.04-39.936h192.512c32.256 0 34.304 25.6 23.04 39.936l-77.824 96.768s117.248 325.632 117.248 343.552c0 18.432-144.384 140.288-159.232 140.288z" fill="" ></path></symbol><symbol id="icon-tongxunlu_icon" viewBox="0 0 1024 1024"><path d="M950.272 432.64h-152.064c-20.992 0-37.888 16.896-37.888 37.888 0 20.992 16.896 37.888 37.888 37.888h152.064c20.992 0 37.888-16.896 37.888-37.888 0-20.992-16.896-37.888-37.888-37.888m0-152.064h-152.064c-20.992 0-37.888 16.896-37.888 37.888s16.896 37.888 37.888 37.888h152.064c20.992 0 37.888-16.896 37.888-37.888s-16.896-37.888-37.888-37.888m-152.064-76.288h152.064c20.992 0 37.888-16.896 37.888-37.888s-16.896-37.888-37.888-37.888h-152.064c-20.992 0-37.888 16.896-37.888 37.888s16.384 37.888 37.888 37.888" fill="" ></path><path d="M814.08 660.992c-6.144-2.56-115.712-50.688-236.032-74.752 13.824-11.264 26.112-25.088 36.864-39.424 26.112-35.84 39.936-78.336 39.936-122.88V299.52c0-66.56-31.744-129.024-85.504-168.448-35.84-26.624-78.848-40.96-123.392-40.96-115.2 0-208.896 93.696-208.896 209.408v124.416c0 67.072 31.744 126.976 81.408 165.376-114.688 24.576-215.552 68.608-220.672 71.168-34.816 13.824-60.928 53.248-60.928 90.624v156.672l2.048 6.144c11.264 33.28 41.984 55.296 75.776 55.296h680.96c39.424 0 72.192-29.696 77.312-67.584l0.512-150.016c0-17.92-6.144-36.352-16.384-52.224-10.24-17.408-25.6-31.232-43.008-38.4" fill="" ></path></symbol><symbol id="icon-shezhiziguanliyuan" viewBox="0 0 1024 1024"><path d="M512 527.36c-143.36 0-261.12-158.72-261.12-291.84S368.64 0 512 0s261.12 107.52 261.12 240.64-117.76 286.72-261.12 286.72z m-460.8 307.2c0-66.56 51.2-138.24 112.64-168.96l112.64-51.2 87.04 276.48s0 25.6 46.08 25.6c40.96 0 40.96-25.6 40.96-25.6v-225.28s0-51.2 56.32-51.2 56.32 51.2 56.32 51.2v225.28s15.36 30.72 51.2 30.72 40.96-30.72 40.96-30.72l87.04-276.48 112.64 51.2c61.44 30.72 112.64 102.4 112.64 168.96v71.68c0 66.56-56.32 117.76-128 117.76H179.2c-71.68 0-128-51.2-128-117.76v-71.68z" fill="" ></path></symbol><symbol id="icon-tuanduichengyuan" viewBox="0 0 1024 1024"><path d="M268.288 755.2H76.8c-27.136 0-48.64-20.48-48.64-46.592v-3.584c0.512-3.584 1.024-7.168 2.048-10.752 12.8-50.688 55.808-90.624 109.568-101.888 0.512 0 1.024 0.512 1.536 0.512h0.512c-34.304-12.288-58.88-43.52-58.88-80.384 0-47.104 40.448-85.504 90.112-85.504s90.112 38.4 90.112 85.504c0 36.352-24.064 68.096-57.856 79.872 53.76 11.264 96.256 50.688 109.568 101.888 1.024 3.584 2.048 7.168 2.048 10.752v3.584c0 25.6-21.504 46.592-48.64 46.592" fill="#A6C5F6" ></path><path d="M206.848 623.616v-1.024c-9.216-6.656-18.432-8.704-25.6-8.704h-0.512c-7.68 0-16.384 2.048-25.6 8.704v1.024s6.144 14.848 15.872 23.04l-30.208 60.928 39.936 31.744v0.512l39.936-31.744-30.208-60.928c9.728-8.704 16.384-23.552 16.384-23.552z" fill="#DBE9FF" ></path><path d="M949.76 755.2h-191.488c-27.136 0-48.64-20.48-48.64-46.592v-3.584c0.512-3.584 1.024-7.168 2.048-10.752 12.8-50.688 55.808-90.624 109.568-101.888 0.512 0 1.024 0.512 1.536 0.512h0.512c-34.304-12.288-58.88-43.52-58.88-80.384 0-47.104 40.448-85.504 90.112-85.504s90.112 38.4 90.112 85.504c0 36.352-24.064 68.096-57.856 79.872 53.76 11.264 96.256 50.688 109.568 101.888 1.024 3.584 2.048 7.168 2.048 10.752v3.584c0.512 25.6-21.504 46.592-48.64 46.592" fill="#A6C5F6" ></path><path d="M888.32 623.616v-1.024c-9.216-6.656-18.432-8.704-25.6-8.704h-0.512c-7.68 0-16.384 2.048-25.6 8.704v1.024s6.144 14.848 15.872 23.04l-30.208 60.928 39.936 31.744v0.512l39.936-31.744-30.208-60.928c10.24-8.704 16.384-23.552 16.384-23.552z" fill="#DBE9FF" ></path><path d="M329.728 839.68c-52.224 0-94.72-41.984-94.72-93.696 0-2.56 0-5.12 0.512-7.68 0.512-7.168 2.048-14.848 4.096-21.504 25.6-102.4 108.544-182.272 213.504-204.288 1.024 0.512 1.536 0.512 2.56 1.024-66.56-24.576-114.176-88.064-114.176-162.304 0-95.232 78.336-172.544 175.104-172.544s175.104 77.312 175.104 172.544c0 73.728-46.592 136.192-112.64 161.28 104.96 22.528 187.904 102.4 213.504 204.288 2.56 7.168 3.584 14.336 4.096 21.504 0 2.56 0.512 5.12 0.512 7.68 0.512 51.2-41.984 93.696-94.72 93.696H329.728z" fill="#4E8CEE" ></path><path d="M702.464 876.544H329.728c-72.704 0-131.584-58.368-131.584-130.048 0-3.072 0-5.12 0.512-10.24 1.024-10.752 3.072-20.992 5.632-29.184 22.016-88.064 82.944-162.816 165.888-203.776-41.472-39.424-65.536-94.208-65.536-151.552 0-115.2 95.232-209.408 211.968-209.408 116.736 0 211.968 93.696 211.968 209.408 0 57.856-24.064 112.64-66.048 151.552 82.432 40.96 143.36 115.2 165.376 203.776 3.072 8.704 5.12 18.432 5.632 29.184l0.512 5.12v5.12c0 34.304-13.312 66.56-37.376 91.648-25.088 24.576-58.368 38.4-94.208 38.4zM516.608 178.688C419.84 178.688 341.504 256 341.504 351.232c0 55.808 27.648 108.544 74.24 141.312l28.672 19.968-32.256 12.288C325.632 557.056 261.12 629.248 239.616 716.8c-2.56 7.168-3.584 14.336-4.096 21.504 0 3.584-0.512 5.12-0.512 7.68 0 51.712 42.496 93.696 94.72 93.696h373.248c25.6 0 49.664-10.24 67.584-28.16 17.408-17.408 27.136-40.96 27.136-65.536l-0.512-7.68c-0.512-7.68-2.048-14.848-4.096-21.504-22.016-88.064-86.016-159.744-171.52-192l-32.768-12.288 28.672-19.968c46.592-32.256 74.752-84.992 74.752-141.312-0.512-95.232-78.848-172.544-175.616-172.544z" fill="#FFFFFF" ></path><path d="M580.096 563.712v-2.048c-19.968-14.336-38.912-18.432-54.784-17.92h-1.024c-15.872-0.512-34.816 3.584-54.784 17.92v2.048s13.312 30.72 33.792 48.128l-63.488 126.976 84.992 66.048 0.512-0.512 0.512-0.512v0.512l84.992-66.048-63.488-126.976c18.944-17.408 32.768-47.616 32.768-47.616z" fill="#DBE9FF" ></path></symbol><symbol id="icon-shujukaifa-huishouzhan" viewBox="0 0 1024 1024"><path d="M192 320H96c-19.2 0-32-12.8-32-32v-64c0-19.2 12.8-32 32-32h224V96c0-19.2 12.8-32 32-32h320c19.2 0 32 12.8 32 32v96h224c19.2 0 32 12.8 32 32v64c0 19.2-12.8 32-32 32h-96v608c0 19.2-12.8 32-32 32H224c-19.2 0-32-12.8-32-32V320z m192-192v64h256v-64H384z m0 256v448h64V384h-64z m192 0v448h64V384h-64z" fill="" ></path></symbol><symbol id="icon-oa_nofind" viewBox="0 0 1024 1024"><path d="M149.333333 968.96c0 11.946667 154.88 21.76 345.6 21.76s345.6-9.813333 345.6-21.76-154.88-21.76-345.6-21.76-345.6 9.813333-345.6 21.76" fill="#F2F2F2" ></path><path d="M372.906667 212.053333H806.4c8.533333 0 15.36 6.826667 15.36 15.36v657.493334c0 8.533333-6.826667 15.36-15.36 15.36H372.906667c-8.533333 0-15.36-6.826667-15.36-15.36V227.413333c0-8.106667 7.253333-15.36 15.36-15.36z m0 0" fill="#E1EDFA" ></path><path d="M704.853333 967.68c32.853333-1.28 58.453333-32.426667 58.453334-68.266667V299.52c0-14.506667-9.813333-26.453333-21.76-26.453333H284.586667c-13.226667 1.28-23.466667 13.226667-22.186667 26.453333v641.706667c-0.853333 13.226667 8.96 24.746667 22.186667 26.026666l420.266666 0.426667z m0 0" fill="#BFD8F3" ></path><path d="M720.64 778.24c0 8.106667-6.4 14.506667-14.506667 14.506667H320.853333c-5.12 0-9.813333-2.56-12.373333-7.253334-2.56-4.266667-2.56-9.813333 0-14.506666 2.56-4.266667 7.253333-7.253333 12.373333-7.253334h385.28c7.68 0 14.08 6.4 14.506667 14.506667m0-104.96c0 3.84-1.28 7.68-4.266667 10.24-2.56 2.56-6.4 4.266667-10.24 4.266667H320.853333c-5.12 0-9.813333-2.56-12.373333-7.253334-2.56-4.266667-2.56-9.813333 0-14.506666 2.56-4.266667 7.253333-7.253333 12.373333-7.253334h385.28c7.68 0.426667 14.08 6.826667 14.506667 14.506667m0-104.533333c0 8.106667-6.4 14.506667-14.506667 14.506666H320.853333c-5.12 0-9.813333-2.56-12.373333-7.253333-2.56-4.266667-2.56-9.813333 0-14.506667 2.56-4.266667 7.253333-7.253333 12.373333-7.253333h385.28c7.68 0 14.08 6.4 14.506667 14.506667m0-103.68c0 8.106667-6.4 14.506667-14.506667 14.506666H320.853333c-8.106667 0-14.506667-6.4-14.506666-14.506666s6.4-14.506667 14.506666-14.506667h385.28c7.68 0.426667 14.08 6.826667 14.506667 14.506667" fill="#E3F0FB" ></path><path d="M648.96 898.986667v-47.786667H215.04v47.786667c0 37.12 26.453333 67.413333 61.013333 67.413333h2.986667v-1.706667H708.266667c-32.426667 0-59.306667-29.44-59.306667-65.706666" fill="#A1C2E4" ></path><path d="M861.44 154.88c0 7.68 3.84 14.506667 10.666667 18.346667 6.4 3.84 14.506667 3.84 20.906666 0 6.4-3.84 10.666667-10.666667 10.666667-18.346667 0-7.68-3.84-14.506667-10.666667-18.346667-6.4-3.84-14.506667-3.84-20.906666 0-6.826667 4.266667-10.666667 11.093333-10.666667 18.346667z m0 0" fill="#E1EDFA" ></path><path d="M302.933333 66.986667c0 5.546667 4.693333 9.813333 9.813334 9.813333 5.546667 0 9.813333-4.693333 9.813333-9.813333v-23.466667c0-5.546667-4.693333-9.813333-9.813333-9.813333C307.2 33.706667 302.933333 38.4 302.933333 43.52v23.466667z" fill="#BFD8F3" ></path><path d="M881.493333 628.906667c0 2.133333 2.133333 4.693333 4.693334 4.693333 2.133333 0 4.693333-2.133333 4.693333-4.693333v-11.52c0-2.133333-2.133333-4.693333-4.693333-4.693334-2.133333 0-4.693333 2.133333-4.693334 4.693334v11.52z" fill="#A1C2E4" ></path><path d="M271.36 75.946667c-5.546667 0-9.813333 4.693333-9.813333 9.813333 0 6.4 4.693333 10.666667 9.813333 10.666667h22.613333c5.546667 0 9.813333-4.693333 9.813334-9.813334 0-5.546667-4.693333-9.813333-9.813334-9.813333h-22.613333" fill="#BFD8F3" ></path><path d="M865.706667 633.173333c-2.133333 0-4.693333 2.133333-4.693334 4.693334 0 2.133333 2.133333 4.693333 4.693334 4.693333h11.52c2.133333 0 4.693333-2.133333 4.693333-4.693333 0-2.133333-2.133333-4.693333-4.693333-4.693334h-11.52" fill="#A1C2E4" ></path><path d="M302.933333 131.84c0 5.546667 4.693333 9.813333 9.813334 9.813333 5.546667 0 9.813333-4.693333 9.813333-9.813333v-23.466667c0-5.546667-4.693333-9.813333-9.813333-9.813333-5.546667 0-9.813333 4.693333-9.813334 9.813333v23.466667z" fill="#BFD8F3" ></path><path d="M881.493333 660.48c0 2.133333 2.133333 4.693333 4.693334 4.693333 2.133333 0 4.693333-2.133333 4.693333-4.693333v-11.52c0-2.133333-2.133333-4.693333-4.693333-4.693333-2.133333 0-4.693333 2.133333-4.693334 4.693333v11.52z" fill="#A1C2E4" ></path><path d="M333.653333 75.946667c-5.546667 0-9.813333 4.693333-9.813333 9.813333 0 6.4 4.693333 10.666667 9.813333 10.666667h22.613334c5.546667 0 9.813333-4.693333 9.813333-9.813334 0-5.546667-4.693333-9.813333-9.813333-9.813333h-22.613334" fill="#BFD8F3" ></path><path d="M897.706667 633.173333c-2.133333 0-4.693333 2.133333-4.693334 4.693334 0 2.133333 2.133333 4.693333 4.693334 4.693333h11.52c2.133333 0 4.693333-2.133333 4.693333-4.693333 0-2.133333-2.133333-4.693333-4.693333-4.693334h-11.52" fill="#A1C2E4" ></path><path d="M148.906667 491.946667c-21.333333 0-38.4-17.066667-38.4-38.4 0-22.613333 17.066667-39.68 38.4-39.68s38.4 17.066667 38.4 38.4c1.28 21.333333-16.64 39.68-38.4 39.68z m0-55.466667c-8.96 0-15.786667 6.826667-15.786667 15.786667s6.826667 15.786667 15.786667 15.786666 15.786667-6.826667 15.786666-15.786666c0.426667-9.386667-6.4-15.786667-15.786666-15.786667z m0 0" fill="#F8F8F8" ></path></symbol><symbol id="icon-xinxixianshi" viewBox="0 0 1024 1024"><path d="M486.4 418.304h68.096V768H486.4V418.304z" fill="" ></path><path d="M512 938.496c239.104 0 426.496-187.904 426.496-426.496S751.104 85.504 512 85.504 85.504 272.896 85.504 512s187.392 426.496 426.496 426.496z m0 85.504C230.4 1024 0 793.6 0 512S230.4 0 512 0s512 230.4 512 512-230.4 512-512 512z" fill="" ></path><path d="M520.704 327.68m-51.2 0a51.2 51.2 0 1 0 102.4 0 51.2 51.2 0 1 0-102.4 0Z" fill="" ></path></symbol></svg>',l=(c=document.getElementsByTagName("script"))[c.length-1].getAttribute("data-injectcss");if(l&&!n.__iconfont__svg__cssinject__){n.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}!function(c){if(document.addEventListener)if(~["complete","loaded","interactive"].indexOf(document.readyState))setTimeout(c,0);else{var l=function(){document.removeEventListener("DOMContentLoaded",l,!1),c()};document.addEventListener("DOMContentLoaded",l,!1)}else document.attachEvent&&(h=c,i=n.document,t=!1,o=function(){t||(t=!0,h())},(a=function(){try{i.documentElement.doScroll("left")}catch(c){return void setTimeout(a,50)}o()})(),i.onreadystatechange=function(){"complete"==i.readyState&&(i.onreadystatechange=null,o())});var h,i,t,o,a}(function(){var c,l,h,i,t,o;(c=document.createElement("div")).innerHTML=a,a=null,(l=c.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",h=l,(i=document.body).firstChild?(t=h,(o=i.firstChild).parentNode.insertBefore(t,o)):i.appendChild(h))})}(window);
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="icon" unicode="&#58941;" d="M906.226957-38.573135 118.77797-38.573135c-29.658675 0-53.689959 24.046672-53.689959 53.68776L65.088011 480.40479c0 29.631878 24.031284 53.67855 53.689959 53.67855 0 0 107.379919 0 161.069878 0 53.688936 0 71.586272 107.375519 107.378896 107.375519 35.26867 0 197.263655 0 232.655127 0 53.218196 0 73.561333-107.375519 125.293628-107.375519 37.80248 0 161.052482 0 161.052482 0 29.640255 0 53.688936-24.047696 53.688936-53.67855l0-465.291189C959.915894-14.526463 935.867213-38.573135 906.226957-38.573135L906.226957-38.573135zM512.501952 480.40479c-118.599908 0-214.741418-96.14678-214.741418-214.740806 0-118.639051 96.14151-214.794018 214.741418-214.794018 118.617305 0 214.758815 96.15599 214.758815 214.794018C727.260767 384.259032 631.119257 480.40479 512.501952 480.40479L512.501952 480.40479zM772.00257 480.40479c-14.821151 0-26.828095-12.014638-26.828095-26.861788 0-14.81952 12.00592-26.825972 26.828095-26.825972 14.819104 0 26.861865 12.006452 26.861865 26.825972C798.864435 468.391175 786.822698 480.40479 772.00257 480.40479L772.00257 480.40479zM512.501952 104.559772c-88.958629 0-161.068855 72.14104-161.068855 161.105235 0 88.928379 72.110226 161.054069 161.068855 161.054069 88.940209 0 161.068855-72.124667 161.068855-161.054069C673.570807 176.700813 601.442161 104.559772 512.501952 104.559772L512.501952 104.559772zM154.570595 587.772123c0 9.883091 8.022026 17.904789 17.896312 17.904789l53.689959 0c9.891683 0 17.913709-8.021697 17.913709-17.904789 0-9.873882 0-17.904789 0-17.904789l-89.499981 0C154.570595 569.867334 154.570595 577.897218 154.570595 587.772123L154.570595 587.772123z" horiz-adv-x="1024" />
<glyph glyph-name="xiugaimima" unicode="&#58898;" d="M561.203386 115.48551C561.203386 88.132576 538.882304 65.962112 511.343552 65.962112 483.813914 65.962112 461.492838 88.132576 461.492838 115.48551L461.492838 284.305395C461.492838 311.65833 483.813914 333.828794 511.343552 333.828794 538.882304 333.828794 561.203386 311.65833 561.203386 284.305395L561.203386 115.48551ZM861.967827 527.781843 317.73305 527.781843 317.73305 618.185152C317.73305 724.117747 404.508864 810.308032 511.161114 810.308032 617.822483 810.308032 704.598298 724.117747 704.598298 618.185152 704.598298 594.519744 723.909178 575.339168 747.735354 575.339168 771.55241 575.339168 790.87241 594.519744 790.87241 618.185152 790.87241 771.367021 665.392742 896 511.161114 896 356.929485 896 231.458938 771.367021 231.458938 618.185152L231.458938 527.781843 160.71927 527.781843C124.98 527.781843 96 499.006451 96 463.499277L96-63.708371C96-99.215546 124.98-128 160.71927-128L861.967827-128C897.716218-128 926.696218-99.215546 926.696218-63.708371L926.696218 463.499277C926.696218 499.006451 897.716218 527.781843 861.967827 527.781843L861.967827 527.781843Z" horiz-adv-x="1024" />
<glyph glyph-name="2zuzhijiagou" unicode="&#59189;" d="M871.64915 185.339428l0 81.429591L535.831778 266.769019l0-81.429591 73.091692 0c21.427008 0 38.994106-17.848507 38.994106-39.069831l0-1.101077 0-192.483896c0-21.467941-17.567098-39.035038-38.994106-39.035038l-1.193175 0L415.592276-86.350414c-21.461801 0-39.293935 17.573237-39.293935 39.035038l0 1.139963L376.298342 146.269597c0 21.220301 17.832134 39.069831 39.293935 39.069831l0.865717 0 71.926146 0 0 81.429591L161.022347 266.769019l0-81.429591 72.946382 0c21.314445 0 39.1036-17.848507 39.1036-39.069831l0-1.101077 0-192.483896c0-21.467941-17.790178-39.035038-39.1036-39.035038l-1.047866 0L40.494273-86.350414c-21.832238 0-39.370683 17.573237-39.370683 39.035038l0 1.139963L1.12359 146.269597c0 21.220301 17.538445 39.069831 39.370683 39.069831l1.040702 0 72.050989 0L113.585965 290.172031l0 0.305969c0 13.101389 10.576893 23.702841 23.362081 23.702841l351.441211 0 0 164.55787L353.425402 478.738711c-21.838378 0-39.111786 17.873066-39.111786 39.593763l0 0.836041L314.313615 815.315376c0 21.720697 17.273409 39.035038 39.111786 39.035038l1.040702 0 316.296783 0c21.874193 0 39.411615-17.314341 39.411615-39.035038l0-1.11745 0-295.865451c0-21.726837-17.537422-39.593763-39.411615-39.593763l-1.00591 0L535.837918 478.738711l0-164.55787 359.290993 0 0.522909 0c12.785188 0 23.103184-10.601452 23.103184-23.702841l0-105.138572 64.937988 0c21.615297 0 39.182394-17.848507 39.182394-39.069831l0-1.101077 0-192.483896c0-21.467941-17.567098-39.035038-39.182394-39.035038l-1.011027 0L790.515295-86.350414c-22.097274 0-39.405475 17.573237-39.405475 39.035038l0 1.139963L751.10982 146.269597c0 21.220301 17.308201 39.069831 39.405475 39.069831l0.747014 0L871.64915 185.339428 871.64915 185.339428 871.64915 185.339428zM871.64915 185.339428" horiz-adv-x="1024" />
<glyph glyph-name="tianjiabumen" unicode="&#58929;" d="M488.4992 624.9984C549.9904 624.9984 599.7568 674.2528 599.7568 734.9248 599.7568 795.648 549.9904 844.8 488.4992 844.8 427.1104 844.8 377.2928 795.648 377.2928 734.9248 377.2928 674.2528 427.1104 624.9984 488.4992 624.9984ZM761.3952 605.4912C817.8176 605.4912 863.5392 650.752 863.5392 706.4576 863.5392 762.2656 817.8176 807.424 761.3952 807.424 704.8704 807.424 659.1488 762.2656 659.1488 706.4576 659.1488 650.752 704.8704 605.4912 761.3952 605.4912ZM264.8064 500.6848C264.8064 531.5584 274.1248 560.384 290.0992 584.4992 282.88 586.24 275.3536 587.1104 267.6736 587.1104L148.224 587.1104C94.8224 587.1104 51.2 543.9488 51.2 491.264L51.2 340.4288C51.2 303.5648 72.6016 271.36 103.68 255.3344L103.68-39.424 182.1184-39.424 239.7184-39.424 311.7568-39.424 311.7568 226.7136C282.3168 255.1808 264.8064 294.5536 264.8064 336.5888L264.8064 500.6848 264.8064 500.6848ZM704.4608 587.1104C696.7296 587.1104 689.2544 586.24 682.0352 584.4992 698.0096 560.384 707.2768 531.5584 707.2768 500.6848L707.2768 336.5888C707.2768 307.712 699.0336 280.064 684.3392 256.3584 717.5168 279.552 758.0672 293.1712 801.7408 293.1712 834.1504 293.1712 864.8192 285.696 892.0576 272.384 909.824 289.792 920.9344 313.9072 920.9344 340.4288L920.9344 491.264C920.9344 543.9488 877.2608 587.1104 823.9104 587.1104L704.4608 587.1104ZM656.0256 500.6848C656.0256 558.08 608.512 605.0304 550.4 605.0304L420.4544 605.0304C362.3936 605.0304 314.8288 558.08 314.8288 500.6848L314.8288 336.5888C314.8288 296.448 338.1248 261.4272 371.968 243.968L371.968-76.7488 457.3184-76.7488 520.0384-76.7488 598.4256-76.7488 598.4256 85.5552C598.3232 87.8592 598.272 90.1632 598.272 92.4672 598.272 94.72 598.3232 96.9216 598.4256 99.1744L598.4256 243.7632C632.5248 261.12 656.0256 296.2944 656.0256 336.5888L656.0256 500.6848ZM210.7392 807.424C154.3168 807.424 108.544 762.2656 108.544 706.4576 108.544 650.752 154.3168 605.4912 210.7392 605.4912 267.2128 605.4912 312.9856 650.752 312.9856 706.4576 312.9856 762.2656 267.2128 807.424 210.7392 807.424ZM799.1296 265.9328C703.3344 265.9328 625.5616 189.184 625.4592 94.6176 625.408 0.0512 703.3856-76.8 799.3856-76.7488 894.8736-76.7488 972.6976 0.0512 972.8512 94.4128 973.0048 189.0304 895.1296 265.9328 799.1296 265.9328ZM911.4112 74.5472C895.8464 74.5984 859.1872 74.7008 819.456 74.7008 819.456 35.4816 819.4048-0.7168 819.3536-16.128 819.2512-27.136 810.1888-36.096 799.0272-36.1472 787.8656-36.1984 778.8544-27.2896 778.9056-16.2816 778.9568-0.8704 779.008 35.4304 779.0592 74.7008 739.2768 74.7008 702.5664 74.5984 686.9504 74.5472 675.7888 74.496 666.7776 83.4048 666.8288 94.4128 666.88 105.472 675.9936 114.432 687.1552 114.4832 702.6688 114.5856 739.328 114.5856 779.0592 114.5856 779.008 153.856 778.9568 190.0544 778.9056 205.4656 778.8544 216.4736 787.8656 225.3824 799.0272 225.3312 810.1888 225.28 819.2512 216.32 819.3536 205.2608 819.4048 189.9008 819.456 153.7536 819.456 114.5856 859.0848 114.5856 895.6928 114.5856 911.2064 114.4832 922.368 114.432 931.4816 105.472 931.5328 94.4128 931.584 83.4048 922.5728 74.496 911.4112 74.5472Z" horiz-adv-x="1024" />
<glyph glyph-name="shouji" unicode="&#58925;" d="M225.113302 81.777116h562.461768V782.907535H225.089488v-701.130419z m339.825117 757.688558a11.549767 11.549767 0 0 1-11.716466 11.311628h-117.212279a11.573581 11.573581 0 0 1-11.716465-11.311628v-11.311627c0-6.215442 5.310512-11.311628 11.716465-11.311628h117.212279c6.429767 0 11.692651 5.096186 11.692652 11.311628v11.311627z m-58.582326-893.380465c25.766698 0 46.86586 20.337116 46.86586 45.222698 0 24.861767-21.099163 45.246512-46.889674 45.246512-25.766698 0-46.86586-20.384744-46.86586-45.246512 0-24.885581 21.099163-45.246512 46.86586-45.246512z m281.218977-67.869767H225.089488C186.439442-121.808372 154.790698-91.231256 154.790698-53.938605V828.130233C154.790698 865.470512 186.415628 896 225.113302 896h562.461768c38.67386 0 70.322605-30.529488 70.322604-67.869767v-882.068838c0-37.292651-31.672558-67.869767-70.322604-67.869767z" horiz-adv-x="1024" />
<glyph glyph-name="renzheng" unicode="&#58933;" d="M998.808 444.845L890.742 552.912V673.021c0 49.17-39.866 89.036-89.035 89.036H681.576L572.864 870.792c-33.611 33.611-88.1 33.611-121.711 0L342.418 762.057h-119.44c-49.17 0-89.035-39.866-89.035-89.036V553.58L25.208 444.845c-33.611-33.611-33.611-88.101 0-121.712L133.942 214.42v-120.131c0-49.17 39.866-89.036 89.035-89.036h120.131l108.044-108.045c33.611-33.611 88.1-33.611 121.711 0l108.045 108.045h120.799c49.17 0 89.035 39.866 89.035 89.036V215.088l108.066 108.045c33.589 33.611 33.589 88.101 0 121.712zM430.786 161.066L222.978 370.567l55.002 25.398 146.685-114.278 334.261 324.558 42.782-19.031-370.922-426.148z" horiz-adv-x="1024" />
<glyph glyph-name="qiyefuwuyingyong" unicode="&#58969;" d="M1007.831579 615.747368v-414.989473c0-21.557895-5.389474-37.726316-10.778947-53.894737-5.389474-16.168421-16.168421-32.336842-26.947369-48.505263-10.778947-16.168421-21.557895-26.947368-37.726316-43.11579-16.168421-10.778947-26.947368-21.557895-37.726315-26.947368-37.726316-16.168421-75.452632-32.336842-118.568421-48.505263-43.115789-16.168421-80.842105-32.336842-113.178948-48.505263-43.115789-16.168421-80.842105-32.336842-118.568421-48.505264v538.947369l463.494737 194.021052M0 615.747368l468.884211-199.410526v-538.947368c-37.726316 16.168421-75.452632 32.336842-113.178948 53.894737-32.336842 16.168421-75.452632 32.336842-118.568421 53.894736-43.115789 21.557895-86.231579 37.726316-129.347368 59.284211-16.168421 5.389474-32.336842 16.168421-43.11579 26.947368-10.778947 10.778947-21.557895 26.947368-32.336842 37.726316-10.778947 16.168421-16.168421 26.947368-21.557895 43.11579-5.389474 16.168421-10.778947 32.336842-10.778947 48.505263V615.747368M980.884211 696.589474L512 502.568421 43.115789 696.589474 506.610526 885.221053l474.273685-188.631579" horiz-adv-x="1024" />
<glyph glyph-name="tongshi-zuzhijiagou" unicode="&#58930;" d="M512.02 640.02h8.54c124.191 0 248.403 0.041 372.593 0 31.11 0 56.075-18.083 63.734-46.428 1.68-6.205 2.417-12.861 2.417-19.292 0.123-169.636 0.143-339.251 0.061-508.887-0.02-38.031-27.73-65.68-65.74-65.7-254.362-0.061-508.703-0.061-763.045 0-38.195 0.02-65.966 27.915-65.966 66.171-0.04 211.989-0.04 423.957 0 635.966 0 38.502 27.874 66.437 66.315 66.437 104.837 0.04 209.694 0.04 314.531 0 38.749 0 66.376-27.546 66.499-66.171 0.123-18.37 0.061-36.782 0.061-55.173v-6.923z m-383.098 0.39h318.873v63.385H128.922v-63.385z" horiz-adv-x="1024" />
<glyph glyph-name="zidingyi" unicode="&#59703;" d="M128 768h320V832H128.288A64.32 64.32 0 0 1 64 767.712V448h64V768z m448 64v-64h320v-320h64V767.712A64.32 64.32 0 0 1 895.712 832H576zM128 320H64v-319.712A64.32 64.32 0 0 1 128.288-64H448v64H128V320z m768-320H576v-64h319.712A64.32 64.32 0 0 1 960 0.288V320h-64v-320zM544 416V640h-64v-224H256v-64h224v-256h64v256h256v64h-256z" horiz-adv-x="1024" />
<glyph glyph-name="chengyuan" unicode="&#59180;" d="M698.504533 216.6784c-9.284267 9.6256-13.994667 60.347733-23.210666 108.544 40.618667 32.085333 73.181867 79.530667 93.047466 135.850667 25.736533 9.693867 44.2368 41.506133 44.2368 79.2576 0 26.4192-9.216 50.107733-23.7568 65.194666C782.062933 767.522133 678.570667 896 552.072533 896 425.437867 896 321.9456 767.522133 315.118933 605.525333c-14.472533-15.086933-23.7568-38.775467-23.7568-65.194666 0-37.751467 18.8416-69.563733 44.509867-79.2576 18.0224-51.746133 46.6944-95.6416 82.397867-127.3856-10.0352-50.449067-14.677333-106.769067-24.507734-117.009067-30.583467-32.085333-80.554667-54.4768-130.798933-80.008533C239.479467 122.88 0 49.834667 0-59.528533 0-77.960533 14.199467-128 46.967467-128h998.331733c32.699733 0 46.967467 50.039467 46.967467 68.471467 0 109.431467-239.547733 182.408533-262.9632 196.1984-50.176 25.531733-100.215467 47.9232-130.798934 80.008533z" horiz-adv-x="1092" />
<glyph glyph-name="chaojiguanliyuan" unicode="&#58946;" d="M585.182609-89.838509l19.080745 95.403726-69.962733 69.962733c-25.440994 25.440994-31.801242 57.242236-25.440994 89.043479 6.360248 31.801242 31.801242 50.881988 69.962733 57.242236l89.043479 12.720496c-6.360248 0-6.360248 6.360248-12.720497 6.360249-12.720497 12.720497-19.080745 19.080745-25.440994 31.801242-6.360248 6.360248-6.360248 19.080745-6.360249 31.801242v31.801243c0 6.360248 6.360248 12.720497 6.360249 19.080745 0 6.360248 6.360248 12.720497 12.720497 12.720497l12.720497 12.720497c6.360248 6.360248 12.720497 6.360248 19.080745 12.720497 6.360248 6.360248 12.720497 12.720497 12.720497 19.080745 6.360248 6.360248 6.360248 19.080745 12.720497 25.440994 0 12.720497 6.360248 19.080745 6.360248 31.801242 6.360248 0 12.720497 6.360248 19.080746 12.720497 6.360248 6.360248 12.720497 12.720497 12.720496 19.080745 6.360248 6.360248 6.360248 19.080745 6.360249 31.801243v25.440993c0 6.360248-6.360248 12.720497-6.360249 19.080746 0 6.360248-6.360248 12.720497-12.720496 12.720497 0 25.440994 0 50.881988-6.360249 82.683229 0 25.440994-6.360248 44.521739-19.080745 76.322982-6.360248 25.440994-19.080745 50.881988-38.161491 69.962733-6.360248 6.360248-19.080745 19.080745-31.801242 25.440993 0 12.720497-12.720497 19.080745-25.440994 25.440994-19.080745 6.360248-38.161491 12.720497-50.881988 19.080746C534.300621 896 515.219876 896 496.13913 896c-19.080745 0-31.801242 0-50.881987-6.360248-19.080745 0-31.801242-6.360248-50.881988-12.720497-12.720497-6.360248-25.440994-12.720497-44.521739-25.440994l-44.521739-44.521739c-12.720497-19.080745-25.440994-38.161491-31.801242-63.602485-6.360248-31.801242-6.360248-50.881988-12.720497-76.322981 0-25.440994-6.360248-50.881988-6.360249-76.322981 0-6.360248-6.360248-12.720497-6.360248-19.080746 0-6.360248-6.360248-12.720497-6.360248-25.440994 0-6.360248 0-19.080745 6.360248-31.801242s6.360248-19.080745 12.720497-25.440994c0-6.360248 6.360248-6.360248 6.360248-12.720497 6.360248-6.360248 6.360248-6.360248 12.720497-6.360248 6.360248-12.720497 6.360248-19.080745 12.720497-31.801242 6.360248-6.360248 6.360248-19.080745 12.720497-25.440994 6.360248-6.360248 6.360248-12.720497 12.720497-19.080745 12.720497-6.360248 19.080745-19.080745 31.801242-25.440994 6.360248-6.360248 12.720497-19.080745 12.720497-38.161491v-25.440994c0-6.360248 0-19.080745-6.360248-25.440993 0-6.360248-6.360248-19.080745-19.080746-25.440994-6.360248-6.360248-19.080745-19.080745-31.801242-25.440994-19.080745-12.720497-38.161491-19.080745-63.602484-25.440994-25.440994-6.360248-127.204969-38.161491-146.285715-50.881987-19.080745-6.360248-38.161491-19.080745-57.242236-31.801243-19.080745-12.720497-25.440994-31.801242-31.801242-57.242236-6.360248-44.521739-6.360248-50.881988-6.360248-76.322981 6.360248-25.440994 6.360248-44.521739 19.080745-50.881988 6.360248-6.360248 25.440994-12.720497 50.881987-19.080745 38.161491-6.360248 222.608696-38.161491 432.496895-38.161491h82.68323v31.801243z m419.776397 241.689441l-108.124223 12.720497c-19.080745 0-38.161491 19.080745-44.52174 31.801242l-44.521739 95.403727c-6.360248 6.360248-6.360248 12.720497-12.720497 12.720496s-6.360248-6.360248-12.720496-12.720496l-44.52174-95.403727c-6.360248-12.720497-25.440994-31.801242-44.521739-31.801242l-108.124223-12.720497c-19.080745 0-19.080745-12.720497-6.360249-25.440994l76.322982-76.322981c12.720497-12.720497 19.080745-31.801242 19.080745-50.881988l-19.080745-108.124224c0-12.720497 0-19.080745 12.720497-19.080745h12.720496l95.403727 50.881988c6.360248 6.360248 19.080745 6.360248 25.440994 6.360248 6.360248 0 19.080745 0 25.440994-6.360248l95.403726-50.881988h12.720497c6.360248 0 12.720497 6.360248 12.720497 19.080745l-19.080745 108.124224c0 19.080745 6.360248 38.161491 19.080745 50.881988l76.322982 76.322981c0 12.720497 0 25.440994-19.080746 25.440994z" horiz-adv-x="1030" />
<glyph glyph-name="jifeizhongxin" unicode="&#58963;" d="M544 384h192V448H588.8l160 160-44.8 44.8-192-192-192 192-44.8-44.8L435.2 448H288v-64h192v-64h-192v-64h192v-192h64v192h192V320h-192V384zM512 896c281.6 0 512-230.4 512-512s-230.4-512-512-512-512 230.4-512 512 230.4 512 512 512z" horiz-adv-x="1024" />
<glyph glyph-name="zhankai" unicode="&#59202;" d="M535.744 440.064h-535.68v-114.112h535.68V440.064z m489.28-389.952H1.28V-64h1023.744v114.112z m-260.096 145.472V576l260.096-190.208-260.096-190.208zM1025.024 832H2.624v-116.096h1022.4V832z" horiz-adv-x="1089" />
<glyph glyph-name="shouqi" unicode="&#59203;" d="M489.536 440.064h535.68v-114.112H489.6V440.064zM0.256 50.112H1024V-64H0.256v114.112z m260.096 145.472V576L0.256 385.792l260.096-190.208zM0.256 832h1022.4v-116.096H0.256V832z" horiz-adv-x="1088" />
<glyph glyph-name="qiyedizhi" unicode="&#58894;" d="M885.12967111 523.56323555c0 204.70670222-167.30225778 370.71189333-373.82940444 370.71189334-206.46115555 0-373.83054222-166.00519111-373.83054222-370.71075556 0-67.63747555 18.55488-130.79438222 50.41379555-185.38951111h-0.39936l323.78197333-463.43623111 323.91395556 463.43623111h-0.43235556c31.96245333 54.59512889 50.38193778 117.75203555 50.38193778 185.38951111m-373.79640889-185.32124444c-103.21578667 0-186.91413333 82.96903111-186.91413333 185.35310222 0 102.31694222 83.69834667 185.35310222 186.91413333 185.35310222 103.31249778 0 186.91413333-83.03502222 186.91413333-185.35310222 0-102.38407111-83.60163555-185.35310222-186.91413333-185.35310222" horiz-adv-x="1025" />
<glyph glyph-name="yewuduanmorentouxiang" unicode="&#58926;" d="M512.3 383.8m-448 0a448 448 0 1 1 896 0 448 448 0 1 1-896 0ZM509.2 373.1c74.3 0 134.7 59.6 134.7 132.9 0 73.3-60.4 132.9-134.7 132.9-74.3 0-134.7-59.6-134.7-132.9 0-73.3 60.4-132.9 134.7-132.9z m53.6-23.8h-101c-93.8 0-170.1-75.2-170.1-167.6v-10c0-48.3 75.1-48.3 170.1-48.3h100.9c91.3 0 170.1 0 170.1 48.3v10c0.1 92.4-76.2 167.6-170 167.6z" horiz-adv-x="1024" />
<glyph glyph-name="zhuzuoquan" unicode="&#58895;" d="M828.3 700.3C742.1 785.7 632.7 830.9 512 830.9c-119.6 0-232-46.4-316.3-130.6C110.3 614 65.1 504.7 65.1 384c0-121.5 45.1-230.8 130.6-316.3 83.5-84.3 195.9-130.6 316.3-130.6 121.5 0 230.8 45.2 316.3 130.6 85.5 85.5 130.6 194.8 130.6 316.3 0 120.7-45.1 230-130.6 316.3z m-37.5-595.4c-36.2-36.2-78.4-64.6-125.4-84.4-48.6-20.5-100.3-30.9-153.4-30.9-53.2 0-104.8 10.4-153.4 30.9-47 19.9-89.2 48.3-125.4 84.4-74.6 74.5-115.6 173.6-115.6 279.1 0 217.5 176.9 394.5 394.5 394.5 217.5 0 394.5-176.9 394.5-394.5-0.1-105.4-41.2-204.6-115.8-279.1z m0 0M646.7 296.3c-28.2-39.2-73.6-65.8-125.3-65.8-84.6 0-155.1 68.9-155.1 155.1 0 86.2 68.9 155.1 155.1 155.1 51.7 0 97.1-25.1 125.3-65.8h92.4c-36 86.2-119.1 145.7-217.7 145.7-130 0-236.5-106.5-236.5-236.5s106.5-236.5 236.5-236.5c98.7 0 183.3 61.1 217.7 145.7h-92.4v3z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="yuangongdangan" unicode="&#58918;" d="M1022.489 71.869c3.43-20.57-0.855-39.082-12.855-55.547-12-16.458-28.291-26.406-48.861-29.829l-123.442-19.542c-19.888-3.429-38.226 0.856-55.038 12.857-16.794 12-26.909 28.291-30.338 48.861L647.026 693.184c-1.371 10.289-0.855 20.062 1.544 29.321 2.4 9.253 6.35 17.829 11.833 25.718 5.482 7.883 12.514 14.4 21.086 19.54 8.57 5.142 18.002 8.745 28.291 10.803l122.405 19.542c20.577 3.43 39.094-1.024 55.552-13.371 16.46-12.347 26.401-28.799 29.836-49.377l104.916-663.491zM505.074 802.224c20.57 0 38.058-7.199 52.465-21.606 14.4-14.4 21.594-31.883 21.594-52.459v-687.15c0-20.57-7.194-38.058-21.594-52.459-14.406-14.399-31.894-21.6-52.465-21.6H398.093c-20.576 0-38.058 7.201-52.459 21.6-14.406 14.4-21.606 31.889-21.606 52.459V728.16c0 20.576 5.488 38.058 16.458 52.459 10.976 14.406 27.088 21.606 48.347 21.606h116.241z m0-518.45c6.859 0 12.688 3.261 17.483 9.779 4.806 6.512 7.205 14.227 7.205 23.144 0 9.6-2.399 17.482-7.205 23.659-4.795 6.17-10.624 9.259-17.483 9.259H398.093c-6.859 0-12.689-3.089-17.488-9.259-4.801-6.177-7.199-14.06-7.199-23.659 0-8.917 2.399-16.632 7.199-23.144 4.799-6.518 10.63-9.779 17.488-9.779h106.981z m0 130.647c6.859 0 12.688 3.255 17.483 9.773 4.806 6.512 7.205 14.574 7.205 24.168 0 9.6-2.399 17.488-7.205 23.658-4.795 6.177-10.624 9.265-17.483 9.265H398.093c-6.859 0-12.689-3.088-17.488-9.265-4.801-6.17-7.199-14.058-7.199-23.658 0-9.594 2.399-17.656 7.199-24.168 4.799-6.518 10.63-9.773 17.488-9.773h106.981zM182.076 802.224c20.57 0 38.232-7.199 52.973-21.606 14.747-14.4 22.114-31.883 22.114-52.459v-687.15c0-20.57-7.367-38.058-22.114-52.459-14.741-14.399-32.403-21.6-52.973-21.6H75.094c-20.577 0-38.233 7.201-52.98 21.6C7.368 2.952 0 20.44 0 41.01V728.16c0 20.576 7.368 38.058 22.114 52.459 14.747 14.406 32.403 21.606 52.98 21.606h106.982zM79.206 545.06c-7.542 0-13.713-3.088-18.518-9.263-4.795-6.165-7.2-14.054-7.2-23.654 0-8.917 2.405-16.632 7.2-23.144 4.805-6.518 10.976-9.779 18.518-9.779h98.752c7.546 0 13.544 3.261 18.002 9.779 4.458 6.512 6.685 14.227 6.685 23.144 0 9.6-2.227 17.488-6.685 23.654-4.458 6.175-10.456 9.263-18.002 9.263H79.206z m102.87-323.004c7.54 0 13.538 3.089 17.997 9.259 4.458 6.171 6.691 13.717 6.691 22.63 0 9.606-2.233 17.321-6.691 23.144-4.458 5.829-10.456 8.749-17.997 8.749H79.206c-7.542 0-13.713-2.92-18.518-8.749-4.795-5.823-7.2-13.538-7.2-23.144 0-8.912 2.405-16.458 7.2-22.63 4.805-6.17 10.976-9.259 18.518-9.259h102.87z m0 126.529c7.54 0 13.538 3.082 17.997 9.259 4.458 6.17 6.691 14.058 6.691 23.652 0 9.606-2.233 17.494-6.691 23.665-4.458 6.17-10.456 9.259-17.997 9.259H79.206c-7.542 0-13.713-3.089-18.518-9.259-4.795-6.171-7.2-14.06-7.2-23.665 0-9.594 2.405-17.482 7.2-23.652 4.805-6.177 10.976-9.259 18.518-9.259h102.87z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="qiyetongxunlu" unicode="&#59100;" d="M899.072 850.432H196.608c-43.008 0-78.336-35.328-78.336-77.824V655.36h-38.912c-23.552 0-38.912-15.36-38.912-38.912s15.36-38.912 38.912-38.912h38.912v-156.16h-38.912c-23.552 0-38.912-15.872-38.912-38.912 0-23.552 15.36-38.912 38.912-38.912h38.912v-156.16h-38.912c-23.552 0-38.912-15.872-38.912-38.912 0-23.552 15.36-38.912 38.912-38.912h38.912v-117.248c0-43.008 35.328-77.824 78.336-77.824h702.464c43.008 0 77.824 35.328 77.824 77.824V772.096c0.512 43.008-34.816 78.336-77.824 78.336z m0-859.136H196.608v117.248H235.52c23.552 0 38.912 15.872 38.912 38.912 0 23.552-15.36 38.912-38.912 38.912h-38.912V343.04H235.52c23.552 0 38.912 15.872 38.912 38.912 0 23.552-15.36 38.912-38.912 38.912h-38.912V577.024H235.52c23.552 0 38.912 15.36 38.912 38.912S259.072 655.36 235.52 655.36h-38.912V772.096h702.464v-780.8zM658.432 406.016c25.088 22.528 40.96 54.784 40.96 91.136 0 67.584-54.784 122.368-122.368 122.368S454.656 564.736 454.656 497.152c0-36.352 15.872-68.608 40.96-91.136-53.76-35.84-90.112-102.4-90.112-156.672 0-78.336 76.8-101.376 171.52-101.376s171.52 23.04 171.52 101.376c0 54.272-36.352 120.832-90.112 156.672z" horiz-adv-x="1024" />
<glyph glyph-name="tongxunlu" unicode="&#59101;" d="M899.072 850.432H196.608c-43.008 0-78.336-35.328-78.336-77.824V655.36h-38.912c-23.552 0-38.912-15.36-38.912-38.912s15.36-38.912 38.912-38.912h38.912v-156.16h-38.912c-23.552 0-38.912-15.872-38.912-38.912 0-23.552 15.36-38.912 38.912-38.912h38.912v-156.16h-38.912c-23.552 0-38.912-15.872-38.912-38.912 0-23.552 15.36-38.912 38.912-38.912h38.912v-117.248c0-43.008 35.328-77.824 78.336-77.824h702.464c43.008 0 77.824 35.328 77.824 77.824V772.096c0.512 43.008-34.816 78.336-77.824 78.336z m0-859.136H196.608v117.248H235.52c23.552 0 38.912 15.872 38.912 38.912 0 23.552-15.36 38.912-38.912 38.912h-38.912V343.04H235.52c23.552 0 38.912 15.872 38.912 38.912 0 23.552-15.36 38.912-38.912 38.912h-38.912V577.024H235.52c23.552 0 38.912 15.36 38.912 38.912S259.072 655.36 235.52 655.36h-38.912V772.096h702.464v-780.8zM774.144 159.232c31.232 31.232 81.92 66.56 15.36 120.832-66.56 54.784-86.016 27.136-117.248-4.096-19.456-19.456-74.24 23.552-120.832 70.144-46.592 46.592-89.6 101.376-70.144 120.832 31.232 31.232 58.368 50.688 4.096 117.248-54.784 66.56-89.6 15.36-120.832-15.872-35.328-35.328 0-160.256 124.928-285.184 124.928-123.904 249.856-155.136 284.672-123.904z" horiz-adv-x="1024" />
<glyph glyph-name="mendianjiagou" unicode="&#59103;" d="M337.92 418.304c-18.944-92.16-109.568-151.552-201.728-132.608C56.832 302.08 0 371.712 0 452.096c0 38.4 12.8 73.728 34.304 102.4l102.4 307.2h751.104l102.4-307.2c56.32-75.264 40.96-182.272-34.304-239.104-75.264-56.32-182.272-40.96-239.104 34.304-15.36 19.968-25.6 43.52-30.72 68.096h-6.656c-18.944-92.16-109.056-152.064-201.728-133.12-67.072 13.824-119.296 66.048-133.12 133.12 0 0.512-6.656 0.512-6.656 0.512zM307.2 281.6h68.096c32.256-43.008 82.944-68.096 136.704-68.096s104.448 25.088 136.704 68.096H716.8c32.256-43.008 82.944-68.096 136.704-68.096 24.064 0 47.616 5.12 68.096 14.336v-219.136c0-56.32-46.08-102.4-102.4-102.4H204.8c-56.32 0-102.4 46.08-102.4 102.4v219.136c21.504-9.216 44.544-14.336 68.096-14.336 53.76 0 104.448 25.088 136.704 68.096z m0-102.4v-204.8h68.096v204.8H307.2z" horiz-adv-x="1024" />
<glyph glyph-name="tianjiachengyuan" unicode="&#59104;" d="M768.180531 448c-141.312 0-256-114.688-256-256s114.688-256 256-256 256 114.688 256 256-114.688 256-256 256z m153.088-285.184h-124.928v-124.928h-58.368v124.928h-124.928v58.368h124.928v124.928h58.368v-124.928h124.928v-58.368zM467.124531 167.936c0 62.464 20.992 122.88 59.392 172.032 1.024 7.168 3.072 13.824 5.632 18.944 2.56 5.632 5.632 10.24 9.728 14.336 4.096 4.096 8.704 7.68 13.824 11.264 5.12 3.584 10.752 8.192 16.896 13.312 5.12 4.608 10.24 11.264 14.336 19.456 4.096 8.192 8.192 16.896 11.264 25.6 3.072 10.24 6.144 20.48 8.704 31.232 7.168 2.048 13.312 6.144 18.944 10.752 5.12 4.608 10.24 11.264 14.336 19.456 4.096 8.192 7.68 19.456 9.216 33.28 1.536 10.752 1.024 19.456-0.512 27.136-1.024 6.144-3.584 12.288-6.144 17.92-2.56 5.12-6.144 9.216-10.752 11.776 1.536 51.712-6.144 103.424-22.528 152.576-8.192 25.6-20.992 49.664-37.376 70.656-8.192 10.24-17.92 19.456-28.672 27.648-12.8 9.728-26.624 17.92-40.96 24.576-15.872 7.68-32.256 13.824-49.152 17.92C436.404531 893.952 417.972531 896 399.540531 896c-15.36 0-30.72-1.024-47.104-4.096C317.620531 886.272 284.852531 871.936 256.692531 850.432c-16.384-12.288-30.72-27.648-41.984-44.544-13.312-19.968-23.552-41.984-30.208-65.024-6.656-24.064-11.776-46.592-14.336-68.096-3.584-25.088-4.608-50.688-4.096-76.288-5.12-6.144-9.216-13.312-11.776-20.992-3.072-7.68-4.608-15.36-5.632-23.552-1.024-8.704 0-18.944 3.584-30.72 3.072-11.264 7.168-19.968 11.776-26.112 4.608-6.144 8.704-10.752 12.8-13.824 4.096-3.072 8.704-5.632 13.824-6.656 3.072-10.752 6.656-20.992 9.728-31.232 3.072-8.704 6.656-16.896 10.752-25.6 3.072-7.168 8.192-13.824 13.824-19.456 11.264-9.216 21.504-18.432 30.208-27.136 8.704-8.704 13.824-20.992 15.36-36.864 0.512-9.728 1.024-19.456 1.024-28.16 0-8.704-1.536-16.896-4.608-25.088-3.072-8.192-8.192-15.872-15.872-24.064-9.728-9.728-20.48-17.92-32.256-25.088-17.408-11.264-37.376-19.968-59.904-26.112-23.04-6.144-45.056-12.8-66.56-19.968-58.88-19.456-95.232-80.384-92.16-95.232 0-51.712 1.536-96.256 1.536-150.528 0-72.192 491.008-86.016 702.464-45.568-134.144 17.92-237.056 133.632-237.056 273.408z" horiz-adv-x="1024" />
<glyph glyph-name="hangzhengjiagou" unicode="&#59105;" d="M768.512 182.784l-182.784 72.704s-34.816 12.8-47.104 28.16c-9.216 9.216-9.216 28.16 0 53.76 6.144 25.088 100.864 132.608 100.864 226.816 0 147.968-97.792 267.776-217.6 267.776S204.288 712.192 204.288 563.712c0-91.136 84.992-201.728 94.72-220.672 9.216-18.944 6.144-50.176 0-59.904-12.8-12.8-56.832-28.16-56.832-28.16l-166.912-72.704c-37.888-15.872-69.12-50.176-69.12-91.136v-69.632c0-44.032 37.888-72.704 81.92-72.704h668.16c44.032 0 81.92 28.16 81.92 72.704v69.632c-0.512 40.96-32.256 78.848-69.632 91.648z m-31.744 340.48c-18.944 0-34.816 9.216-34.816 31.744 0 22.016 15.872 31.744 34.816 31.744h245.76c18.944 0 34.816-9.216 34.816-31.744 0-22.016-15.872-31.744-34.816-31.744h-245.76z m50.688-138.752c-18.944 0-34.816 9.216-34.816 31.744 0 22.016 15.872 31.744 34.816 31.744h198.656c18.944 0 31.744-9.216 31.744-31.744 0-22.016-15.872-31.744-34.816-31.744h-195.584z m66.048-129.024c-18.944 0-34.816 9.216-34.816 31.744 0 22.016 15.872 31.744 34.816 31.744h129.024c18.944 0 34.816-9.216 34.816-31.744 0-22.016-15.872-31.744-34.816-31.744h-129.024z" horiz-adv-x="1024" />
<glyph glyph-name="yuangonglizhi" unicode="&#59106;" d="M761.856 374.784c-133.632 0-241.664-108.032-241.664-241.152s108.032-241.152 241.664-241.152 241.664 108.032 241.664 241.152-108.032 241.152-241.664 241.152z m118.272-311.808l-47.616-47.616-70.144 70.144-70.656-70.656-48.64 48.64 70.656 70.656-70.144 70.144 47.616 47.616 70.144-70.144 70.656 70.656 48.64-48.64-70.656-70.656 70.144-70.144z m-406.016 70.656c0 55.808 16.384 107.52 44.032 151.552-1.024 8.192 0.512 17.92 6.144 30.208 30.72 41.472 49.152 88.064 50.688 103.424 0 0 47.104 37.376 50.176 93.184 3.072 55.808-10.24 58.368-10.24 58.368 19.968 60.928 26.112 288.768-120.32 261.632C470.016 879.616 316.928 916.992 245.76 790.016c-35.328-63.488-48.64-150.528-20.992-221.184-1.024-5.12-9.728 5.12-12.8-27.648-3.072-31.744 11.264-76.8 26.624-97.792 6.656-8.704 17.408-15.36 25.088-18.432 0 0 9.216-56.32 53.248-109.056 10.24-41.984-31.744-64-31.744-64-138.24-26.624-265.216-103.424-265.216-186.368v-64.512c0-90.112 209.92-109.568 398.848-109.568 56.832 0 115.712 5.12 169.984 13.312-69.632 52.736-114.688 135.68-114.688 228.864z" horiz-adv-x="1024" />
<glyph glyph-name="lizhi" unicode="&#59107;" d="M474.112 133.632c0 55.808 16.384 107.52 44.032 151.552-1.024 8.192 0.512 17.92 6.144 30.208 30.72 41.472 49.152 88.064 50.688 103.424 0 0 47.104 37.376 50.176 93.184 3.072 55.808-10.24 58.368-10.24 58.368 19.968 60.928 26.112 288.768-120.32 261.632C470.016 879.616 316.928 916.992 245.76 790.016c-35.328-63.488-48.64-150.528-20.992-221.184-1.024-5.12-9.728 5.12-12.8-27.648-3.072-31.744 11.264-76.8 26.624-97.792 6.656-8.704 17.408-15.36 25.088-18.432 0 0 9.216-56.32 53.248-109.056 10.24-41.984-31.744-64-31.744-64-138.24-26.624-265.216-103.424-265.216-186.368v-64.512c0-90.112 209.92-109.568 398.848-109.568 56.832 0 115.712 5.12 169.984 13.312-69.632 52.736-114.688 135.68-114.688 228.864zM762.88 373.248c-133.12 0-240.64-107.52-240.64-240.64s107.52-240.64 240.64-240.64 240.64 107.52 240.64 240.64c0 132.608-107.52 240.64-240.64 240.64z m168.448-182.272l-207.36-207.36-53.248 53.248-79.872 79.872 53.248 53.248 79.872-79.872 154.112 154.112 53.248-53.248z" horiz-adv-x="1024" />
<glyph glyph-name="gongxiangtongxunlu" unicode="&#59108;" d="M874.138 885.76H158.72A104.755 104.755 0 0 1 53.862 781.056v-135.27h20.941a43.674 43.674 0 0 0 0-87.04h-20.94v-131.124h20.94a43.674 43.674 0 0 0 0-87.04h-20.94v-130.918h20.94a43.674 43.674 0 0 0 0-87.04h-20.94v-135.22A104.755 104.755 0 0 1 158.72-117.76h715.418c57.804 0 96 46.9 96 104.755V781.056c0 57.805-38.298 104.704-96 104.704z m-140.34-830.771c-50.278-29.082-188.057 48.384-295.065 234.342S333.568 633.856 384 662.938c43.571 25.139 101.58 74.137 143.36-21.146s5.427-109.312-39.629-134.912c-31.385-18.227 3.584-95.13 43.162-163.84S619.52 204.8 650.906 223.13c45.056 26.163 75.161 51.2 136.55-32.87s-10.086-109.927-53.658-135.271z" horiz-adv-x="1024" />
<glyph glyph-name="qiyerenzheng" unicode="&#59109;" d="M367.616 733.184L512 877.568l144.384-144.384h204.288v-204.288l144.896-144.384-144.384-144.384V35.84h-204.288L512-109.568l-144.384 144.384h-204.8v204.288L18.432 384l144.384 144.384v204.8h204.8zM448.512 286.72L322.048 413.184l-54.272-54.272 181.248-181.248 307.712 307.712-54.272 54.272L448.512 286.72z" horiz-adv-x="1024" />
<glyph glyph-name="yuangongxiangqing" unicode="&#59110;" d="M886.272 749.056H137.728C75.776 748.544 25.6 698.368 25.6 636.416v-505.344c0-61.952 50.176-112.128 112.128-112.128h749.056c61.952 0 112.128 50.176 112.128 112.128V636.416c-0.512 61.952-50.688 112.64-112.64 112.64zM140.8 182.272c-12.288 2.56-19.968 14.336-17.408 26.624 13.824 74.24 67.584 134.144 139.776 155.648-37.888 20.992-61.44 60.928-61.44 103.936 0 65.536 51.712 118.272 115.712 118.272 63.488 0 115.712-53.248 115.712-118.272 0-43.52-23.552-83.456-61.44-103.936 72.192-21.504 126.464-81.92 139.776-156.16 2.56-12.288-5.632-24.064-17.408-26.624-1.536-0.512-2.56-0.512-4.096-0.512l-349.184 1.024zM650.24 521.728h161.28c12.8 0 24.576-18.944 24.576-32.256 0-13.824-11.776-32.256-24.576-32.256H650.24c-12.8 0-24.576 18.944-24.576 32.256 0 13.824 11.776 32.256 24.576 32.256z m0-129.536h161.28c12.8 0 24.576-18.432 24.576-32.256s-11.776-32.256-24.576-32.256H650.24c-12.8 0-24.576 18.432-24.576 32.256s11.776 32.256 24.576 32.256z m227.328-178.176h-228.352c-12.288 0-23.552 18.944-23.552 32.256 0 13.824 11.264 32.256 23.552 32.256h228.352c12.288 0 23.552-18.944 23.552-32.256 0-13.824-11.264-32.256-23.552-32.256z" horiz-adv-x="1024" />
<glyph glyph-name="mendianquanxian" unicode="&#59111;" d="M618.607753 464.092128C661.082815 482.003299 706.628363 491.214758 752.685659 491.214758h13.817189c22.005153 55.268755 27.634378 120.260717 16.375927 183.717437-25.587387 145.336356-162.735779 242.568426-306.536892 216.981039-143.801113-25.587387-265.597074-137.66014-240.009688-282.996497 5.629225-31.216612 20.469909-80.344394 38.38108-115.654988L13.210183 115.591921c-9.723207-13.817189-15.352432-38.892828-12.281945-55.780503l11.25845-64.480214c-10.746702 61.921476 3.070486-22.5169 11.25845-22.005153l85.973619-1.023495c16.375927 3.070486 37.357585 16.887675 46.569044 31.216612l103.373042 161.712284 1.023496 1.023495 90.579349-7.164468 120.772465 189.346661h1.023495c10.746702 14.840684 22.5169 28.657873 35.822342 41.963314 31.72836 31.216612 69.085944 56.292251 110.025763 73.691674zM70.014182 76.187346l-12.793693-5.629225 1.535243 13.817189 250.244642 363.340891 14.840684-13.817189-253.826876-357.711666zM450.754496 745.041634c39.404576 56.803998 117.701979 71.132935 173.994229 30.704864 56.803998-40.428071 70.10944-118.725474 30.704865-176.04122-39.404576-56.803998-79.832646-16.887675-136.636645 23.028648-56.292251 40.428071-107.978772 64.991962-68.062449 122.307708zM743.985947 426.222796c-151.477329 0-274.808533-122.819456-274.808533-274.808533s122.819456-274.808533 274.808533-274.808533 274.808533 122.819456 274.808534 274.808533-122.819456 274.808533-274.808534 274.808533z m79.832647-418.097899h-167.853257c-73.691674 20.981657-47.592539 123.331204-47.592539 123.331204 16.375927-41.451566 53.733512-41.451566 53.733512-41.451566l159.153545-1.535244c46.057296 5.117477 63.968467 44.522053 63.968467 44.522053 22.5169-132.030915-61.409728-124.866447-61.409728-124.866447z m30.704864 126.401691c-41.451566 0-56.292251 50.663026-56.292251 50.663025s0-49.63953-53.221764-50.663025h-0.511748-0.511748c-53.221764 1.023495-53.221764 50.663026-53.221764 50.663025s-14.840684-50.663026-56.292251-50.663025c-63.968467 0-50.663026 52.198269-50.663025 52.198268l10.234954 74.71517s1.535243 29.169621 22.005153 33.77535H872.434629c20.981657-4.60573 22.005153-33.77535 22.005152-33.77535l10.234955-74.71517s13.817189-52.198269-50.151278-52.198268z" horiz-adv-x="1024" />
<glyph glyph-name="icon_yunxiazai" unicode="&#59112;" d="M790.528 486.4c-18.432 141.824-136.704 252.416-278.528 252.416S251.904 628.736 233.472 486.4C117.76 478.72 25.6 378.88 25.6 258.048c0-125.952 99.84-228.864 220.672-228.864h533.504c120.832 2.56 218.112 102.4 218.112 228.864C998.4 378.88 906.24 478.72 790.528 486.4z m-286.208-389.12l-194.56 223.232h131.584V528.384h125.952v-207.872h131.584l-194.56-223.232z" horiz-adv-x="1024" />
<glyph glyph-name="yd-icon-upload2" unicode="&#59116;" d="M512 780.288l322.56-322.56-53.76-53.76-230.4 230.4v-620.544H474.112V634.368l-230.4-230.4L189.44 457.728l322.56 322.56z" horiz-adv-x="1024" />
<glyph glyph-name="yishenhe" unicode="&#59118;" d="M937.472 18.944H86.528C52.736 18.944 25.6 46.08 25.6 79.872v121.344c0 33.792 27.136 60.928 60.928 60.928h364.544V392.704C321.024 425.984 242.688 558.592 276.48 688.64S442.88 897.024 572.928 863.232s208.384-166.4 174.592-296.448c-22.016-85.504-89.088-152.064-174.592-174.08v-130.048h364.544c33.792 0 60.928-27.136 60.928-60.928v-121.856c0-33.792-27.136-60.928-60.928-60.928zM177.664-41.472h668.672c16.896 0 30.208-13.824 30.208-30.208 0-16.896-13.824-30.208-30.208-30.208H177.664c-16.896 0-30.208 13.824-30.208 30.208s13.312 30.208 30.208 30.208z" horiz-adv-x="1024" />
<glyph glyph-name="daishenpi" unicode="&#59119;" d="M809.472-44.032H788.48c-14.848 0-26.624-11.776-26.624-26.112s11.776-26.112 26.624-26.112h21.504c14.848 0 26.624 11.776 26.624 26.112-0.512 14.336-12.288 26.112-27.136 26.112zM931.84 500.224L537.6 864.256 428.032 750.592l394.24-364.032L931.84 500.224z m-260.608-544.256H118.784c-14.848 0-26.624-11.776-26.624-26.112s11.776-26.112 26.624-26.112h552.448c14.848 0 26.624 11.776 26.624 26.112s-11.776 26.112-26.624 26.112z m-485.376 604.16l-66.048-492.544 254.464 264.704c-16.896 25.6-14.848 59.904 7.68 82.944 26.112 27.136 70.144 28.16 97.792 2.56 27.648-25.6 29.184-68.608 3.072-95.744-22.528-23.552-57.856-27.136-84.992-11.776L143.36 46.08l499.2 93.184-4.096 3.584 97.28 253.44-296.96 272.896-252.928-109.056z" horiz-adv-x="1024" />
<glyph glyph-name="yishenpi" unicode="&#59120;" d="M860.672-93.696l-684.032-13.312c-41.472 0-74.752 34.304-74.752 76.288V571.904c0 41.984 33.28 76.288 74.752 76.288H317.44c24.576 0 47.104-12.288 61.44-32.256 7.168-10.752 11.776-17.408 16.896-23.04 60.416-61.44 170.496-63.488 232.448 1.024 8.704 8.704 14.336 15.872 19.456 23.04 13.824 19.968 36.864 31.744 60.416 31.744h139.776c41.472 0 74.752-34.304 74.752-76.288V-30.72c-0.512-41.984-20.48-62.976-61.952-62.976z m-85.504 499.2c-15.872 15.872-40.448 16.896-54.784 2.048l-228.352-232.448c-15.36 14.336-162.304 149.504-162.304 149.504-15.872 15.872-41.472 15.872-56.832 0-15.872-15.872-15.872-41.472 0-56.832l165.376-159.744c21.504-18.944 27.648-28.16 53.76-27.136 29.184 1.536 44.544 13.824 53.76 27.136l231.936 242.688c14.336 14.848 13.312 39.424-2.56 54.784z m-173.056 246.784c-23.04-23.552-54.784-38.4-90.112-38.4-35.328 0-67.584 14.848-91.136 38.4-7.168 7.68-13.824 15.872-18.944 25.088v0.512l-0.512 0.512v0.512l-0.512 0.512c-10.752 19.456-16.384 41.984-16.384 64.512 0 72.704 57.344 130.56 128 130.56 35.328 0 67.072-14.336 90.112-37.888 23.552-24.064 37.888-57.344 37.888-93.184-0.512-33.792-13.824-67.072-38.4-91.136z" horiz-adv-x="1024" />
<glyph glyph-name="xingbienv" unicode="&#59121;" d="M648.192 176.64s-58.368-152.064-163.328-147.456c-104.96 3.584-174.592 147.456-174.592 147.456s-139.776-77.824-171.008-131.584c-31.744-58.368-18.944-144.384-18.944-144.384h715.264s18.944 112.64-11.264 147.456c-39.936 50.688-144.384 116.224-176.128 128.512zM828.416 348.672c3.584 38.4 14.848 79.872 24.576 120.32 17.92 65.536 33.792 127.488 17.92 174.592-29.184 86.528-67.584 180.224-168.96 199.168-20.992 5.12-41.472 6.144-60.416 7.168 12.288-7.68 21.504-22.528 21.504-38.4 0-5.632-1.024-11.264-3.584-16.896 9.216-7.68 17.92-17.92 27.136-29.184 10.24-13.312 20.48-24.576 28.16-33.792 27.136-29.184 45.056-49.664 43.008-124.928-1.024-44.032 1.024-69.632 3.584-89.088 2.048-24.576 3.584-39.424-3.584-65.536-12.288-47.104-60.928-96.768-62.976-97.792l-1.024-4.608-7.68-30.208c1.024-10.24 9.216-109.056 92.16-113.664 66.56-4.608 110.592 11.264 128.512 18.944-25.088 10.24-84.992 43.008-78.336 123.904zM686.592 351.232l2.048 7.68c11.264 11.264 50.688 54.272 60.928 94.72 11.264 45.056-2.048 55.296 0 152.064s-28.16 96.768-69.632 153.088c-9.216 12.288-17.92 21.504-27.136 29.184-7.68-11.264-20.48-18.944-34.816-18.944-18.944 0-34.816 12.288-39.424 30.208-5.632-3.584-13.312-5.632-21.504-5.632-21.504 0-39.424 16.896-40.448 38.4l-10.24 1.024c-93.696 12.288-154.112-27.136-224.256-79.872-75.264-56.32-75.264-158.72-69.632-259.072 5.632-95.744 66.56-124.928 68.608-125.952l7.68-3.584-1.024 4.608c28.16-107.008 105.984-184.832 199.168-184.832 89.088 0 165.376 72.192 196.096 173.568l-1.024-11.264 4.608 4.608z m-17.92 97.792c0-133.12-84.48-245.76-185.856-245.76-102.4 0-185.856 110.592-185.856 245.76 0 11.264 1.024 17.92 2.048 23.552 0 2.048 1.024 4.608 1.024 7.68 0 1.024 2.048 10.24 4.608 21.504 2.048 0 5.632 1.024 7.68 1.024 49.664 4.608 151.04 13.312 234.496 100.352 17.92-37.376 79.872-68.608 118.272-85.504 2.048-14.848 2.048-22.528 2.048-30.208 0-5.632 0-12.288 1.024-22.528v-15.872zM558.08 802.816c7.68 0 14.848 2.048 21.504 7.68l6.656 5.632 1.024-9.216c1.024-16.896 15.872-29.184 31.744-29.184 17.92 0 32.768 14.848 32.768 32.768-1.024 17.92-15.872 32.768-32.768 32.768-7.68 0-14.848-2.048-21.504-7.68l-6.656-5.632-1.024 9.216c-1.024 16.896-15.872 29.184-31.744 29.184-17.92 0-32.768-14.848-32.768-32.768s14.848-32.768 32.768-32.768z" horiz-adv-x="1024" />
<glyph glyph-name="xingbienan" unicode="&#59122;" d="M855.552 134.656c-45.568 38.4-205.312 81.408-205.312 81.408 52.224-158.72-79.36-292.352-79.36-292.352l-30.72 209.92 13.824 10.24-13.824 24.064h-40.96l-13.824-24.064 13.824-10.24-20.48-212.992c-133.632 86.016-106.496 295.936-106.496 295.936-58.88-3.584-166.912-36.352-224.256-96.256s-40.96-216.576-40.96-216.576h808.448c13.824 57.344-17.92 209.408-59.904 230.912zM761.344 662.016c-19.456 97.28-154.112 132.608-183.808 144.896-14.848 11.264-17.92 21.504-22.528 56.832-1.024 1.024-21.504-52.224-25.088-52.224-2.048 0 14.848 54.272 12.288 53.248-3.584-1.024-32.768-55.808-37.376-57.856-2.048-1.024 19.456 51.2 16.896 49.664-45.568-20.48-120.32-72.704-120.32-72.704l14.848 59.904c-51.2-22.528-162.304-137.216-162.304-263.168 0-100.864 26.112-129.024 36.352-136.192l20.48-29.696c16.896-122.368 100.864-210.944 199.68-210.944 99.84 0 185.856 91.648 199.68 214.528v2.048l14.848 14.848c-1.024 2.048 54.784 129.024 36.352 226.816z m-69.12-192c1.024-3.584 1.024-6.656 0-10.24v-3.584c0-126.976-81.408-230.4-182.784-230.4s-182.784 103.424-182.784 230.4V491.52c13.824 22.528 28.16 52.224 39.936 86.016 121.344-35.328 196.096-36.352 274.432 4.608 8.192-26.112 29.696-64.512 48.64-96.256l2.56-15.872z" horiz-adv-x="1024" />
<glyph glyph-name="qiyeshezhi" unicode="&#59123;" d="M512 880.128C238.08 880.128 15.872 657.92 15.872 384c0-273.92 222.208-496.128 496.128-496.128 273.92 0 496.128 222.208 496.128 496.128 0 273.92-222.208 496.128-496.128 496.128z m3.584-806.4c-14.336 0-158.72 121.344-158.72 139.776 0 17.92 117.248 343.552 117.248 343.552l-77.312 97.28c-11.264 14.336-9.216 39.936 23.04 39.936h192.512c32.256 0 34.304-25.6 23.04-39.936l-77.824-96.768s117.248-325.632 117.248-343.552c0-18.432-144.384-140.288-159.232-140.288z" horiz-adv-x="1024" />
<glyph glyph-name="tongxunlu_icon" unicode="&#59124;" d="M950.272 463.36h-152.064c-20.992 0-37.888-16.896-37.888-37.888 0-20.992 16.896-37.888 37.888-37.888h152.064c20.992 0 37.888 16.896 37.888 37.888 0 20.992-16.896 37.888-37.888 37.888m0 152.064h-152.064c-20.992 0-37.888-16.896-37.888-37.888s16.896-37.888 37.888-37.888h152.064c20.992 0 37.888 16.896 37.888 37.888s-16.896 37.888-37.888 37.888m-152.064 76.288h152.064c20.992 0 37.888 16.896 37.888 37.888s-16.896 37.888-37.888 37.888h-152.064c-20.992 0-37.888-16.896-37.888-37.888s16.384-37.888 37.888-37.888M814.08 235.008c-6.144 2.56-115.712 50.688-236.032 74.752 13.824 11.264 26.112 25.088 36.864 39.424 26.112 35.84 39.936 78.336 39.936 122.88V596.48c0 66.56-31.744 129.024-85.504 168.448-35.84 26.624-78.848 40.96-123.392 40.96-115.2 0-208.896-93.696-208.896-209.408v-124.416c0-67.072 31.744-126.976 81.408-165.376-114.688-24.576-215.552-68.608-220.672-71.168-34.816-13.824-60.928-53.248-60.928-90.624v-156.672l2.048-6.144c11.264-33.28 41.984-55.296 75.776-55.296h680.96c39.424 0 72.192 29.696 77.312 67.584l0.512 150.016c0 17.92-6.144 36.352-16.384 52.224-10.24 17.408-25.6 31.232-43.008 38.4" horiz-adv-x="1024" />
<glyph glyph-name="shezhiziguanliyuan" unicode="&#59125;" d="M512 368.64c-143.36 0-261.12 158.72-261.12 291.84S368.64 896 512 896s261.12-107.52 261.12-240.64-117.76-286.72-261.12-286.72z m-460.8-307.2c0 66.56 51.2 138.24 112.64 168.96l112.64 51.2 87.04-276.48s0-25.6 46.08-25.6c40.96 0 40.96 25.6 40.96 25.6v225.28s0 51.2 56.32 51.2 56.32-51.2 56.32-51.2v-225.28s15.36-30.72 51.2-30.72 40.96 30.72 40.96 30.72l87.04 276.48 112.64-51.2c61.44-30.72 112.64-102.4 112.64-168.96v-71.68c0-66.56-56.32-117.76-128-117.76H179.2c-71.68 0-128 51.2-128 117.76v71.68z" horiz-adv-x="1024" />
<glyph glyph-name="tuanduichengyuan" unicode="&#59126;" d="M268.288 140.8H76.8c-27.136 0-48.64 20.48-48.64 46.592v3.584c0.512 3.584 1.024 7.168 2.048 10.752 12.8 50.688 55.808 90.624 109.568 101.888 0.512 0 1.024-0.512 1.536-0.512h0.512c-34.304 12.288-58.88 43.52-58.88 80.384 0 47.104 40.448 85.504 90.112 85.504s90.112-38.4 90.112-85.504c0-36.352-24.064-68.096-57.856-79.872 53.76-11.264 96.256-50.688 109.568-101.888 1.024-3.584 2.048-7.168 2.048-10.752v-3.584c0-25.6-21.504-46.592-48.64-46.592M206.848 272.384v1.024c-9.216 6.656-18.432 8.704-25.6 8.704h-0.512c-7.68 0-16.384-2.048-25.6-8.704v-1.024s6.144-14.848 15.872-23.04l-30.208-60.928 39.936-31.744v-0.512l39.936 31.744-30.208 60.928c9.728 8.704 16.384 23.552 16.384 23.552zM949.76 140.8h-191.488c-27.136 0-48.64 20.48-48.64 46.592v3.584c0.512 3.584 1.024 7.168 2.048 10.752 12.8 50.688 55.808 90.624 109.568 101.888 0.512 0 1.024-0.512 1.536-0.512h0.512c-34.304 12.288-58.88 43.52-58.88 80.384 0 47.104 40.448 85.504 90.112 85.504s90.112-38.4 90.112-85.504c0-36.352-24.064-68.096-57.856-79.872 53.76-11.264 96.256-50.688 109.568-101.888 1.024-3.584 2.048-7.168 2.048-10.752v-3.584c0.512-25.6-21.504-46.592-48.64-46.592M888.32 272.384v1.024c-9.216 6.656-18.432 8.704-25.6 8.704h-0.512c-7.68 0-16.384-2.048-25.6-8.704v-1.024s6.144-14.848 15.872-23.04l-30.208-60.928 39.936-31.744v-0.512l39.936 31.744-30.208 60.928c10.24 8.704 16.384 23.552 16.384 23.552zM329.728 56.32c-52.224 0-94.72 41.984-94.72 93.696 0 2.56 0 5.12 0.512 7.68 0.512 7.168 2.048 14.848 4.096 21.504 25.6 102.4 108.544 182.272 213.504 204.288 1.024-0.512 1.536-0.512 2.56-1.024-66.56 24.576-114.176 88.064-114.176 162.304 0 95.232 78.336 172.544 175.104 172.544s175.104-77.312 175.104-172.544c0-73.728-46.592-136.192-112.64-161.28 104.96-22.528 187.904-102.4 213.504-204.288 2.56-7.168 3.584-14.336 4.096-21.504 0-2.56 0.512-5.12 0.512-7.68 0.512-51.2-41.984-93.696-94.72-93.696H329.728zM702.464 19.456H329.728c-72.704 0-131.584 58.368-131.584 130.048 0 3.072 0 5.12 0.512 10.24 1.024 10.752 3.072 20.992 5.632 29.184 22.016 88.064 82.944 162.816 165.888 203.776-41.472 39.424-65.536 94.208-65.536 151.552 0 115.2 95.232 209.408 211.968 209.408 116.736 0 211.968-93.696 211.968-209.408 0-57.856-24.064-112.64-66.048-151.552 82.432-40.96 143.36-115.2 165.376-203.776 3.072-8.704 5.12-18.432 5.632-29.184l0.512-5.12v-5.12c0-34.304-13.312-66.56-37.376-91.648-25.088-24.576-58.368-38.4-94.208-38.4zM516.608 717.312C419.84 717.312 341.504 640 341.504 544.768c0-55.808 27.648-108.544 74.24-141.312l28.672-19.968-32.256-12.288C325.632 338.944 261.12 266.752 239.616 179.2c-2.56-7.168-3.584-14.336-4.096-21.504 0-3.584-0.512-5.12-0.512-7.68 0-51.712 42.496-93.696 94.72-93.696h373.248c25.6 0 49.664 10.24 67.584 28.16 17.408 17.408 27.136 40.96 27.136 65.536l-0.512 7.68c-0.512 7.68-2.048 14.848-4.096 21.504-22.016 88.064-86.016 159.744-171.52 192l-32.768 12.288 28.672 19.968c46.592 32.256 74.752 84.992 74.752 141.312-0.512 95.232-78.848 172.544-175.616 172.544zM580.096 332.288v2.048c-19.968 14.336-38.912 18.432-54.784 17.92h-1.024c-15.872 0.512-34.816-3.584-54.784-17.92v-2.048s13.312-30.72 33.792-48.128l-63.488-126.976 84.992-66.048 0.512 0.512 0.512 0.512v-0.512l84.992 66.048-63.488 126.976c18.944 17.408 32.768 47.616 32.768 47.616z" horiz-adv-x="1024" />
<glyph glyph-name="shujukaifa-huishouzhan" unicode="&#59139;" d="M192 576H96c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32h224V800c0 19.2 12.8 32 32 32h320c19.2 0 32-12.8 32-32v-96h224c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32h-96v-608c0-19.2-12.8-32-32-32H224c-19.2 0-32 12.8-32 32V576z m192 192v-64h256v64H384z m0-256v-448h64V512h-64z m192 0v-448h64V512h-64z" horiz-adv-x="1024" />
<glyph glyph-name="oa_nofind" unicode="&#58897;" d="M149.333333-72.96000000000004c0-11.946667 154.88-21.76 345.6-21.76s345.6 9.813333 345.6 21.76-154.88 21.76-345.6 21.76-345.6-9.813333-345.6-21.76M372.906667 683.9466669999999H806.4c8.533333 0 15.36-6.826667 15.36-15.36v-657.493334c0-8.533333-6.826667-15.36-15.36-15.36H372.906667c-8.533333 0-15.36 6.826667-15.36 15.36V668.586667c0 8.106667 7.253333 15.36 15.36 15.36z m0 0M704.853333-71.67999999999995c32.853333 1.28 58.453333 32.426667 58.453334 68.266667V596.48c0 14.506667-9.813333 26.453333-21.76 26.453333H284.586667c-13.226667-1.28-23.466667-13.226667-22.186667-26.453333v-641.706667c-0.853333-13.226667 8.96-24.746667 22.186667-26.026666l420.266666-0.426667z m0 0M720.64 117.75999999999999c0-8.106667-6.4-14.506667-14.506667-14.506667H320.853333c-5.12 0-9.813333 2.56-12.373333 7.253334-2.56 4.266667-2.56 9.813333 0 14.506666 2.56 4.266667 7.253333 7.253333 12.373333 7.253334h385.28c7.68 0 14.08-6.4 14.506667-14.506667m0 104.96c0-3.84-1.28-7.68-4.266667-10.24-2.56-2.56-6.4-4.266667-10.24-4.266667H320.853333c-5.12 0-9.813333 2.56-12.373333 7.253334-2.56 4.266667-2.56 9.813333 0 14.506666 2.56 4.266667 7.253333 7.253333 12.373333 7.253334h385.28c7.68-0.426667 14.08-6.826667 14.506667-14.506667m0 104.533333c0-8.106667-6.4-14.506667-14.506667-14.506666H320.853333c-5.12 0-9.813333 2.56-12.373333 7.253333-2.56 4.266667-2.56 9.813333 0 14.506667 2.56 4.266667 7.253333 7.253333 12.373333 7.253333h385.28c7.68 0 14.08-6.4 14.506667-14.506667m0 103.68c0-8.106667-6.4-14.506667-14.506667-14.506666H320.853333c-8.106667 0-14.506667 6.4-14.506666 14.506666s6.4 14.506667 14.506666 14.506667h385.28c7.68-0.426667 14.08-6.826667 14.506667-14.506667M648.96-2.9866670000000113v47.786667H215.04v-47.786667c0-37.12 26.453333-67.413333 61.013333-67.413333h2.986667v1.706667H708.266667c-32.426667 0-59.306667 29.44-59.306667 65.706666M861.44 741.12c0-7.68 3.84-14.506667 10.666667-18.346667 6.4-3.84 14.506667-3.84 20.906666 0 6.4 3.84 10.666667 10.666667 10.666667 18.346667 0 7.68-3.84 14.506667-10.666667 18.346667-6.4 3.84-14.506667 3.84-20.906666 0-6.826667-4.266667-10.666667-11.093333-10.666667-18.346667z m0 0M302.933333 829.013333c0-5.546667 4.693333-9.813333 9.813334-9.813333 5.546667 0 9.813333 4.693333 9.813333 9.813333v23.466667c0 5.546667-4.693333 9.813333-9.813333 9.813333C307.2 862.293333 302.933333 857.6 302.933333 852.48v-23.466667zM881.493333 267.09333300000003c0-2.133333 2.133333-4.693333 4.693334-4.693333 2.133333 0 4.693333 2.133333 4.693333 4.693333v11.52c0 2.133333-2.133333 4.693333-4.693333 4.693334-2.133333 0-4.693333-2.133333-4.693334-4.693334v-11.52zM271.36 820.053333c-5.546667 0-9.813333-4.693333-9.813333-9.813333 0-6.4 4.693333-10.666667 9.813333-10.666667h22.613333c5.546667 0 9.813333 4.693333 9.813334 9.813334 0 5.546667-4.693333 9.813333-9.813334 9.813333h-22.613333M865.706667 262.82666700000004c-2.133333 0-4.693333-2.133333-4.693334-4.693334 0-2.133333 2.133333-4.693333 4.693334-4.693333h11.52c2.133333 0 4.693333 2.133333 4.693333 4.693333 0 2.133333-2.133333 4.693333-4.693333 4.693334h-11.52M302.933333 764.16c0-5.546667 4.693333-9.813333 9.813334-9.813333 5.546667 0 9.813333 4.693333 9.813333 9.813333v23.466667c0 5.546667-4.693333 9.813333-9.813333 9.813333-5.546667 0-9.813333-4.693333-9.813334-9.813333v-23.466667zM881.493333 235.51999999999998c0-2.133333 2.133333-4.693333 4.693334-4.693333 2.133333 0 4.693333 2.133333 4.693333 4.693333v11.52c0 2.133333-2.133333 4.693333-4.693333 4.693333-2.133333 0-4.693333-2.133333-4.693334-4.693333v-11.52zM333.653333 820.053333c-5.546667 0-9.813333-4.693333-9.813333-9.813333 0-6.4 4.693333-10.666667 9.813333-10.666667h22.613334c5.546667 0 9.813333 4.693333 9.813333 9.813334 0 5.546667-4.693333 9.813333-9.813333 9.813333h-22.613334M897.706667 262.82666700000004c-2.133333 0-4.693333-2.133333-4.693334-4.693334 0-2.133333 2.133333-4.693333 4.693334-4.693333h11.52c2.133333 0 4.693333 2.133333 4.693333 4.693333 0 2.133333-2.133333 4.693333-4.693333 4.693334h-11.52M148.906667 404.053333c-21.333333 0-38.4 17.066667-38.4 38.4 0 22.613333 17.066667 39.68 38.4 39.68s38.4-17.066667 38.4-38.4c1.28-21.333333-16.64-39.68-38.4-39.68z m0 55.466667c-8.96 0-15.786667-6.826667-15.786667-15.786667s6.826667-15.786667 15.786667-15.786666 15.786667 6.826667 15.786666 15.786666c0.426667 9.386667-6.4 15.786667-15.786666 15.786667z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="xinxixianshi" unicode="&#59215;" d="M486.4 477.696h68.096V128H486.4V477.696zM512-42.496c239.104 0 426.496 187.904 426.496 426.496S751.104 810.496 512 810.496 85.504 623.104 85.504 384s187.392-426.496 426.496-426.496z m0-85.504C230.4-128 0 102.4 0 384S230.4 896 512 896s512-230.4 512-512-230.4-512-512-512zM520.704 568.32m-51.2 0a51.2 51.2 0 1 1 102.4 0 51.2 51.2 0 1 1-102.4 0Z" horiz-adv-x="1024" />
</font>
</defs></svg>
This source diff could not be displayed because it is too large. You can view the blob instead.
const autoprefixer = require('autoprefixer');
const pxtorem = require('postcss-pxtorem');
const path = require('path');
module.exports = {
outputDir: 'dist',
publicPath: process.env.NODE_ENV === 'production' ? './' : './',
/* devServer: {
host: "localhost",
port: 8006, // 端口号
}, */
css: {
loaderOptions: {
postcss: {
plugins: [
autoprefixer(),
pxtorem({
rootValue: 37.5,
propList: ['*']
})
]
}
}
},
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment