@ -0,0 +1,14 @@ |
|||
# http://editorconfig.org |
|||
root = true |
|||
|
|||
[*] |
|||
charset = utf-8 |
|||
indent_style = space |
|||
indent_size = 2 |
|||
end_of_line = lf |
|||
insert_final_newline = true |
|||
trim_trailing_whitespace = true |
|||
|
|||
[*.md] |
|||
insert_final_newline = false |
|||
trim_trailing_whitespace = false |
@ -0,0 +1,15 @@ |
|||
# just a flag |
|||
ENV = 'development' |
|||
|
|||
# base api |
|||
VUE_APP_BASE_API = 'http://192.168.0.104:808' |
|||
|
|||
# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable, |
|||
# to control whether the babel-plugin-dynamic-import-node plugin is enabled. |
|||
# It only does one thing by converting all import() to require(). |
|||
# This configuration can significantly increase the speed of hot updates, |
|||
# when you have a large number of pages. |
|||
# Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js |
|||
|
|||
# 路由懒加载 |
|||
VUE_CLI_BABEL_TRANSPILE_MODULES = true |
@ -0,0 +1,6 @@ |
|||
# just a flag |
|||
ENV = 'production' |
|||
|
|||
# base api |
|||
VUE_APP_BASE_API = '/prod-api' |
|||
|
@ -0,0 +1,8 @@ |
|||
NODE_ENV = production |
|||
|
|||
# just a flag |
|||
ENV = 'staging' |
|||
|
|||
# base api |
|||
VUE_APP_BASE_API = '/stage-api' |
|||
|
@ -0,0 +1,5 @@ |
|||
build/*.js |
|||
src/assets |
|||
public |
|||
dist |
|||
src/* |
@ -0,0 +1,198 @@ |
|||
module.exports = { |
|||
root: true, |
|||
parserOptions: { |
|||
parser: 'babel-eslint', |
|||
sourceType: 'module' |
|||
}, |
|||
env: { |
|||
browser: true, |
|||
node: true, |
|||
es6: true |
|||
}, |
|||
extends: ['plugin:vue/recommended', 'eslint:recommended'], |
|||
|
|||
// add your custom rules here
|
|||
// it is base on https://github.com/vuejs/eslint-config-vue
|
|||
rules: { |
|||
'vue/max-attributes-per-line': [2, { |
|||
'singleline': 10, |
|||
'multiline': { |
|||
'max': 1, |
|||
'allowFirstLine': false |
|||
} |
|||
}], |
|||
'vue/singleline-html-element-content-newline': 'off', |
|||
'vue/multiline-html-element-content-newline': 'off', |
|||
'vue/name-property-casing': ['error', 'PascalCase'], |
|||
'vue/no-v-html': 'off', |
|||
'accessor-pairs': 2, |
|||
'arrow-spacing': [2, { |
|||
'before': true, |
|||
'after': true |
|||
}], |
|||
'block-spacing': [2, 'always'], |
|||
'brace-style': [2, '1tbs', { |
|||
'allowSingleLine': true |
|||
}], |
|||
'camelcase': [0, { |
|||
'properties': 'always' |
|||
}], |
|||
'comma-dangle': [2, 'never'], |
|||
'comma-spacing': [2, { |
|||
'before': false, |
|||
'after': true |
|||
}], |
|||
'comma-style': [2, 'last'], |
|||
'constructor-super': 2, |
|||
'curly': [2, 'multi-line'], |
|||
'dot-location': [2, 'property'], |
|||
'eol-last': 2, |
|||
'eqeqeq': ['error', 'always', { 'null': 'ignore' }], |
|||
'generator-star-spacing': [2, { |
|||
'before': true, |
|||
'after': true |
|||
}], |
|||
'handle-callback-err': [2, '^(err|error)$'], |
|||
'indent': [2, 2, { |
|||
'SwitchCase': 1 |
|||
}], |
|||
'jsx-quotes': [2, 'prefer-single'], |
|||
'key-spacing': [2, { |
|||
'beforeColon': false, |
|||
'afterColon': true |
|||
}], |
|||
'keyword-spacing': [2, { |
|||
'before': true, |
|||
'after': true |
|||
}], |
|||
'new-cap': [2, { |
|||
'newIsCap': true, |
|||
'capIsNew': false |
|||
}], |
|||
'new-parens': 2, |
|||
'no-array-constructor': 2, |
|||
'no-caller': 2, |
|||
'no-console': 'off', |
|||
'no-class-assign': 2, |
|||
'no-cond-assign': 2, |
|||
'no-const-assign': 2, |
|||
'no-control-regex': 0, |
|||
'no-delete-var': 2, |
|||
'no-dupe-args': 2, |
|||
'no-dupe-class-members': 2, |
|||
'no-dupe-keys': 2, |
|||
'no-duplicate-case': 2, |
|||
'no-empty-character-class': 2, |
|||
'no-empty-pattern': 2, |
|||
'no-eval': 2, |
|||
'no-ex-assign': 2, |
|||
'no-extend-native': 2, |
|||
'no-extra-bind': 2, |
|||
'no-extra-boolean-cast': 2, |
|||
'no-extra-parens': [2, 'functions'], |
|||
'no-fallthrough': 2, |
|||
'no-floating-decimal': 2, |
|||
'no-func-assign': 2, |
|||
'no-implied-eval': 2, |
|||
'no-inner-declarations': [2, 'functions'], |
|||
'no-invalid-regexp': 2, |
|||
'no-irregular-whitespace': 2, |
|||
'no-iterator': 2, |
|||
'no-label-var': 2, |
|||
'no-labels': [2, { |
|||
'allowLoop': false, |
|||
'allowSwitch': false |
|||
}], |
|||
'no-lone-blocks': 2, |
|||
'no-mixed-spaces-and-tabs': 2, |
|||
'no-multi-spaces': 2, |
|||
'no-multi-str': 2, |
|||
'no-multiple-empty-lines': [2, { |
|||
'max': 1 |
|||
}], |
|||
'no-native-reassign': 2, |
|||
'no-negated-in-lhs': 2, |
|||
'no-new-object': 2, |
|||
'no-new-require': 2, |
|||
'no-new-symbol': 2, |
|||
'no-new-wrappers': 2, |
|||
'no-obj-calls': 2, |
|||
'no-octal': 2, |
|||
'no-octal-escape': 2, |
|||
'no-path-concat': 2, |
|||
'no-proto': 2, |
|||
'no-redeclare': 2, |
|||
'no-regex-spaces': 2, |
|||
'no-return-assign': [2, 'except-parens'], |
|||
'no-self-assign': 2, |
|||
'no-self-compare': 2, |
|||
'no-sequences': 2, |
|||
'no-shadow-restricted-names': 2, |
|||
'no-spaced-func': 2, |
|||
'no-sparse-arrays': 2, |
|||
'no-this-before-super': 2, |
|||
'no-throw-literal': 2, |
|||
'no-trailing-spaces': 2, |
|||
'no-undef': 2, |
|||
'no-undef-init': 2, |
|||
'no-unexpected-multiline': 2, |
|||
'no-unmodified-loop-condition': 2, |
|||
'no-unneeded-ternary': [2, { |
|||
'defaultAssignment': false |
|||
}], |
|||
'no-unreachable': 2, |
|||
'no-unsafe-finally': 2, |
|||
'no-unused-vars': [2, { |
|||
'vars': 'all', |
|||
'args': 'none' |
|||
}], |
|||
'no-useless-call': 2, |
|||
'no-useless-computed-key': 2, |
|||
'no-useless-constructor': 2, |
|||
'no-useless-escape': 0, |
|||
'no-whitespace-before-property': 2, |
|||
'no-with': 2, |
|||
'one-var': [2, { |
|||
'initialized': 'never' |
|||
}], |
|||
'operator-linebreak': [2, 'after', { |
|||
'overrides': { |
|||
'?': 'before', |
|||
':': 'before' |
|||
} |
|||
}], |
|||
'padded-blocks': [2, 'never'], |
|||
'quotes': [2, 'single', { |
|||
'avoidEscape': true, |
|||
'allowTemplateLiterals': true |
|||
}], |
|||
'semi': [2, 'never'], |
|||
'semi-spacing': [2, { |
|||
'before': false, |
|||
'after': true |
|||
}], |
|||
'space-before-blocks': [2, 'always'], |
|||
'space-before-function-paren': [2, 'never'], |
|||
'space-in-parens': [2, 'never'], |
|||
'space-infix-ops': 2, |
|||
'space-unary-ops': [2, { |
|||
'words': true, |
|||
'nonwords': false |
|||
}], |
|||
'spaced-comment': [2, 'always', { |
|||
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] |
|||
}], |
|||
'template-curly-spacing': [2, 'never'], |
|||
'use-isnan': 2, |
|||
'valid-typeof': 2, |
|||
'wrap-iife': [2, 'any'], |
|||
'yield-star-spacing': [2, 'both'], |
|||
'yoda': [2, 'never'], |
|||
'prefer-const': 2, |
|||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, |
|||
'object-curly-spacing': [2, 'always', { |
|||
objectsInObjects: false |
|||
}], |
|||
'array-bracket-spacing': [2, 'never'] |
|||
} |
|||
} |
@ -0,0 +1 @@ |
|||
node_modules |
@ -0,0 +1,5 @@ |
|||
# Default ignored files |
|||
/shelf/ |
|||
/workspace.xml |
|||
# Editor-based HTTP Client requests |
|||
/httpRequests/ |
@ -0,0 +1,6 @@ |
|||
<component name="InspectionProjectProfileManager"> |
|||
<profile version="1.0"> |
|||
<option name="myName" value="Project Default" /> |
|||
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" /> |
|||
</profile> |
|||
</component> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<project version="4"> |
|||
<component name="ProjectModuleManager"> |
|||
<modules> |
|||
<module fileurl="file://$PROJECT_DIR$/.idea/recruitmentadmin.vue.iml" filepath="$PROJECT_DIR$/.idea/recruitmentadmin.vue.iml" /> |
|||
</modules> |
|||
</component> |
|||
</project> |
@ -0,0 +1,12 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<module type="WEB_MODULE" version="4"> |
|||
<component name="NewModuleRootManager"> |
|||
<content url="file://$MODULE_DIR$"> |
|||
<excludeFolder url="file://$MODULE_DIR$/temp" /> |
|||
<excludeFolder url="file://$MODULE_DIR$/.tmp" /> |
|||
<excludeFolder url="file://$MODULE_DIR$/tmp" /> |
|||
</content> |
|||
<orderEntry type="inheritedJdk" /> |
|||
<orderEntry type="sourceFolder" forTests="false" /> |
|||
</component> |
|||
</module> |
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<project version="4"> |
|||
<component name="VcsDirectoryMappings"> |
|||
<mapping directory="$PROJECT_DIR$" vcs="Git" /> |
|||
</component> |
|||
</project> |
@ -0,0 +1,5 @@ |
|||
language: node_js |
|||
node_js: 10 |
|||
script: npm run test |
|||
notifications: |
|||
email: false |
@ -0,0 +1,3 @@ |
|||
{ |
|||
"CurrentProjectSetting": null |
|||
} |
@ -0,0 +1,10 @@ |
|||
module.exports = { |
|||
presets: [ |
|||
'@vue/cli-plugin-babel/preset' |
|||
], |
|||
env: { |
|||
development: { |
|||
plugins: ['dynamic-import-node'] |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,35 @@ |
|||
const { run } = require('runjs') |
|||
const chalk = require('chalk') |
|||
const config = require('../vue.config.js') |
|||
const rawArgv = process.argv.slice(2) |
|||
const args = rawArgv.join(' ') |
|||
|
|||
if (process.env.npm_config_preview || rawArgv.includes('--preview')) { |
|||
const report = rawArgv.includes('--report') |
|||
|
|||
run(`vue-cli-service build ${args}`) |
|||
|
|||
const port = 9526 |
|||
const publicPath = config.publicPath |
|||
|
|||
var connect = require('connect') |
|||
var serveStatic = require('serve-static') |
|||
const app = connect() |
|||
|
|||
app.use( |
|||
publicPath, |
|||
serveStatic('./dist', { |
|||
index: ['index.html', '/'] |
|||
}) |
|||
) |
|||
|
|||
app.listen(port, function () { |
|||
console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`)) |
|||
if (report) { |
|||
console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`)) |
|||
} |
|||
|
|||
}) |
|||
} else { |
|||
run(`vue-cli-service build ${args}`) |
|||
} |
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,7 @@ |
|||
<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta http-equiv="Access-Control-Allow-Origin" content="*"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel="icon" href="favicon.ico"><title>管理系统</title><style>html, |
|||
body, |
|||
#app { |
|||
height: 100%; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
}</style><link href="static/css/chunk-elementUI.68c70ad5.css" rel="stylesheet"><link href="static/css/chunk-libs.3dfb7769.css" rel="stylesheet"><link href="static/css/app.82a6c768.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but 管理系统 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script>(function(e){function n(n){for(var r,c,o=n[0],i=n[1],f=n[2],l=0,d=[];l<o.length;l++)c=o[l],Object.prototype.hasOwnProperty.call(u,c)&&u[c]&&d.push(u[c][0]),u[c]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);h&&h(n);while(d.length)d.shift()();return a.push.apply(a,f||[]),t()}function t(){for(var e,n=0;n<a.length;n++){for(var t=a[n],r=!0,c=1;c<t.length;c++){var o=t[c];0!==u[o]&&(r=!1)}r&&(a.splice(n--,1),e=i(i.s=t[0]))}return e}var r={},c={runtime:0},u={runtime:0},a=[];function o(e){return i.p+"static/js/"+({}[e]||e)+"."+{"chunk-2d230fe7":"a21e19a8","chunk-3ca98546":"8643c138","chunk-4c5bb48b":"f8bef56b","chunk-55a8b712":"663dba6d","chunk-5f672bc6":"f39286e6","chunk-0c35ec2e":"a8007e1a","chunk-1abb4c0e":"67d4a2f0","chunk-533eb011":"60a83025","chunk-a62782ca":"64f6458f","chunk-c1d32c04":"9ded2915","chunk-ed02f908":"393373c0"}[e]+".js"}function i(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,i),t.l=!0,t.exports}i.e=function(e){var n=[],t={"chunk-3ca98546":1,"chunk-4c5bb48b":1,"chunk-55a8b712":1,"chunk-0c35ec2e":1,"chunk-533eb011":1,"chunk-a62782ca":1,"chunk-c1d32c04":1,"chunk-ed02f908":1};c[e]?n.push(c[e]):0!==c[e]&&t[e]&&n.push(c[e]=new Promise((function(n,t){for(var r="static/css/"+({}[e]||e)+"."+{"chunk-2d230fe7":"31d6cfe0","chunk-3ca98546":"8f2d5aac","chunk-4c5bb48b":"d1e0712f","chunk-55a8b712":"2bee9111","chunk-5f672bc6":"31d6cfe0","chunk-0c35ec2e":"17eb7e67","chunk-1abb4c0e":"31d6cfe0","chunk-533eb011":"3643d10e","chunk-a62782ca":"5692ebdb","chunk-c1d32c04":"883556ca","chunk-ed02f908":"70765496"}[e]+".css",u=i.p+r,a=document.getElementsByTagName("link"),o=0;o<a.length;o++){var f=a[o],l=f.getAttribute("data-href")||f.getAttribute("href");if("stylesheet"===f.rel&&(l===r||l===u))return n()}var d=document.getElementsByTagName("style");for(o=0;o<d.length;o++){f=d[o],l=f.getAttribute("data-href");if(l===r||l===u)return n()}var h=document.createElement("link");h.rel="stylesheet",h.type="text/css",h.onload=n,h.onerror=function(n){var r=n&&n.target&&n.target.src||u,a=new Error("Loading CSS chunk "+e+" failed.\n("+r+")");a.code="CSS_CHUNK_LOAD_FAILED",a.request=r,delete c[e],h.parentNode.removeChild(h),t(a)},h.href=u;var s=document.getElementsByTagName("head")[0];s.appendChild(h)})).then((function(){c[e]=0})));var r=u[e];if(0!==r)if(r)n.push(r[2]);else{var a=new Promise((function(n,t){r=u[e]=[n,t]}));n.push(r[2]=a);var f,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=o(e);var d=new Error;f=function(n){l.onerror=l.onload=null,clearTimeout(h);var t=u[e];if(0!==t){if(t){var r=n&&("load"===n.type?"missing":n.type),c=n&&n.target&&n.target.src;d.message="Loading chunk "+e+" failed.\n("+r+": "+c+")",d.name="ChunkLoadError",d.type=r,d.request=c,t[1](d)}u[e]=void 0}};var h=setTimeout((function(){f({type:"timeout",target:l})}),12e4);l.onerror=l.onload=f,document.head.appendChild(l)}return Promise.all(n)},i.m=e,i.c=r,i.d=function(e,n,t){i.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:t})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,n){if(1&n&&(e=i(e)),8&n)return e;if(4&n&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var r in e)i.d(t,r,function(n){return e[n]}.bind(null,r));return t},i.n=function(e){var n=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(n,"a",n),n},i.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},i.p="",i.oe=function(e){throw console.error(e),e};var f=window["webpackJsonp"]=window["webpackJsonp"]||[],l=f.push.bind(f);f.push=n,f=f.slice();for(var d=0;d<f.length;d++)n(f[d]);var h=l;t()})([]);</script><script src="static/js/chunk-elementUI.3aa48d9e.js"></script><script src="static/js/chunk-libs.0811b812.js"></script><script src="static/js/app.96a942dc.js"></script></body></html> |
@ -0,0 +1 @@ |
|||
.app-container[data-v-eff443b4]{background:#f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.panel-group[data-v-eff443b4]{-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:12px;background:#fff;margin-bottom:30px}.panel-group .header[data-v-eff443b4]{font-size:16px;padding:20px 20px 0}.panel-group .pending-card[data-v-eff443b4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;background:rgba(235,245,254,.33);padding:23px 0;margin-bottom:30px}.panel-group .pending-card span[data-v-eff443b4]:first-of-type:before{display:inline-block;content:"";width:10px;height:10px;border-radius:50%;background:#1890ff;margin-right:8px}.panel-group .card-panel-col+.card-panel-col .card-panel-description[data-v-eff443b4]{border-left:1px solid #d8d8d8}.panel-group .card-panel[data-v-eff443b4]{height:auto;cursor:pointer;font-size:12px;position:relative;overflow:hidden;color:#666;background:#fff;border-color:rgba(0,0,0,.05)}.panel-group .card-panel:hover .card-panel-icon-wrapper[data-v-eff443b4]{color:#fff}.panel-group .card-panel:hover .icon-people[data-v-eff443b4]{background:#40c9c6}.panel-group .card-panel:hover .icon-message[data-v-eff443b4]{background:#36a3f7}.panel-group .card-panel:hover .icon-money[data-v-eff443b4]{background:#f4516c}.panel-group .card-panel:hover .icon-shopping[data-v-eff443b4]{background:#34bfa3}.panel-group .card-panel .icon-people[data-v-eff443b4]{color:#40c9c6}.panel-group .card-panel .icon-message[data-v-eff443b4]{color:#36a3f7}.panel-group .card-panel .icon-money[data-v-eff443b4]{color:#f4516c}.panel-group .card-panel .icon-shopping[data-v-eff443b4]{color:#34bfa3}.panel-group .card-panel .card-panel-icon-wrapper[data-v-eff443b4]{float:left;margin:14px 0 0 14px;padding:16px;-webkit-transition:all .38s ease-out;transition:all .38s ease-out;border-radius:6px}.panel-group .card-panel .card-panel-icon[data-v-eff443b4]{float:left;font-size:48px}.panel-group .card-panel-description[data-v-eff443b4]{text-align:center;font-weight:700;margin:26px;margin-left:0}.panel-group .card-panel-description .card-panel-text[data-v-eff443b4]{line-height:18px;color:#333;font-size:16px;margin-bottom:12px}.panel-group .card-panel-description .card-panel-growth-text[data-v-eff443b4]{color:#999;font-size:16px;margin-top:12px}.panel-group .card-panel-description .card-panel-num[data-v-eff443b4]{font-size:30px}@media(max-width:550px){.card-panel-description[data-v-eff443b4]{display:none}.card-panel-icon-wrapper[data-v-eff443b4]{float:none!important;width:100%;height:100%;margin:0!important}.card-panel-icon-wrapper .svg-icon[data-v-eff443b4]{display:block;margin:14px auto!important;float:none!important}}.systeminfo[data-v-eff443b4]{line-height:25px;float:left;width:50%;margin-bottom:20px}.systeminfo .lidiv[data-v-eff443b4]{line-height:25px}.tb[data-v-eff443b4]{width:100%;background:#fff;border-radius:20px;padding:20px}.tb_title[data-v-eff443b4]{padding-bottom:20px;border-bottom:2px solid #eee}.tb_dasc[data-v-eff443b4],.tb_tiem[data-v-eff443b4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tb_tiem[data-v-eff443b4]{padding-right:20px}.tb_tiem .tb_tiem_x[data-v-eff443b4]{padding:0 20px}.tb_tab[data-v-eff443b4]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:20px 0}.tab_item[data-v-eff443b4]{display:inline-block;text-align:center;width:100px;padding:4px 0;border-radius:999px;border:1px solid #bfbfbf;color:#333;margin-right:20px;cursor:pointer}.istab_item[data-v-eff443b4]{border:1px solid #1890ff;background:#1890ff;color:#fff}.tb1[data-v-eff443b4]{width:100%;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;height:350px} |
@ -0,0 +1 @@ |
|||
.app-container[data-v-de2c6d76]{background:#f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.panel-group[data-v-de2c6d76]{-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:12px;background:#fff;margin-bottom:30px}.panel-group .header[data-v-de2c6d76]{font-size:16px;padding:20px 20px 0}.panel-group .pending-card[data-v-de2c6d76]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;background:rgba(235,245,254,.33);padding:23px 0;margin-bottom:30px}.panel-group .pending-card span[data-v-de2c6d76]:first-of-type:before{display:inline-block;content:"";width:10px;height:10px;border-radius:50%;background:#1890ff;margin-right:8px}.panel-group .card-panel-col+.card-panel-col .card-panel-description[data-v-de2c6d76]{border-left:1px solid #d8d8d8}.panel-group .card-panel[data-v-de2c6d76]{height:auto;cursor:pointer;font-size:12px;position:relative;overflow:hidden;color:#666;background:#fff;border-color:rgba(0,0,0,.05)}.panel-group .card-panel:hover .card-panel-icon-wrapper[data-v-de2c6d76]{color:#fff}.panel-group .card-panel:hover .icon-people[data-v-de2c6d76]{background:#40c9c6}.panel-group .card-panel:hover .icon-message[data-v-de2c6d76]{background:#36a3f7}.panel-group .card-panel:hover .icon-money[data-v-de2c6d76]{background:#f4516c}.panel-group .card-panel:hover .icon-shopping[data-v-de2c6d76]{background:#34bfa3}.panel-group .card-panel .icon-people[data-v-de2c6d76]{color:#40c9c6}.panel-group .card-panel .icon-message[data-v-de2c6d76]{color:#36a3f7}.panel-group .card-panel .icon-money[data-v-de2c6d76]{color:#f4516c}.panel-group .card-panel .icon-shopping[data-v-de2c6d76]{color:#34bfa3}.panel-group .card-panel .card-panel-icon-wrapper[data-v-de2c6d76]{float:left;margin:14px 0 0 14px;padding:16px;-webkit-transition:all .38s ease-out;transition:all .38s ease-out;border-radius:6px}.panel-group .card-panel .card-panel-icon[data-v-de2c6d76]{float:left;font-size:48px}.panel-group .card-panel-description[data-v-de2c6d76]{text-align:center;font-weight:700;margin:26px;margin-left:0}.panel-group .card-panel-description .card-panel-text[data-v-de2c6d76]{line-height:18px;color:#333;font-size:16px;margin-bottom:12px}.panel-group .card-panel-description .card-panel-growth-text[data-v-de2c6d76]{color:#999;font-size:16px;margin-top:12px}.panel-group .card-panel-description .card-panel-num[data-v-de2c6d76]{font-size:30px}@media(max-width:550px){.card-panel-description[data-v-de2c6d76]{display:none}.card-panel-icon-wrapper[data-v-de2c6d76]{float:none!important;width:100%;height:100%;margin:0!important}.card-panel-icon-wrapper .svg-icon[data-v-de2c6d76]{display:block;margin:14px auto!important;float:none!important}}.systeminfo[data-v-de2c6d76]{line-height:25px;float:left;width:50%;margin-bottom:20px}.systeminfo .lidiv[data-v-de2c6d76]{line-height:25px}.tb[data-v-de2c6d76]{width:100%;background:#fff;border-radius:20px;padding:20px}.tb_title[data-v-de2c6d76]{padding-bottom:20px;border-bottom:2px solid #eee}.tb_dasc[data-v-de2c6d76],.tb_tiem[data-v-de2c6d76]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tb_tiem[data-v-de2c6d76]{padding-right:20px}.tb_tiem .tb_tiem_x[data-v-de2c6d76]{padding:0 20px}.tb_tab[data-v-de2c6d76]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:20px 0}.tab_item[data-v-de2c6d76]{display:inline-block;text-align:center;width:100px;padding:4px 0;border-radius:999px;border:1px solid #bfbfbf;color:#333;margin-right:20px;cursor:pointer}.istab_item[data-v-de2c6d76]{border:1px solid #1890ff;background:#1890ff;color:#fff}.tb1[data-v-de2c6d76]{width:100%;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;height:350px} |
@ -0,0 +1 @@ |
|||
.yuebon-setting-form .el-tab-pane[data-v-ff9f68d4]{width:40%}.yuebon-setting-form .el-cascader .el-input[data-v-ff9f68d4],.yuebon-setting-form .el-input[data-v-ff9f68d4],.yuebon-setting-form .el-select .el-input[data-v-ff9f68d4]{width:100%}.yuebon-setting-form .btnset[data-v-ff9f68d4]{float:right;margin-right:30px;margin-top:20px}.avatar-uploader .el-upload[data-v-ff9f68d4]{border:1px solid #ccc;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.avatar-uploader .el-upload[data-v-ff9f68d4]:hover{border-color:#409eff}.avatar-uploader-icon[data-v-ff9f68d4]{font-size:28px;color:#8c939d;width:176px;height:176px;line-height:176px;border:1px solid #ccc;text-align:center}.avatar[data-v-ff9f68d4]{width:176px;height:176px;display:block;border:1px solid #ccc} |
@ -0,0 +1 @@ |
|||
.error-container[data-v-26aead3e]{position:absolute;top:40%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.error-container .error-content .pic-error[data-v-26aead3e]{position:relative;float:left;width:120%;overflow:hidden}.error-container .error-content .pic-error-parent[data-v-26aead3e]{width:100%}.error-container .error-content .pic-error-child[data-v-26aead3e]{position:absolute}.error-container .error-content .pic-error-child.left[data-v-26aead3e]{top:17px;left:220px;width:80px;opacity:0;-webkit-animation-name:cloudLeft-data-v-26aead3e;animation-name:cloudLeft-data-v-26aead3e;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .pic-error-child.mid[data-v-26aead3e]{top:10px;left:420px;width:46px;opacity:0;-webkit-animation-name:cloudMid-data-v-26aead3e;animation-name:cloudMid-data-v-26aead3e;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1.2s;animation-delay:1.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .pic-error-child.right[data-v-26aead3e]{top:100px;left:500px;width:62px;opacity:0;-webkit-animation-name:cloudRight-data-v-26aead3e;animation-name:cloudRight-data-v-26aead3e;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes cloudLeft-data-v-26aead3e{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@keyframes cloudLeft-data-v-26aead3e{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@-webkit-keyframes cloudMid-data-v-26aead3e{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@keyframes cloudMid-data-v-26aead3e{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@-webkit-keyframes cloudRight-data-v-26aead3e{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}@keyframes cloudRight-data-v-26aead3e{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}.error-container .error-content .bullshit[data-v-26aead3e]{position:relative;float:left;width:300px;padding:30px 0;overflow:hidden}.error-container .error-content .bullshit-oops[data-v-26aead3e]{margin-bottom:20px;font-size:32px;line-height:40px;color:#1482f0;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-headline[data-v-26aead3e],.error-container .error-content .bullshit-oops[data-v-26aead3e]{font-weight:700;opacity:0;-webkit-animation-name:slideUp-data-v-26aead3e;animation-name:slideUp-data-v-26aead3e;-webkit-animation-duration:.5s;animation-duration:.5s}.error-container .error-content .bullshit-headline[data-v-26aead3e]{margin-bottom:10px;font-size:20px;line-height:24px;color:#222;-webkit-animation-delay:.1s;animation-delay:.1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-info[data-v-26aead3e]{margin-bottom:30px;font-size:13px;line-height:21px;color:#1482f0;-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-info[data-v-26aead3e],.error-container .error-content .bullshit-return-home[data-v-26aead3e]{opacity:0;-webkit-animation-name:slideUp-data-v-26aead3e;animation-name:slideUp-data-v-26aead3e;-webkit-animation-duration:.5s;animation-duration:.5s}.error-container .error-content .bullshit-return-home[data-v-26aead3e]{display:block;float:left;width:110px;height:36px;font-size:14px;line-height:36px;color:#fff;text-align:center;cursor:pointer;background:#1482f0;border-radius:100px;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes slideUp-data-v-26aead3e{0%{opacity:0;-webkit-transform:translateY(60px);transform:translateY(60px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideUp-data-v-26aead3e{0%{opacity:0;-webkit-transform:translateY(60px);transform:translateY(60px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}} |
@ -0,0 +1 @@ |
|||
.el-form-item__label[data-v-512395ca]{width:50px}.warp[data-v-512395ca]{width:100%;height:100%;padding:10px}.top_card[data-v-512395ca]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.t_c_l_item[data-v-512395ca]{margin-right:15px}.table_css[data-v-512395ca]{margin-top:20px}.pagination-container[data-v-512395ca]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.demo-drawer__content[data-v-512395ca]{width:100%;height:100%;padding:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.demo-drawer__content .form_inp_width[data-v-512395ca]{width:100%}.demo-drawer__content .text_css div[data-v-512395ca]{width:300px;line-height:22px;padding-top:8px;word-wrap:break-word;word-break:normal}.demo-drawer__content .top_name[data-v-512395ca]{width:100%;font-size:20px;font-weight:700;position:relative;top:-50px}.fk_top[data-v-512395ca]{width:100%;margin-top:-20px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.fk_top .fk_top_admin[data-v-512395ca],.fk_top[data-v-512395ca]{height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal}.fk_top .fk_top_admin[data-v-512395ca]{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:distribute;justify-content:space-around;margin-left:10px;font-size:16px;color:#555}.fk_top .fk_top_status[data-v-512395ca]{height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-left:30px;padding-bottom:7px;color:#555;font-weight:700}.fk_top .fk_top_status .el-dropdown-link[data-v-512395ca],.fk_top .fk_top_status[data-v-512395ca]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;font-size:15px}.fk_top .fk_top_status .el-dropdown-link[data-v-512395ca]{cursor:pointer}.fk_top .fk_top_status .col0[data-v-512395ca]{color:red}.fk_top .fk_top_status .col1[data-v-512395ca]{color:#13d40d} |
@ -0,0 +1 @@ |
|||
.error-container[data-v-4cb04f5d]{position:absolute;top:40%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.error-container .error-content .pic-error[data-v-4cb04f5d]{position:relative;float:left;width:120%;overflow:hidden}.error-container .error-content .pic-error-parent[data-v-4cb04f5d]{width:100%}.error-container .error-content .pic-error-child[data-v-4cb04f5d]{position:absolute}.error-container .error-content .pic-error-child.left[data-v-4cb04f5d]{top:17px;left:220px;width:80px;opacity:0;-webkit-animation-name:cloudLeft-data-v-4cb04f5d;animation-name:cloudLeft-data-v-4cb04f5d;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .pic-error-child.mid[data-v-4cb04f5d]{top:10px;left:420px;width:46px;opacity:0;-webkit-animation-name:cloudMid-data-v-4cb04f5d;animation-name:cloudMid-data-v-4cb04f5d;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1.2s;animation-delay:1.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .pic-error-child.right[data-v-4cb04f5d]{top:100px;left:500px;width:62px;opacity:0;-webkit-animation-name:cloudRight-data-v-4cb04f5d;animation-name:cloudRight-data-v-4cb04f5d;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes cloudLeft-data-v-4cb04f5d{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@keyframes cloudLeft-data-v-4cb04f5d{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@-webkit-keyframes cloudMid-data-v-4cb04f5d{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@keyframes cloudMid-data-v-4cb04f5d{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@-webkit-keyframes cloudRight-data-v-4cb04f5d{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}@keyframes cloudRight-data-v-4cb04f5d{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}.error-container .error-content .bullshit[data-v-4cb04f5d]{position:relative;float:left;width:300px;padding:30px 0;overflow:hidden}.error-container .error-content .bullshit-oops[data-v-4cb04f5d]{margin-bottom:20px;font-size:32px;line-height:40px;color:#1482f0;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-headline[data-v-4cb04f5d],.error-container .error-content .bullshit-oops[data-v-4cb04f5d]{font-weight:700;opacity:0;-webkit-animation-name:slideUp-data-v-4cb04f5d;animation-name:slideUp-data-v-4cb04f5d;-webkit-animation-duration:.5s;animation-duration:.5s}.error-container .error-content .bullshit-headline[data-v-4cb04f5d]{margin-bottom:10px;font-size:20px;line-height:24px;color:#222;-webkit-animation-delay:.1s;animation-delay:.1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-info[data-v-4cb04f5d]{margin-bottom:30px;font-size:13px;line-height:21px;color:#1482f0;-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.error-container .error-content .bullshit-info[data-v-4cb04f5d],.error-container .error-content .bullshit-return-home[data-v-4cb04f5d]{opacity:0;-webkit-animation-name:slideUp-data-v-4cb04f5d;animation-name:slideUp-data-v-4cb04f5d;-webkit-animation-duration:.5s;animation-duration:.5s}.error-container .error-content .bullshit-return-home[data-v-4cb04f5d]{display:block;float:left;width:110px;height:36px;font-size:14px;line-height:36px;color:#fff;text-align:center;cursor:pointer;background:#1482f0;border-radius:100px;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes slideUp-data-v-4cb04f5d{0%{opacity:0;-webkit-transform:translateY(60px);transform:translateY(60px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideUp-data-v-4cb04f5d{0%{opacity:0;-webkit-transform:translateY(60px);transform:translateY(60px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}} |
@ -0,0 +1 @@ |
|||
@supports(-webkit-mask:none) and (not (cater-color:#000000)){.login-container .el-input input{color:#000}}.login-container .el-input{display:inline-block;height:47px;width:85%}.login-container .el-input input{background:transparent;border:0;-webkit-appearance:none;border-radius:0;padding:12px 5px 12px 15px;color:#000;height:47px;caret-color:#000}.login-container .el-input input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset!important;box-shadow:inset 0 0 0 1000px #fff!important;-webkit-text-fill-color:#000!important}.login-container .el-form-item{border:1px solid rgba(7,7,7,.1);background:hsla(0,0%,100%,.8);border-radius:5px;color:#454545}.login-container[data-v-5b388254]{height:100%;width:100%;background-image:url(../../static/img/convergedbg_v2.a7519353.jpg);overflow:hidden;background-size:100% 100%}.login-container .login-form[data-v-5b388254]{position:relative;width:369px;max-width:100%;margin:10% auto;overflow:hidden;background:#fff;border-radius:10px;padding:0 20px}.login-container .tips[data-v-5b388254]{font-size:14px;color:#fff;margin-bottom:10px}.login-container .tips span[data-v-5b388254]:first-of-type{margin-right:16px}.login-container .svg-container[data-v-5b388254]{padding:6px 5px 6px 15px;color:#5e6163;vertical-align:middle;width:30px;display:inline-block}.login-container .title-container[data-v-5b388254]{position:relative}.login-container .title-container .title[data-v-5b388254]{font-size:26px;color:#000;margin:10px auto;text-align:center;font-weight:700}.login-container .logo-container[data-v-5b388254]{position:relative;margin-bottom:10px}.login-container .show-pwd[data-v-5b388254]{position:absolute;right:10px;top:7px;font-size:16px;color:#000;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.login-container .footer[data-v-5b388254]{position:fixed;bottom:0;width:100%;overflow:visible;z-index:99;clear:both;background-color:rgba(0,0,0,.8);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#99000000",endColorstr="#99000000")}.login-container div.footerNodelf[data-v-5b388254]{float:left}.login-container div.footerNode[data-v-5b388254]{margin:0;float:right}.login-container .text-secondary[data-v-5b388254]{color:#505050;color:hsla(0,0%,66.7%,.6);font-size:13px;line-height:25px} |
@ -0,0 +1 @@ |
|||
.yuebon-setting-form .el-input[data-v-1d7e6f83]{width:40%}.yuebon-setting-form .el-select .el-input[data-v-1d7e6f83]{width:100%} |
@ -0,0 +1 @@ |
|||
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;-webkit-box-shadow:0 0 10px #29d,0 0 5px #29d;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translateY(-4px);transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}@keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}} |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 79 KiB |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d230fe7"],{ef3c:function(e,r,n){"use strict";n.r(r);n("5319"),n("ac1f");var t,u,a={created:function(){var e=this.$route,r=e.params,n=e.query,t=r.path;this.$router.replace({path:"/"+t,query:n})},render:function(e){return e()}},c=a,o=n("2877"),p=Object(o["a"])(c,t,u,!1,null,null,null);r["default"]=p.exports}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4c5bb48b"],{"36e6":function(t,s,a){},"4f51":function(t,s,a){t.exports=a.p+"static/img/403.4f9dbde6.png"},"7ca1":function(t,s){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAACKCAMAAABhAnODAAABzlBMVEUAAAD8/f/////////////3+v7////4+/7////////9///3+v7////////////4+v7+///////6/P/+/v/+/v/////5+/7////3+f72+v7y9/7+///7/f/////////////3+v76/P/7/f/4/P/9///////o8vz3+/73+f73+v7////4+/7////////3+//3+/7////+/v/////+/v/////o8fz9/v/p8f3o8fz3+/7////r8/33+v74+v72+v70+P7////+///3+v72+v7t9P3w9v3x9/7////+///7/f/////////////////3+v7p8v3////p8vv4+//////5+//r8/z4+//p8vz////6/P/4+v/////5/P7////8/P7////6/P/2+//8/f/////8///8///////n8fz2+v7////p8vz2+f73+v7////u9f7r9P3z+P32+f7////2+f73+v3////////2+v3////4+//t9P31+v78/P/4+//4+/7t9P35+//////////o8fz////0+P7o8fzo8fzo8Pv////z9/3o8f3z9//////w9/7w9/73+v/////p8v35/P7o8f3o8P3////n8Pv2+f3z+P4909UsAAAAlnRSTlMA/fumA/3h+PTlC/sG/vrz29a8NRLv7+fmzMJOLBj26cS+VB8O/fvp39TNwsG/u6CagmdbQP759O7s3dzZ0tDLysjIwcG/u6h1OiEB8evi4t/X1tHQ0M3GxcS4r5WNiX17c0UpJBsJ+O7t6OTc2MzKvra1raeflpBtbVtNLxX01tLDura0tKqai4WCbWZhSz4yFu/jfHnJ+3wGAAAFOElEQVR42u3cB1MTQRjG8TXehZBC6CQhkEBCbyJdelVUQDoCKiBFQJqCgoC99/qyfFshCId4yS2X3cs6k98n+E9y7HMz2QGxNpV+M8+aXTg6nuw0Ik5Mt4/fn8fH2PKKxh7FxaNQmiwZtZuwvDv21TEn0p53YmylCgfS1wuRHqQlwfmxKEfEAT2+roc9MZp9o982iwutWIkt7yocGJpGzJnjNlazMYHaxgw4MiIgljzpD90RmESEewH+cg6x4t0omseEstJccNItxMh9jEVbrbu5uakmEQfUc70cZJxHTIzjYxJrmpoLm+2dMl+ryZ0L8nTJiIF22QPU1GlPGy7Me5olHh6nsXrwK7UdUbc9r/BQ5eQNDxe6065CIB23EWVCISZg0oMCfQqi6z0mMQCKer2IpgkRE8gBAgVmRM9UFSZg7QASF6/Q26AmTKIPZDE8aB9iEnYgdBZRko5J2Axah01aMQExBjQOm67FJK6D1mFFmESNTuuwj2QvX9dA47CtCMIvUuuwomyR6KTQPGynrLrl1XBt4M8tyxWCsAOVS21t9jvYj0YIRZgks7qlzd2J/5EHIQyTVC62NvdEYEm2gY8wn8wnDkddoq/L1AschR2YW3TU22KBvzCfcl7DzoTDwmHhsHBYOCwc9r+GpUYeOitwFXbMOV7DoJjXMDjPa1hGOqdhUF7KaRgkbHEaBkmXOQ2D6G1Ow6DByGkYPOc1TBcOC4eFwwi1L1VwGDb9KRdA97S1f4arsMkbs0fvwgOt3Zl8hAmb9yzwl4Sm1u6yUIfFX7oAclzuluoQhn1dSwX/9I6WrlCEmUsaQVH0csuctmGedy4gk9HTNlipVdjEiA5OI6qvbbCCeZh3fQFUMKxYmIY5HxhAjegGAHZhQnoBqKIfsgC7sJRbkaBK0jMd0OJCJ5VejAJVEvJTgRbDO+/JT6tID6oYCq4CLVGj39BJq1gciD19W1R+B9CiW/Ogf3zG+8S607VlDEUCNSNyN92MR5dZxb7Ya0Co4QJQ8zwOybmJjxHriNpyF4CaxlIka8uET8iJVfg0YnqBmphkJE9owhKFNumYp+VCiYD82MB+9MRGgwx9owVoSVo3I3+mrNi/mrSTba4hHdCSMGYMfD9ZIt/G6Ji/GY8CSMbK7v5pM+RTPOYfpKBAjJ3Yh6At6lkH0JKxdlnxOiQpUxJQM+JECuJMmNQPoKUgDikRBjApK1DSMEF0M5/YLFARk44IeKyYVBbQoP8kIBKvMLFyCJ5r3Ux6EVjLDyzhlhGR8drIjwoIVqp0zCsaxcQSgz7mpxCxdlGrLsvZSUROqNXgyZfOU3KXMLEqCu+n5FaqMCHRAqolnRfQKe3MLC3bGD9hhmKjut8fy/qXs7GSCFBJdy4lmJ+Su1vvsgl7eTvoWwHVjhzqbxW5pXQueMw56kQsKwNUuFZyhd6VmO+OOhOdJ3/2kpny7aaKRXtE0EdF1I14Jpe6++utwTz5louXmd0HK3tSn6i2qyCO8UW16nrfMJxRMT+MwiRd9bbHKuaHYZhk97Tzw1+Yb344DNufHw7D9ueHwzD93vxwGJawPz/8hfnmh78w3/xwGJbvmx/uwg7nh7MwaX64CpPmh4EKFWHS/DBkfPQiU1XYPSdiLf7DYBlxmDQ/mvD86icLk+ZHM863XYph0vxo6sqXN5UKYdL8aMz8+XWFTJja+WH9Z7pLNj/sbX8YlAnzzU/IeX52Hws7mh8ufH3bdSzMUMzN/85DSPjzZ7rrmx++mDdfz+zs7s0Ph7yO9yjsyG/PhVsZ2R0KAAAAAABJRU5ErkJggg=="},"7fa2":function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"error-container"},[i("div",{staticClass:"error-content"},[i("el-row",{attrs:{gutter:20}},[i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"pic-error"},[i("img",{staticClass:"pic-error-parent",attrs:{alt:"403",src:a("4f51")}}),i("img",{staticClass:"pic-error-child left",attrs:{alt:"403",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"403",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"403",src:a("7ca1")}})])]),i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit-oops"},[t._v(t._s(t.oops))]),i("div",{staticClass:"bullshit-headline"},[t._v(t._s(t.headline))]),i("div",{staticClass:"bullshit-info"},[t._v(t._s(t.info))]),i("a",{staticClass:"bullshit-return-home",attrs:{href:"#/index"}},[t._v(" "+t._s(t.jumpTime)+"s "+t._s(t.btn)+" ")])])])],1)],1)])},e=[],r={name:"Page403",data:function(){return{jumpTime:5,oops:"抱歉!",headline:"您没有操作权限...",info:"当前帐号没有操作权限,请联系管理员。",btn:"返回首页",timer:0}},mounted:function(){this.timeChange()},beforeDestroy:function(){clearInterval(this.timer)},methods:{timeChange:function(){var t=this;this.timer=setInterval((function(){t.jumpTime?t.jumpTime--:(t.$router.push({path:"/"}),t.$store.dispatch("tabsBar/delOthersRoutes",{path:"/"}),clearInterval(t.timer))}),1e3)}}},l=r,o=(a("9988"),a("2877")),n=Object(o["a"])(l,i,e,!1,null,"26aead3e",null);s["default"]=n.exports},9988:function(t,s,a){"use strict";a("36e6")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4c5bb48b"],{"36e6":function(t,s,a){},"4f51":function(t,s,a){t.exports=a.p+"static/img/403.4f9dbde6.png"},"7ca1":function(t,s){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAACKCAMAAABhAnODAAABzlBMVEUAAAD8/f/////////////3+v7////4+/7////////9///3+v7////////////4+v7+///////6/P/+/v/+/v/////5+/7////3+f72+v7y9/7+///7/f/////////////3+v76/P/7/f/4/P/9///////o8vz3+/73+f73+v7////4+/7////////3+//3+/7////+/v/////+/v/////o8fz9/v/p8f3o8fz3+/7////r8/33+v74+v72+v70+P7////+///3+v72+v7t9P3w9v3x9/7////+///7/f/////////////////3+v7p8v3////p8vv4+//////5+//r8/z4+//p8vz////6/P/4+v/////5/P7////8/P7////6/P/2+//8/f/////8///8///////n8fz2+v7////p8vz2+f73+v7////u9f7r9P3z+P32+f7////2+f73+v3////////2+v3////4+//t9P31+v78/P/4+//4+/7t9P35+//////////o8fz////0+P7o8fzo8fzo8Pv////z9/3o8f3z9//////w9/7w9/73+v/////p8v35/P7o8f3o8P3////n8Pv2+f3z+P4909UsAAAAlnRSTlMA/fumA/3h+PTlC/sG/vrz29a8NRLv7+fmzMJOLBj26cS+VB8O/fvp39TNwsG/u6CagmdbQP759O7s3dzZ0tDLysjIwcG/u6h1OiEB8evi4t/X1tHQ0M3GxcS4r5WNiX17c0UpJBsJ+O7t6OTc2MzKvra1raeflpBtbVtNLxX01tLDura0tKqai4WCbWZhSz4yFu/jfHnJ+3wGAAAFOElEQVR42u3cB1MTQRjG8TXehZBC6CQhkEBCbyJdelVUQDoCKiBFQJqCgoC99/qyfFshCId4yS2X3cs6k98n+E9y7HMz2QGxNpV+M8+aXTg6nuw0Ik5Mt4/fn8fH2PKKxh7FxaNQmiwZtZuwvDv21TEn0p53YmylCgfS1wuRHqQlwfmxKEfEAT2+roc9MZp9o982iwutWIkt7yocGJpGzJnjNlazMYHaxgw4MiIgljzpD90RmESEewH+cg6x4t0omseEstJccNItxMh9jEVbrbu5uakmEQfUc70cZJxHTIzjYxJrmpoLm+2dMl+ryZ0L8nTJiIF22QPU1GlPGy7Me5olHh6nsXrwK7UdUbc9r/BQ5eQNDxe6065CIB23EWVCISZg0oMCfQqi6z0mMQCKer2IpgkRE8gBAgVmRM9UFSZg7QASF6/Q26AmTKIPZDE8aB9iEnYgdBZRko5J2Axah01aMQExBjQOm67FJK6D1mFFmESNTuuwj2QvX9dA47CtCMIvUuuwomyR6KTQPGynrLrl1XBt4M8tyxWCsAOVS21t9jvYj0YIRZgks7qlzd2J/5EHIQyTVC62NvdEYEm2gY8wn8wnDkddoq/L1AschR2YW3TU22KBvzCfcl7DzoTDwmHhsHBYOCwc9r+GpUYeOitwFXbMOV7DoJjXMDjPa1hGOqdhUF7KaRgkbHEaBkmXOQ2D6G1Ow6DByGkYPOc1TBcOC4eFwwi1L1VwGDb9KRdA97S1f4arsMkbs0fvwgOt3Zl8hAmb9yzwl4Sm1u6yUIfFX7oAclzuluoQhn1dSwX/9I6WrlCEmUsaQVH0csuctmGedy4gk9HTNlipVdjEiA5OI6qvbbCCeZh3fQFUMKxYmIY5HxhAjegGAHZhQnoBqKIfsgC7sJRbkaBK0jMd0OJCJ5VejAJVEvJTgRbDO+/JT6tID6oYCq4CLVGj39BJq1gciD19W1R+B9CiW/Ogf3zG+8S607VlDEUCNSNyN92MR5dZxb7Ya0Co4QJQ8zwOybmJjxHriNpyF4CaxlIka8uET8iJVfg0YnqBmphkJE9owhKFNumYp+VCiYD82MB+9MRGgwx9owVoSVo3I3+mrNi/mrSTba4hHdCSMGYMfD9ZIt/G6Ji/GY8CSMbK7v5pM+RTPOYfpKBAjJ3Yh6At6lkH0JKxdlnxOiQpUxJQM+JECuJMmNQPoKUgDikRBjApK1DSMEF0M5/YLFARk44IeKyYVBbQoP8kIBKvMLFyCJ5r3Ux6EVjLDyzhlhGR8drIjwoIVqp0zCsaxcQSgz7mpxCxdlGrLsvZSUROqNXgyZfOU3KXMLEqCu+n5FaqMCHRAqolnRfQKe3MLC3bGD9hhmKjut8fy/qXs7GSCFBJdy4lmJ+Su1vvsgl7eTvoWwHVjhzqbxW5pXQueMw56kQsKwNUuFZyhd6VmO+OOhOdJ3/2kpny7aaKRXtE0EdF1I14Jpe6++utwTz5louXmd0HK3tSn6i2qyCO8UW16nrfMJxRMT+MwiRd9bbHKuaHYZhk97Tzw1+Yb344DNufHw7D9ueHwzD93vxwGJawPz/8hfnmh78w3/xwGJbvmx/uwg7nh7MwaX64CpPmh4EKFWHS/DBkfPQiU1XYPSdiLf7DYBlxmDQ/mvD86icLk+ZHM863XYph0vxo6sqXN5UKYdL8aMz8+XWFTJja+WH9Z7pLNj/sbX8YlAnzzU/IeX52Hws7mh8ufH3bdSzMUMzN/85DSPjzZ7rrmx++mDdfz+zs7s0Ph7yO9yjsyG/PhVsZ2R0KAAAAAABJRU5ErkJggg=="},"7fa2":function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"error-container"},[i("div",{staticClass:"error-content"},[i("el-row",{attrs:{gutter:20}},[i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"pic-error"},[i("img",{staticClass:"pic-error-parent",attrs:{alt:"403",src:a("4f51")}}),i("img",{staticClass:"pic-error-child left",attrs:{alt:"403",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"403",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"403",src:a("7ca1")}})])]),i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit-oops"},[t._v(t._s(t.oops))]),i("div",{staticClass:"bullshit-headline"},[t._v(t._s(t.headline))]),i("div",{staticClass:"bullshit-info"},[t._v(t._s(t.info))]),i("a",{staticClass:"bullshit-return-home",attrs:{href:"#/index"}},[t._v(" "+t._s(t.jumpTime)+"s "+t._s(t.btn)+" ")])])])],1)],1)])},e=[],r={name:"Page403",data:function(){return{jumpTime:5,oops:"抱歉!",headline:"您没有操作权限...",info:"当前帐号没有操作权限,请联系管理员。",btn:"返回首页",timer:0}},mounted:function(){this.timeChange()},beforeDestroy:function(){clearInterval(this.timer)},methods:{timeChange:function(){var t=this;this.timer=setInterval((function(){t.jumpTime?t.jumpTime--:(t.$router.push({path:"/"}),t.$store.dispatch("tabsBar/delOthersRoutes",{path:"/"}),clearInterval(t.timer))}),1e3)}}},l=r,o=(a("9988"),a("2877")),n=Object(o["a"])(l,i,e,!1,null,"26aead3e",null);s["default"]=n.exports},9988:function(t,s,a){"use strict";a("36e6")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-a62782ca"],{2754:function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"error-container"},[i("div",{staticClass:"error-content"},[i("el-row",{attrs:{gutter:20}},[i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"pic-error"},[i("img",{staticClass:"pic-error-parent",attrs:{alt:"401",src:a("2adf")}}),i("img",{staticClass:"pic-error-child left",attrs:{alt:"401",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"401",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"401",src:a("7ca1")}})])]),i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit-oops"},[t._v(t._s(t.oops))]),i("div",{staticClass:"bullshit-headline"},[t._v(t._s(t.headline))]),i("div",{staticClass:"bullshit-info"},[t._v(t._s(t.info))]),i("a",{staticClass:"bullshit-return-home",attrs:{href:"#/index"}},[t._v(" "+t._s(t.jumpTime)+"s "+t._s(t.btn)+" ")])])])],1)],1)])},r=[],e={name:"Page404",data:function(){return{jumpTime:5,oops:"抱歉!",headline:"当前页面不存在...",info:"请检查您输入的网址是否正确,或点击下面的按钮返回首页。",btn:"返回首页",timer:0}},mounted:function(){this.timeChange()},beforeDestroy:function(){clearInterval(this.timer)},methods:{timeChange:function(){var t=this;this.timer=setInterval((function(){t.jumpTime?t.jumpTime--:(t.$router.push({path:"/"}),t.$store.dispatch("tabsBar/delOthersRoutes",{path:"/"}),clearInterval(t.timer))}),1e3)}}},l=e,o=(a("ca72"),a("2877")),c=Object(o["a"])(l,i,r,!1,null,"4cb04f5d",null);s["default"]=c.exports},"2adf":function(t,s,a){t.exports=a.p+"static/img/404.f5eb55f0.png"},"78ad":function(t,s,a){},"7ca1":function(t,s){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAACKCAMAAABhAnODAAABzlBMVEUAAAD8/f/////////////3+v7////4+/7////////9///3+v7////////////4+v7+///////6/P/+/v/+/v/////5+/7////3+f72+v7y9/7+///7/f/////////////3+v76/P/7/f/4/P/9///////o8vz3+/73+f73+v7////4+/7////////3+//3+/7////+/v/////+/v/////o8fz9/v/p8f3o8fz3+/7////r8/33+v74+v72+v70+P7////+///3+v72+v7t9P3w9v3x9/7////+///7/f/////////////////3+v7p8v3////p8vv4+//////5+//r8/z4+//p8vz////6/P/4+v/////5/P7////8/P7////6/P/2+//8/f/////8///8///////n8fz2+v7////p8vz2+f73+v7////u9f7r9P3z+P32+f7////2+f73+v3////////2+v3////4+//t9P31+v78/P/4+//4+/7t9P35+//////////o8fz////0+P7o8fzo8fzo8Pv////z9/3o8f3z9//////w9/7w9/73+v/////p8v35/P7o8f3o8P3////n8Pv2+f3z+P4909UsAAAAlnRSTlMA/fumA/3h+PTlC/sG/vrz29a8NRLv7+fmzMJOLBj26cS+VB8O/fvp39TNwsG/u6CagmdbQP759O7s3dzZ0tDLysjIwcG/u6h1OiEB8evi4t/X1tHQ0M3GxcS4r5WNiX17c0UpJBsJ+O7t6OTc2MzKvra1raeflpBtbVtNLxX01tLDura0tKqai4WCbWZhSz4yFu/jfHnJ+3wGAAAFOElEQVR42u3cB1MTQRjG8TXehZBC6CQhkEBCbyJdelVUQDoCKiBFQJqCgoC99/qyfFshCId4yS2X3cs6k98n+E9y7HMz2QGxNpV+M8+aXTg6nuw0Ik5Mt4/fn8fH2PKKxh7FxaNQmiwZtZuwvDv21TEn0p53YmylCgfS1wuRHqQlwfmxKEfEAT2+roc9MZp9o982iwutWIkt7yocGJpGzJnjNlazMYHaxgw4MiIgljzpD90RmESEewH+cg6x4t0omseEstJccNItxMh9jEVbrbu5uakmEQfUc70cZJxHTIzjYxJrmpoLm+2dMl+ryZ0L8nTJiIF22QPU1GlPGy7Me5olHh6nsXrwK7UdUbc9r/BQ5eQNDxe6065CIB23EWVCISZg0oMCfQqi6z0mMQCKer2IpgkRE8gBAgVmRM9UFSZg7QASF6/Q26AmTKIPZDE8aB9iEnYgdBZRko5J2Axah01aMQExBjQOm67FJK6D1mFFmESNTuuwj2QvX9dA47CtCMIvUuuwomyR6KTQPGynrLrl1XBt4M8tyxWCsAOVS21t9jvYj0YIRZgks7qlzd2J/5EHIQyTVC62NvdEYEm2gY8wn8wnDkddoq/L1AschR2YW3TU22KBvzCfcl7DzoTDwmHhsHBYOCwc9r+GpUYeOitwFXbMOV7DoJjXMDjPa1hGOqdhUF7KaRgkbHEaBkmXOQ2D6G1Ow6DByGkYPOc1TBcOC4eFwwi1L1VwGDb9KRdA97S1f4arsMkbs0fvwgOt3Zl8hAmb9yzwl4Sm1u6yUIfFX7oAclzuluoQhn1dSwX/9I6WrlCEmUsaQVH0csuctmGedy4gk9HTNlipVdjEiA5OI6qvbbCCeZh3fQFUMKxYmIY5HxhAjegGAHZhQnoBqKIfsgC7sJRbkaBK0jMd0OJCJ5VejAJVEvJTgRbDO+/JT6tID6oYCq4CLVGj39BJq1gciD19W1R+B9CiW/Ogf3zG+8S607VlDEUCNSNyN92MR5dZxb7Ya0Co4QJQ8zwOybmJjxHriNpyF4CaxlIka8uET8iJVfg0YnqBmphkJE9owhKFNumYp+VCiYD82MB+9MRGgwx9owVoSVo3I3+mrNi/mrSTba4hHdCSMGYMfD9ZIt/G6Ji/GY8CSMbK7v5pM+RTPOYfpKBAjJ3Yh6At6lkH0JKxdlnxOiQpUxJQM+JECuJMmNQPoKUgDikRBjApK1DSMEF0M5/YLFARk44IeKyYVBbQoP8kIBKvMLFyCJ5r3Ux6EVjLDyzhlhGR8drIjwoIVqp0zCsaxcQSgz7mpxCxdlGrLsvZSUROqNXgyZfOU3KXMLEqCu+n5FaqMCHRAqolnRfQKe3MLC3bGD9hhmKjut8fy/qXs7GSCFBJdy4lmJ+Su1vvsgl7eTvoWwHVjhzqbxW5pXQueMw56kQsKwNUuFZyhd6VmO+OOhOdJ3/2kpny7aaKRXtE0EdF1I14Jpe6++utwTz5louXmd0HK3tSn6i2qyCO8UW16nrfMJxRMT+MwiRd9bbHKuaHYZhk97Tzw1+Yb344DNufHw7D9ueHwzD93vxwGJawPz/8hfnmh78w3/xwGJbvmx/uwg7nh7MwaX64CpPmh4EKFWHS/DBkfPQiU1XYPSdiLf7DYBlxmDQ/mvD86icLk+ZHM863XYph0vxo6sqXN5UKYdL8aMz8+XWFTJja+WH9Z7pLNj/sbX8YlAnzzU/IeX52Hws7mh8ufH3bdSzMUMzN/85DSPjzZ7rrmx++mDdfz+zs7s0Ph7yO9yjsyG/PhVsZ2R0KAAAAAABJRU5ErkJggg=="},ca72:function(t,s,a){"use strict";a("78ad")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-a62782ca"],{2754:function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"error-container"},[i("div",{staticClass:"error-content"},[i("el-row",{attrs:{gutter:20}},[i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"pic-error"},[i("img",{staticClass:"pic-error-parent",attrs:{alt:"401",src:a("2adf")}}),i("img",{staticClass:"pic-error-child left",attrs:{alt:"401",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"401",src:a("7ca1")}}),i("img",{staticClass:"pic-error-child",attrs:{alt:"401",src:a("7ca1")}})])]),i("el-col",{attrs:{xs:24,sm:24,md:12,lg:12,xl:12}},[i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit-oops"},[t._v(t._s(t.oops))]),i("div",{staticClass:"bullshit-headline"},[t._v(t._s(t.headline))]),i("div",{staticClass:"bullshit-info"},[t._v(t._s(t.info))]),i("a",{staticClass:"bullshit-return-home",attrs:{href:"#/index"}},[t._v(" "+t._s(t.jumpTime)+"s "+t._s(t.btn)+" ")])])])],1)],1)])},r=[],e={name:"Page404",data:function(){return{jumpTime:5,oops:"抱歉!",headline:"当前页面不存在...",info:"请检查您输入的网址是否正确,或点击下面的按钮返回首页。",btn:"返回首页",timer:0}},mounted:function(){this.timeChange()},beforeDestroy:function(){clearInterval(this.timer)},methods:{timeChange:function(){var t=this;this.timer=setInterval((function(){t.jumpTime?t.jumpTime--:(t.$router.push({path:"/"}),t.$store.dispatch("tabsBar/delOthersRoutes",{path:"/"}),clearInterval(t.timer))}),1e3)}}},l=e,o=(a("ca72"),a("2877")),c=Object(o["a"])(l,i,r,!1,null,"4cb04f5d",null);s["default"]=c.exports},"2adf":function(t,s,a){t.exports=a.p+"static/img/404.f5eb55f0.png"},"78ad":function(t,s,a){},"7ca1":function(t,s){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJgAAACKCAMAAABhAnODAAABzlBMVEUAAAD8/f/////////////3+v7////4+/7////////9///3+v7////////////4+v7+///////6/P/+/v/+/v/////5+/7////3+f72+v7y9/7+///7/f/////////////3+v76/P/7/f/4/P/9///////o8vz3+/73+f73+v7////4+/7////////3+//3+/7////+/v/////+/v/////o8fz9/v/p8f3o8fz3+/7////r8/33+v74+v72+v70+P7////+///3+v72+v7t9P3w9v3x9/7////+///7/f/////////////////3+v7p8v3////p8vv4+//////5+//r8/z4+//p8vz////6/P/4+v/////5/P7////8/P7////6/P/2+//8/f/////8///8///////n8fz2+v7////p8vz2+f73+v7////u9f7r9P3z+P32+f7////2+f73+v3////////2+v3////4+//t9P31+v78/P/4+//4+/7t9P35+//////////o8fz////0+P7o8fzo8fzo8Pv////z9/3o8f3z9//////w9/7w9/73+v/////p8v35/P7o8f3o8P3////n8Pv2+f3z+P4909UsAAAAlnRSTlMA/fumA/3h+PTlC/sG/vrz29a8NRLv7+fmzMJOLBj26cS+VB8O/fvp39TNwsG/u6CagmdbQP759O7s3dzZ0tDLysjIwcG/u6h1OiEB8evi4t/X1tHQ0M3GxcS4r5WNiX17c0UpJBsJ+O7t6OTc2MzKvra1raeflpBtbVtNLxX01tLDura0tKqai4WCbWZhSz4yFu/jfHnJ+3wGAAAFOElEQVR42u3cB1MTQRjG8TXehZBC6CQhkEBCbyJdelVUQDoCKiBFQJqCgoC99/qyfFshCId4yS2X3cs6k98n+E9y7HMz2QGxNpV+M8+aXTg6nuw0Ik5Mt4/fn8fH2PKKxh7FxaNQmiwZtZuwvDv21TEn0p53YmylCgfS1wuRHqQlwfmxKEfEAT2+roc9MZp9o982iwutWIkt7yocGJpGzJnjNlazMYHaxgw4MiIgljzpD90RmESEewH+cg6x4t0omseEstJccNItxMh9jEVbrbu5uakmEQfUc70cZJxHTIzjYxJrmpoLm+2dMl+ryZ0L8nTJiIF22QPU1GlPGy7Me5olHh6nsXrwK7UdUbc9r/BQ5eQNDxe6065CIB23EWVCISZg0oMCfQqi6z0mMQCKer2IpgkRE8gBAgVmRM9UFSZg7QASF6/Q26AmTKIPZDE8aB9iEnYgdBZRko5J2Axah01aMQExBjQOm67FJK6D1mFFmESNTuuwj2QvX9dA47CtCMIvUuuwomyR6KTQPGynrLrl1XBt4M8tyxWCsAOVS21t9jvYj0YIRZgks7qlzd2J/5EHIQyTVC62NvdEYEm2gY8wn8wnDkddoq/L1AschR2YW3TU22KBvzCfcl7DzoTDwmHhsHBYOCwc9r+GpUYeOitwFXbMOV7DoJjXMDjPa1hGOqdhUF7KaRgkbHEaBkmXOQ2D6G1Ow6DByGkYPOc1TBcOC4eFwwi1L1VwGDb9KRdA97S1f4arsMkbs0fvwgOt3Zl8hAmb9yzwl4Sm1u6yUIfFX7oAclzuluoQhn1dSwX/9I6WrlCEmUsaQVH0csuctmGedy4gk9HTNlipVdjEiA5OI6qvbbCCeZh3fQFUMKxYmIY5HxhAjegGAHZhQnoBqKIfsgC7sJRbkaBK0jMd0OJCJ5VejAJVEvJTgRbDO+/JT6tID6oYCq4CLVGj39BJq1gciD19W1R+B9CiW/Ogf3zG+8S607VlDEUCNSNyN92MR5dZxb7Ya0Co4QJQ8zwOybmJjxHriNpyF4CaxlIka8uET8iJVfg0YnqBmphkJE9owhKFNumYp+VCiYD82MB+9MRGgwx9owVoSVo3I3+mrNi/mrSTba4hHdCSMGYMfD9ZIt/G6Ji/GY8CSMbK7v5pM+RTPOYfpKBAjJ3Yh6At6lkH0JKxdlnxOiQpUxJQM+JECuJMmNQPoKUgDikRBjApK1DSMEF0M5/YLFARk44IeKyYVBbQoP8kIBKvMLFyCJ5r3Ux6EVjLDyzhlhGR8drIjwoIVqp0zCsaxcQSgz7mpxCxdlGrLsvZSUROqNXgyZfOU3KXMLEqCu+n5FaqMCHRAqolnRfQKe3MLC3bGD9hhmKjut8fy/qXs7GSCFBJdy4lmJ+Su1vvsgl7eTvoWwHVjhzqbxW5pXQueMw56kQsKwNUuFZyhd6VmO+OOhOdJ3/2kpny7aaKRXtE0EdF1I14Jpe6++utwTz5louXmd0HK3tSn6i2qyCO8UW16nrfMJxRMT+MwiRd9bbHKuaHYZhk97Tzw1+Yb344DNufHw7D9ueHwzD93vxwGJawPz/8hfnmh78w3/xwGJbvmx/uwg7nh7MwaX64CpPmh4EKFWHS/DBkfPQiU1XYPSdiLf7DYBlxmDQ/mvD86icLk+ZHM863XYph0vxo6sqXN5UKYdL8aMz8+XWFTJja+WH9Z7pLNj/sbX8YlAnzzU/IeX52Hws7mh8ufH3bdSzMUMzN/85DSPjzZ7rrmx++mDdfz+zs7s0Ph7yO9yjsyG/PhVsZ2R0KAAAAAABJRU5ErkJggg=="},ca72:function(t,s,a){"use strict";a("78ad")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c1d32c04"],{2017:function(e,t,o){"use strict";o("cafe")},"28fd":function(e,t,o){e.exports=o.p+"static/img/login-logo.79965e0d.png"},"76dc":function(e,t,o){},"9ed6":function(e,t,o){"use strict";o.r(t);var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"login-container"},[e.isShow?o("el-form",{ref:"loginForm",staticClass:"login-form",attrs:{model:e.loginForm,rules:e.loginRules,"auto-complete":"on","label-position":"left"}},[o("div",{staticClass:"title-container"},[o("h3",{staticClass:"title"},[e._v(e._s(e.softName))])]),o("div",{staticClass:"logo-container"},[o("img",{attrs:{src:e.companyLogo,width:"220",height:"40"}})]),o("el-form-item",{attrs:{prop:"username"}},[o("span",{staticClass:"svg-container"},[o("svg-icon",{attrs:{"icon-class":"user"}})],1),o("el-input",{ref:"username",attrs:{placeholder:"登录账号",name:"username",type:"text",tabindex:"1",maxlength:"12","auto-complete":"on"},model:{value:e.loginForm.username,callback:function(t){e.$set(e.loginForm,"username",t)},expression:"loginForm.username"}})],1),o("el-form-item",{attrs:{prop:"password"}},[o("span",{staticClass:"svg-container"},[o("svg-icon",{attrs:{"icon-class":"auth"}})],1),o("el-input",{key:e.passwordType,ref:"password",attrs:{type:e.passwordType,placeholder:"密码",maxlength:"12",name:"password",tabindex:"2","auto-complete":"on"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleLogin(t)}},model:{value:e.loginForm.password,callback:function(t){e.$set(e.loginForm,"password",t)},expression:"loginForm.password"}}),o("span",{staticClass:"show-pwd",on:{click:e.showPwd}},[o("svg-icon",{attrs:{"icon-class":"password"===e.passwordType?"eye":"eye-open"}})],1)],1),o("el-button",{staticStyle:{width:"100%","margin-bottom":"30px"},attrs:{loading:e.loading,type:"primary"},nativeOn:{click:function(t){return t.preventDefault(),e.handleLogin(t)}}},[e._v("登录")]),o("div",{staticClass:"tips"})],1):e._e(),o("div",{staticClass:"footer",attrs:{id:"footer",role:"contentinfo"}},[o("div",{staticClass:"footerNodelf text-secondary"},[o("span",[e._v("本软件使用权属于:"+e._s(e.companyName)+"test")])]),o("div",{staticClass:"footerNode text-secondary"},[o("span",{domProps:{innerHTML:e._s(e.copyRight)}},[e._v(e._s(e.copyRight))])])])],1)},s=[],a=(o("13d5"),o("b64b"),o("5f87")),r=o("ae0d"),i=o("5c96"),c=o("83d6"),d=o.n(c),l={name:"Login",data:function(){var e=function(e,t,o){t.length<1?o(new Error("请输入登录账号!")):o()},t=function(e,t,o){t.length<6?o(new Error("请输入您的账号密码,且不小于6位!")):o()};return{loginForm:{username:"",password:"",appId:d.a.appId,systemCode:d.a.activeSystemCode},loginRules:{username:[{required:!0,trigger:"blur",validator:e}],password:[{required:!0,trigger:"blur",validator:t}]},loading:!1,passwordType:"password",verifyCodeUrl:"",redirect:void 0,softName:"管理系统",companyLogo:o("28fd"),companyName:"",copyRight:"",pageLoading:"",isShow:!1,otherQuery:{}}},watch:{$route:{handler:function(e){var t=e.query;t&&(this.redirect=t.redirect,this.otherQuery=this.getOtherQuery(t))},immediate:!0}},created:function(){var e={lock:!0,text:"正在初始化...",spinner:"el-icon-loading",background:"rgba(0, 0, 0, 0.7)"};this.pageLoading=i["Loading"].service(e),this.loadToken()},mounted:function(){},methods:{loadToken:function(){var e=this;Object(r["i"])().then((function(t){Object(a["c"])(t.ResData.AccessToken),Object(r["g"])().then((function(t){e.softName=t.ResData.SoftName,e.companyLogo=t.ResData.SysLogo,e.companyName=t.ResData.CompanyName,e.copyRight=t.ResData.CopyRight})),e.pageLoading.close(),e.isShow=!0}))},showPwd:function(){var e=this;"password"===this.passwordType?this.passwordType="":this.passwordType="password",this.$nextTick((function(){e.$refs.password.focus()}))},handleLogin:function(){var e=this;this.$refs.loginForm.validate((function(t){if(!t)return!1;e.loading=!0,e.$store.dispatch("user/userlogin",e.loginForm).then((function(t){e.$router.push({path:e.redirect||"/",query:e.otherQuery}),e.loading=!1})).catch((function(t){e.loading=!1}))}))},getOtherQuery:function(e){return Object.keys(e).reduce((function(t,o){return"redirect"!==o&&(t[o]=e[o]),t}),{})}}},p=l,u=(o("2017"),o("dd3e"),o("2877")),g=Object(u["a"])(p,n,s,!1,null,"5b388254",null);t["default"]=g.exports},cafe:function(e,t,o){},dd3e:function(e,t,o){"use strict";o("76dc")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c1d32c04"],{2017:function(e,t,o){"use strict";o("cafe")},"28fd":function(e,t,o){e.exports=o.p+"static/img/login-logo.79965e0d.png"},"76dc":function(e,t,o){},"9ed6":function(e,t,o){"use strict";o.r(t);var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"login-container"},[e.isShow?o("el-form",{ref:"loginForm",staticClass:"login-form",attrs:{model:e.loginForm,rules:e.loginRules,"auto-complete":"on","label-position":"left"}},[o("div",{staticClass:"title-container"},[o("h3",{staticClass:"title"},[e._v(e._s(e.softName))])]),o("div",{staticClass:"logo-container"},[o("img",{attrs:{src:e.companyLogo,width:"220",height:"40"}})]),o("el-form-item",{attrs:{prop:"username"}},[o("span",{staticClass:"svg-container"},[o("svg-icon",{attrs:{"icon-class":"user"}})],1),o("el-input",{ref:"username",attrs:{placeholder:"登录账号",name:"username",type:"text",tabindex:"1",maxlength:"12","auto-complete":"on"},model:{value:e.loginForm.username,callback:function(t){e.$set(e.loginForm,"username",t)},expression:"loginForm.username"}})],1),o("el-form-item",{attrs:{prop:"password"}},[o("span",{staticClass:"svg-container"},[o("svg-icon",{attrs:{"icon-class":"auth"}})],1),o("el-input",{key:e.passwordType,ref:"password",attrs:{type:e.passwordType,placeholder:"密码",maxlength:"12",name:"password",tabindex:"2","auto-complete":"on"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleLogin(t)}},model:{value:e.loginForm.password,callback:function(t){e.$set(e.loginForm,"password",t)},expression:"loginForm.password"}}),o("span",{staticClass:"show-pwd",on:{click:e.showPwd}},[o("svg-icon",{attrs:{"icon-class":"password"===e.passwordType?"eye":"eye-open"}})],1)],1),o("el-button",{staticStyle:{width:"100%","margin-bottom":"30px"},attrs:{loading:e.loading,type:"primary"},nativeOn:{click:function(t){return t.preventDefault(),e.handleLogin(t)}}},[e._v("登录")]),o("div",{staticClass:"tips"})],1):e._e(),o("div",{staticClass:"footer",attrs:{id:"footer",role:"contentinfo"}},[o("div",{staticClass:"footerNodelf text-secondary"},[o("span",[e._v("本软件使用权属于:"+e._s(e.companyName)+"test")])]),o("div",{staticClass:"footerNode text-secondary"},[o("span",{domProps:{innerHTML:e._s(e.copyRight)}},[e._v(e._s(e.copyRight))])])])],1)},s=[],a=(o("13d5"),o("b64b"),o("5f87")),r=o("ae0d"),i=o("5c96"),c=o("83d6"),d=o.n(c),l={name:"Login",data:function(){var e=function(e,t,o){t.length<1?o(new Error("请输入登录账号!")):o()},t=function(e,t,o){t.length<6?o(new Error("请输入您的账号密码,且不小于6位!")):o()};return{loginForm:{username:"",password:"",appId:d.a.appId,systemCode:d.a.activeSystemCode},loginRules:{username:[{required:!0,trigger:"blur",validator:e}],password:[{required:!0,trigger:"blur",validator:t}]},loading:!1,passwordType:"password",verifyCodeUrl:"",redirect:void 0,softName:"管理系统",companyLogo:o("28fd"),companyName:"",copyRight:"",pageLoading:"",isShow:!1,otherQuery:{}}},watch:{$route:{handler:function(e){var t=e.query;t&&(this.redirect=t.redirect,this.otherQuery=this.getOtherQuery(t))},immediate:!0}},created:function(){var e={lock:!0,text:"正在初始化...",spinner:"el-icon-loading",background:"rgba(0, 0, 0, 0.7)"};this.pageLoading=i["Loading"].service(e),this.loadToken()},mounted:function(){},methods:{loadToken:function(){var e=this;Object(r["h"])().then((function(t){Object(a["c"])(t.ResData.AccessToken),Object(r["f"])().then((function(t){e.softName=t.ResData.SoftName,e.companyLogo=t.ResData.SysLogo,e.companyName=t.ResData.CompanyName,e.copyRight=t.ResData.CopyRight})),e.pageLoading.close(),e.isShow=!0}))},showPwd:function(){var e=this;"password"===this.passwordType?this.passwordType="":this.passwordType="password",this.$nextTick((function(){e.$refs.password.focus()}))},handleLogin:function(){var e=this;this.$refs.loginForm.validate((function(t){if(!t)return!1;e.loading=!0,e.$store.dispatch("user/userlogin",e.loginForm).then((function(t){e.$router.push({path:e.redirect||"/",query:e.otherQuery}),e.loading=!1})).catch((function(t){e.loading=!1}))}))},getOtherQuery:function(e){return Object.keys(e).reduce((function(t,o){return"redirect"!==o&&(t[o]=e[o]),t}),{})}}},p=l,u=(o("2017"),o("dd3e"),o("2877")),g=Object(u["a"])(p,n,s,!1,null,"5b388254",null);t["default"]=g.exports},cafe:function(e,t,o){},dd3e:function(e,t,o){"use strict";o("76dc")}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-ed02f908"],{"0b6a":function(e,r,s){"use strict";s("a804")},"3e70":function(e,r,s){"use strict";s.r(r);var t=function(){var e=this,r=e.$createElement,s=e._self._c||r;return s("div",{staticClass:"app-container"},[s("el-tabs",{attrs:{type:"border-card"},model:{value:e.activeName,callback:function(r){e.activeName=r},expression:"activeName"}},[s("el-tab-pane",{attrs:{label:"修改密码",name:"first"}},[s("el-form",{ref:"editFrom",staticClass:"yuebon-setting-form",attrs:{model:e.editFrom,rules:e.rules}},[s("el-form-item",{attrs:{label:"原密码","label-width":e.formLabelWidth,prop:"OldPassword"}},[s("el-input",{attrs:{type:"password",placeholder:"请输入原密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.OldPassword,callback:function(r){e.$set(e.editFrom,"OldPassword",r)},expression:"editFrom.OldPassword"}})],1),s("el-form-item",{attrs:{label:"新密码","label-width":e.formLabelWidth,prop:"NewPassword"}},[s("el-input",{attrs:{type:"password",placeholder:"请输入新密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.NewPassword,callback:function(r){e.$set(e.editFrom,"NewPassword",r)},expression:"editFrom.NewPassword"}})],1),s("el-form-item",{attrs:{label:"再输入一次","label-width":e.formLabelWidth,prop:"NewPassword2"}},[s("el-input",{attrs:{type:"password",placeholder:"请再输入一次新密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.NewPassword2,callback:function(r){e.$set(e.editFrom,"NewPassword2",r)},expression:"editFrom.NewPassword2"}})],1),s("el-form-item",[s("el-button",{attrs:{type:"primary"},on:{click:function(r){return e.saveEditForm()}}},[e._v("保 存")])],1)],1)],1)],1)],1)},a=[],o=s("da02"),l={name:"Usercentermodify",data:function(){return{activeName:"first",editFrom:{OldPassword:"",NewPassword:"",NewPassword2:""},rules:{OldPassword:[{required:!0,message:"请输入原密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}],NewPassword:[{required:!0,message:"请输入新密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}],NewPassword2:[{required:!0,message:"请再输入一次新密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}]},formLabelWidth:"100px"}},methods:{saveEditForm:function(){var e=this;this.$refs["editFrom"].validate((function(r){if(!r)return!1;var s={oldpassword:e.editFrom.OldPassword,password:e.editFrom.NewPassword,password2:e.editFrom.NewPassword2};Object(o["e"])(s).then((function(r){r.Success?(e.$message({message:"恭喜你,操作成功",type:"success"}),e.$refs["editFrom"].resetFields()):e.$message({message:r.ErrMsg,type:"error"})}))}))}}},d=l,i=(s("0b6a"),s("2877")),m=Object(i["a"])(d,t,a,!1,null,"1d7e6f83",null);r["default"]=m.exports},a804:function(e,r,s){}}]); |
@ -0,0 +1 @@ |
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-ed02f908"],{"0b6a":function(e,r,s){"use strict";s("a804")},"3e70":function(e,r,s){"use strict";s.r(r);var t=function(){var e=this,r=e.$createElement,s=e._self._c||r;return s("div",{staticClass:"app-container"},[s("el-tabs",{attrs:{type:"border-card"},model:{value:e.activeName,callback:function(r){e.activeName=r},expression:"activeName"}},[s("el-tab-pane",{attrs:{label:"修改密码",name:"first"}},[s("el-form",{ref:"editFrom",staticClass:"yuebon-setting-form",attrs:{model:e.editFrom,rules:e.rules}},[s("el-form-item",{attrs:{label:"原密码","label-width":e.formLabelWidth,prop:"OldPassword"}},[s("el-input",{attrs:{type:"password",placeholder:"请输入原密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.OldPassword,callback:function(r){e.$set(e.editFrom,"OldPassword",r)},expression:"editFrom.OldPassword"}})],1),s("el-form-item",{attrs:{label:"新密码","label-width":e.formLabelWidth,prop:"NewPassword"}},[s("el-input",{attrs:{type:"password",placeholder:"请输入新密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.NewPassword,callback:function(r){e.$set(e.editFrom,"NewPassword",r)},expression:"editFrom.NewPassword"}})],1),s("el-form-item",{attrs:{label:"再输入一次","label-width":e.formLabelWidth,prop:"NewPassword2"}},[s("el-input",{attrs:{type:"password",placeholder:"请再输入一次新密码",autocomplete:"off",clearable:""},model:{value:e.editFrom.NewPassword2,callback:function(r){e.$set(e.editFrom,"NewPassword2",r)},expression:"editFrom.NewPassword2"}})],1),s("el-form-item",[s("el-button",{attrs:{type:"primary"},on:{click:function(r){return e.saveEditForm()}}},[e._v("保 存")])],1)],1)],1)],1)],1)},a=[],o=s("da02"),l={name:"Usercentermodify",data:function(){return{activeName:"first",editFrom:{OldPassword:"",NewPassword:"",NewPassword2:""},rules:{OldPassword:[{required:!0,message:"请输入原密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}],NewPassword:[{required:!0,message:"请输入新密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}],NewPassword2:[{required:!0,message:"请再输入一次新密码",trigger:"blur"},{min:6,max:50,message:"长度在 6 到 32 个字符",trigger:"blur"}]},formLabelWidth:"100px"}},methods:{saveEditForm:function(){var e=this;this.$refs["editFrom"].validate((function(r){if(!r)return!1;var s={oldpassword:e.editFrom.OldPassword,password:e.editFrom.NewPassword,password2:e.editFrom.NewPassword2};Object(o["e"])(s).then((function(r){r.Success?(e.$message({message:"恭喜你,操作成功",type:"success"}),e.$refs["editFrom"].resetFields()):e.$message({message:r.ErrMsg,type:"error"})}))}))}}},d=l,i=(s("0b6a"),s("2877")),m=Object(i["a"])(d,t,a,!1,null,"1d7e6f83",null);r["default"]=m.exports},a804:function(e,r,s){}}]); |
@ -0,0 +1,92 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
*/ |
|||
/** |
|||
* Jquery integration plugin. |
|||
* |
|||
* @class tinymce.core.JqueryIntegration |
|||
* @private |
|||
*/ |
|||
!function(){var f,c,u,s=[],p="undefined"!=typeof global?global:window,d=p.jQuery,v=function(){ |
|||
// Reference to tinymce needs to be lazily evaluated since tinymce
|
|||
// might be loaded through the compressor or other means
|
|||
return p.tinymce};d.fn.tinymce=function(o){var e,t,i,l=this,r=""; |
|||
// No match then just ignore the call
|
|||
if(!l.length)return l; |
|||
// Get editor instance
|
|||
if(!o)return v()?v().get(l[0].id):null;l.css("visibility","hidden");// Hide textarea to avoid flicker
|
|||
var n,a=function(){var a=[],c=0; |
|||
// Apply patches to the jQuery object, only once
|
|||
u||(m(),u=!0), |
|||
// Create an editor instance for each matched node
|
|||
l.each(function(e,t){var n,i=t.id,r=o.oninit; |
|||
// Generate unique id for target element if needed
|
|||
i||(t.id=i=v().DOM.uniqueId()), |
|||
// Only init the editor once
|
|||
v().get(i)||( |
|||
// Create editor instance and render it
|
|||
n=v().createEditor(i,o),a.push(n),n.on("init",function(){var e,t=r;l.css("visibility",""), |
|||
// Run this if the oninit setting is defined
|
|||
// this logic will fire the oninit callback ones each
|
|||
// matched editor instance is initialized
|
|||
r&&++c==a.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:v().resolve(t.replace(/\.\w+$/,"")),t=v().resolve(t)), |
|||
// Call the oninit function with the object
|
|||
t.apply(e||v(),a))}))}), |
|||
// Render the editor instances in a separate loop since we
|
|||
// need to have the full editors array used in the onInit calls
|
|||
d.each(a,function(e,t){t.render()})}; |
|||
// Load TinyMCE on demand, if we need to
|
|||
return p.tinymce||c||!(e=o.script_url)? |
|||
// Delay the init call until tinymce is loaded
|
|||
1===c?s.push(a):a():(c=1,t=e.substring(0,e.lastIndexOf("/")), |
|||
// Check if it's a dev/src version they want to load then
|
|||
// make sure that all plugins, themes etc are loaded in source mode as well
|
|||
-1!=e.indexOf(".min")&&(r=".min"), |
|||
// Setup tinyMCEPreInit object this will later be used by the TinyMCE
|
|||
// core script to locate other resources like CSS files, dialogs etc
|
|||
// You can also predefined a tinyMCEPreInit object and then it will use that instead
|
|||
p.tinymce=p.tinyMCEPreInit||{base:t,suffix:r}, |
|||
// url contains gzip then we assume it's a compressor
|
|||
-1!=e.indexOf("gzip")&&(i=o.language||"en",e=e+(/\?/.test(e)?"&":"?")+"js=true&core=true&suffix="+escape(r)+"&themes="+escape(o.theme||"modern")+"&plugins="+escape(o.plugins||"")+"&languages="+(i||""), |
|||
// Check if compressor script is already loaded otherwise setup a basic one
|
|||
p.tinyMCE_GZ||(p.tinyMCE_GZ={start:function(){var n=function(e){v().ScriptLoader.markDone(v().baseURI.toAbsolute(e))}; |
|||
// Add core languages
|
|||
n("langs/"+i+".js"), |
|||
// Add themes with languages
|
|||
n("themes/"+o.theme+"/theme"+r+".js"),n("themes/"+o.theme+"/langs/"+i+".js"), |
|||
// Add plugins with languages
|
|||
d.each(o.plugins.split(","),function(e,t){t&&(n("plugins/"+t+"/plugin"+r+".js"),n("plugins/"+t+"/langs/"+i+".js"))})},end:function(){}})),(n=document.createElement("script")).type="text/javascript",n.onload=n.onreadystatechange=function(e){e=e||window.event,2===c||"load"!=e.type&&!/complete|loaded/.test(n.readyState)||(v().dom.Event.domLoaded=1,c=2, |
|||
// Execute callback after mainscript has been loaded and before the initialization occurs
|
|||
o.script_loaded&&o.script_loaded(),a(),d.each(s,function(e,t){t()}))},n.src=e,document.body.appendChild(n)),l}, |
|||
// Add :tinymce pseudo selector this will select elements that has been converted into editor instances
|
|||
// it's now possible to use things like $('*:tinymce') to get all TinyMCE bound elements.
|
|||
d.extend(d.expr[":"],{tinymce:function(e){var t;return!!(e.id&&"tinymce"in p&&(t=v().get(e.id))&&t.editorManager===v())}}); |
|||
// This function patches internal jQuery functions so that if
|
|||
// you for example remove an div element containing an editor it's
|
|||
// automatically destroyed by the TinyMCE API
|
|||
var m=function(){ |
|||
// Removes any child editor instances by looking for editor wrapper elements
|
|||
var r=function(e){ |
|||
// If the function is remove
|
|||
"remove"===e&&this.each(function(e,t){var n=l(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=v().get(t.id.replace(/_parent$/,""));n&&n.remove()})},o=function(i){var e,t=this; |
|||
// Handle set value
|
|||
/*jshint eqnull:true */if(null!=i)r.call(t), |
|||
// Saves the contents before get/set value of textarea/div
|
|||
t.each(function(e,t){var n;(n=v().get(t.id))&&n.setContent(i)});else if(0<t.length&&(e=v().get(t[0].id)))return e.getContent()},l=function(e){var t=null;return e&&e.id&&p.tinymce&&(t=v().get(e.id)),t},u=function(e){return!!(e&&e.length&&p.tinymce&&e.is(":tinymce"))},s={}; |
|||
// Loads or saves contents from/to textarea if the value
|
|||
// argument is defined it will set the TinyMCE internal contents
|
|||
// Patch some setter/getter functions these will
|
|||
// now be able to set/get the contents of editor instances for
|
|||
// example $('#editorid').html('Content'); will update the TinyMCE iframe instance
|
|||
d.each(["text","html","val"],function(e,t){var a=s[t]=d.fn[t],c="text"===t;d.fn[t]=function(e){var t=this;if(!u(t))return a.apply(t,arguments);if(e!==f)return o.call(t.filter(":tinymce"),e),a.apply(t.not(":tinymce"),arguments),t;// return original set for chaining
|
|||
var i="",r=arguments;return(c?t:t.eq(0)).each(function(e,t){var n=l(t);i+=n?c?n.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):n.getContent({save:!0}):a.apply(d(t),r)}),i}}), |
|||
// Makes it possible to use $('#id').append("content"); to append contents to the TinyMCE editor iframe
|
|||
d.each(["append","prepend"],function(e,t){var n=s[t]=d.fn[t],r="prepend"===t;d.fn[t]=function(i){var e=this;return u(e)?i!==f?("string"==typeof i&&e.filter(":tinymce").each(function(e,t){var n=l(t);n&&n.setContent(r?i+n.getContent():n.getContent()+i)}),n.apply(e.not(":tinymce"),arguments),e):void 0:n.apply(e,arguments)}}), |
|||
// Makes sure that the editor instance gets properly destroyed when the parent element is removed
|
|||
d.each(["remove","replaceWith","replaceAll","empty"],function(e,t){var n=s[t]=d.fn[t];d.fn[t]=function(){return r.call(this,t),n.apply(this,arguments)}}),s.attr=d.fn.attr, |
|||
// Makes sure that $('#tinymce_id').attr('value') gets the editors current HTML contents
|
|||
d.fn.attr=function(e,t){var n=this,i=arguments;if(!e||"value"!==e||!u(n))return s.attr.apply(n,i);if(t!==f)return o.call(n.filter(":tinymce"),t),s.attr.apply(n.not(":tinymce"),i),n;// return original set for chaining
|
|||
var r=n[0],a=l(r);return a?a.getContent({save:!0}):s.attr.apply(d(r),i)}}}(); |
@ -0,0 +1,3 @@ |
|||
This is where language files should be placed. |
|||
|
|||
Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ |
@ -0,0 +1,417 @@ |
|||
tinymce.addI18n('zh_CN',{ |
|||
"Redo": "恢复", |
|||
"Undo": "撤销", |
|||
"Cut": "剪切", |
|||
"Copy": "复制", |
|||
"Paste": "粘贴", |
|||
"Select all": "全选", |
|||
"New document": "新建文档", |
|||
"Ok": "确定", |
|||
"Cancel": "取消", |
|||
"Visual aids": "网格线", |
|||
"Bold": "粗体", |
|||
"Italic": "斜体", |
|||
"Underline": "下划线", |
|||
"Strikethrough": "删除线", |
|||
"Superscript": "上标", |
|||
"Subscript": "下标", |
|||
"Clear formatting": "清除格式", |
|||
"Align left": "左对齐", |
|||
"Align center": "居中", |
|||
"Align right": "右对齐", |
|||
"Justify": "两端对齐", |
|||
"Bullet list": "符号列表", |
|||
"Numbered list": "数字列表", |
|||
"Decrease indent": "减少缩进", |
|||
"Increase indent": "增加缩进", |
|||
"Close": "关闭", |
|||
"Formats": "格式", |
|||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "当前浏览器不支持访问剪贴板,请使用快捷键Ctrl+X/C/V复制粘贴", |
|||
"Headers": "标题", |
|||
"Header 1": "标题1", |
|||
"Header 2": "标题2", |
|||
"Header 3": "标题3", |
|||
"Header 4": "标题4", |
|||
"Header 5": "标题5", |
|||
"Header 6": "标题6", |
|||
"Headings": "标题", |
|||
"Heading 1": "标题1", |
|||
"Heading 2": "标题2", |
|||
"Heading 3": "标题3", |
|||
"Heading 4": "标题4", |
|||
"Heading 5": "标题5", |
|||
"Heading 6": "标题6", |
|||
"Preformatted": "预格式化", |
|||
"Div": "Div区块", |
|||
"Pre": "预格式文本", |
|||
"Code": "代码", |
|||
"Paragraph": "段落", |
|||
"Blockquote": "引用", |
|||
"Inline": "文本", |
|||
"Blocks": "区块", |
|||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "当前为纯文本粘贴模式,再次点击可以回到普通粘贴模式。", |
|||
"Fonts": "字体", |
|||
"Font Sizes": "字号", |
|||
"Class": "Class", |
|||
"Browse for an image": "浏览图像", |
|||
"OR": "或", |
|||
"Drop an image here": "拖放一张图片文件至此", |
|||
"Upload": "上传", |
|||
"Block": "块", |
|||
"Align": "对齐", |
|||
"Default": "默认", |
|||
"Circle": "空心圆", |
|||
"Disc": "实心圆", |
|||
"Square": "方块", |
|||
"Lower Alpha": "小写英文字母", |
|||
"Lower Greek": "小写希腊字母", |
|||
"Lower Roman": "小写罗马字母", |
|||
"Upper Alpha": "大写英文字母", |
|||
"Upper Roman": "大写罗马字母", |
|||
"Anchor...": "锚点...", |
|||
"Name": "名称", |
|||
"Id": "id", |
|||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "id应该以字母开头,后跟字母、数字、横线、点、冒号或下划线。", |
|||
"You have unsaved changes are you sure you want to navigate away?": "你对文档的修改尚未保存,确定离开吗?", |
|||
"Restore last draft": "恢复上次的草稿", |
|||
"Special characters...": "特殊字符...", |
|||
"Source code": "HTML源码", |
|||
"Insert\/Edit code sample": "插入/编辑代码示例", |
|||
"Language": "语言", |
|||
"Code sample...": "代码示例...", |
|||
"Color Picker": "选取颜色", |
|||
"R": "R", |
|||
"G": "G", |
|||
"B": "B", |
|||
"Left to right": "从左到右", |
|||
"Right to left": "从右到左", |
|||
"Emoticons...": "表情符号...", |
|||
"Metadata and Document Properties": "元数据和文档属性", |
|||
"Title": "标题", |
|||
"Keywords": "关键词", |
|||
"Description": "描述", |
|||
"Robots": "机器人", |
|||
"Author": "作者", |
|||
"Encoding": "编码", |
|||
"Fullscreen": "全屏", |
|||
"Action": "操作", |
|||
"Shortcut": "快捷键", |
|||
"Help": "帮助", |
|||
"Address": "地址", |
|||
"Focus to menubar": "移动焦点到菜单栏", |
|||
"Focus to toolbar": "移动焦点到工具栏", |
|||
"Focus to element path": "移动焦点到元素路径", |
|||
"Focus to contextual toolbar": "移动焦点到上下文菜单", |
|||
"Insert link (if link plugin activated)": "插入链接 (如果链接插件已激活)", |
|||
"Save (if save plugin activated)": "保存(如果保存插件已激活)", |
|||
"Find (if searchreplace plugin activated)": "查找(如果查找替换插件已激活)", |
|||
"Plugins installed ({0}):": "已安装插件 ({0}):", |
|||
"Premium plugins:": "优秀插件:", |
|||
"Learn more...": "了解更多...", |
|||
"You are using {0}": "你正在使用 {0}", |
|||
"Plugins": "插件", |
|||
"Handy Shortcuts": "快捷键", |
|||
"Horizontal line": "水平分割线", |
|||
"Insert\/edit image": "插入/编辑图片", |
|||
"Image description": "图片描述", |
|||
"Source": "地址", |
|||
"Dimensions": "大小", |
|||
"Constrain proportions": "保持宽高比", |
|||
"General": "常规", |
|||
"Advanced": "高级", |
|||
"Style": "样式", |
|||
"Vertical space": "垂直边距", |
|||
"Horizontal space": "水平边距", |
|||
"Border": "边框", |
|||
"Insert image": "插入图片", |
|||
"Image...": "图片...", |
|||
"Image list": "图片列表", |
|||
"Rotate counterclockwise": "逆时针旋转", |
|||
"Rotate clockwise": "顺时针旋转", |
|||
"Flip vertically": "垂直翻转", |
|||
"Flip horizontally": "水平翻转", |
|||
"Edit image": "编辑图片", |
|||
"Image options": "图片选项", |
|||
"Zoom in": "放大", |
|||
"Zoom out": "缩小", |
|||
"Crop": "裁剪", |
|||
"Resize": "调整大小", |
|||
"Orientation": "方向", |
|||
"Brightness": "亮度", |
|||
"Sharpen": "锐化", |
|||
"Contrast": "对比度", |
|||
"Color levels": "色阶", |
|||
"Gamma": "伽马值", |
|||
"Invert": "反转", |
|||
"Apply": "应用", |
|||
"Back": "后退", |
|||
"Insert date\/time": "插入日期/时间", |
|||
"Date\/time": "日期/时间", |
|||
"Insert\/Edit Link": "插入/编辑链接", |
|||
"Insert\/edit link": "插入/编辑链接", |
|||
"Text to display": "显示文字", |
|||
"Url": "地址", |
|||
"Open link in...": "链接打开方式...", |
|||
"Current window": "当前窗口打开", |
|||
"None": "在当前窗口/框架打开", |
|||
"New window": "在新窗口打开", |
|||
"Remove link": "删除链接", |
|||
"Anchors": "锚点", |
|||
"Link...": "链接...", |
|||
"Paste or type a link": "粘贴或输入链接", |
|||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "你所填写的URL地址为邮件地址,需要加上mailto:前缀吗?", |
|||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "你所填写的URL地址属于外部链接,需要加上http://:前缀吗?", |
|||
"Link list": "链接列表", |
|||
"Insert video": "插入视频", |
|||
"Insert\/edit video": "插入/编辑视频", |
|||
"Insert\/edit media": "插入/编辑媒体", |
|||
"Alternative source": "替代资源", |
|||
"Alternative image URL": "资源备用地址", |
|||
"Media poster (Image URL)": "封面(图片地址)", |
|||
"Paste your embed code below:": "将内嵌代码粘贴在下面:", |
|||
"Embed": "内嵌", |
|||
"Media...": "多媒体...", |
|||
"Nonbreaking space": "不间断空格", |
|||
"Page break": "分页符", |
|||
"Paste as text": "粘贴为文本", |
|||
"Preview": "预览", |
|||
"Print...": "打印...", |
|||
"Save": "保存", |
|||
"Find": "查找", |
|||
"Replace with": "替换为", |
|||
"Replace": "替换", |
|||
"Replace all": "替换全部", |
|||
"Previous": "上一个", |
|||
"Next": "下一个", |
|||
"Find and replace...": "查找并替换...", |
|||
"Could not find the specified string.": "未找到搜索内容。", |
|||
"Match case": "区分大小写", |
|||
"Find whole words only": "全单词匹配", |
|||
"Spell check": "拼写检查", |
|||
"Ignore": "忽略", |
|||
"Ignore all": "忽略全部", |
|||
"Finish": "完成", |
|||
"Add to Dictionary": "添加到字典", |
|||
"Insert table": "插入表格", |
|||
"Table properties": "表格属性", |
|||
"Delete table": "删除表格", |
|||
"Cell": "单元格", |
|||
"Row": "行", |
|||
"Column": "列", |
|||
"Cell properties": "单元格属性", |
|||
"Merge cells": "合并单元格", |
|||
"Split cell": "拆分单元格", |
|||
"Insert row before": "在上方插入", |
|||
"Insert row after": "在下方插入", |
|||
"Delete row": "删除行", |
|||
"Row properties": "行属性", |
|||
"Cut row": "剪切行", |
|||
"Copy row": "复制行", |
|||
"Paste row before": "粘贴到上方", |
|||
"Paste row after": "粘贴到下方", |
|||
"Insert column before": "在左侧插入", |
|||
"Insert column after": "在右侧插入", |
|||
"Delete column": "删除列", |
|||
"Cols": "列", |
|||
"Rows": "行", |
|||
"Width": "宽", |
|||
"Height": "高", |
|||
"Cell spacing": "单元格外间距", |
|||
"Cell padding": "单元格内边距", |
|||
"Show caption": "显示标题", |
|||
"Left": "左对齐", |
|||
"Center": "居中", |
|||
"Right": "右对齐", |
|||
"Cell type": "单元格类型", |
|||
"Scope": "范围", |
|||
"Alignment": "对齐方式", |
|||
"H Align": "水平对齐", |
|||
"V Align": "垂直对齐", |
|||
"Top": "顶部对齐", |
|||
"Middle": "垂直居中", |
|||
"Bottom": "底部对齐", |
|||
"Header cell": "表头单元格", |
|||
"Row group": "行组", |
|||
"Column group": "列组", |
|||
"Row type": "行类型", |
|||
"Header": "表头", |
|||
"Body": "表体", |
|||
"Footer": "表尾", |
|||
"Border color": "边框颜色", |
|||
"Insert template...": "插入模板...", |
|||
"Templates": "模板", |
|||
"Template": "模板", |
|||
"Text color": "文字颜色", |
|||
"Background color": "背景色", |
|||
"Custom...": "自定义...", |
|||
"Custom color": "自定义颜色", |
|||
"No color": "无", |
|||
"Remove color": "删除颜色", |
|||
"Table of Contents": "目录", |
|||
"Show blocks": "显示区块边框", |
|||
"Show invisible characters": "显示不可见字符", |
|||
"Word count": "字数统计", |
|||
"Words: {0}": "字数:{0}", |
|||
"{0} words": "{0} 个字", |
|||
"File": "文件", |
|||
"Edit": "编辑", |
|||
"Insert": "插入", |
|||
"View": "查看", |
|||
"Format": "格式", |
|||
"Table": "表格", |
|||
"Tools": "工具", |
|||
"Powered by {0}": "Powered by {0}", |
|||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "在编辑区按ALT+F9打开菜单,按ALT+F10打开工具栏,按ALT+0查看帮助", |
|||
"Image title": "图片标题", |
|||
"Border width": "边框宽度", |
|||
"Border style": "边框样式", |
|||
"Error": "错误", |
|||
"Warn": "警告", |
|||
"Valid": "有效", |
|||
"To open the popup, press Shift+Enter": "此快捷为软回车(插入<br>)", |
|||
"Rich Text Area. Press ALT-0 for help.": "编辑区. 按Alt+0键打开帮助", |
|||
"System Font": "默认字体", |
|||
"Failed to upload image: {0}": "图片上传失败: {0}", |
|||
"Failed to load plugin: {0} from url {1}": "插件加载失败: {0} - {1}", |
|||
"Failed to load plugin url: {0}": "插件加载失败: {0}", |
|||
"Failed to initialize plugin: {0}": "插件初始化失败: {0}", |
|||
"example": "示例", |
|||
"Search": "查找", |
|||
"All": "全部", |
|||
"Currency": "货币", |
|||
"Text": "文本", |
|||
"Quotations": "引用", |
|||
"Mathematical": "数学运算符", |
|||
"Extended Latin": "拉丁语扩充", |
|||
"Symbols": "符号", |
|||
"Arrows": "箭头", |
|||
"User Defined": "自定义", |
|||
"dollar sign": "美元", |
|||
"currency sign": "货币", |
|||
"euro-currency sign": "欧元", |
|||
"colon sign": "冒号", |
|||
"cruzeiro sign": "克鲁赛罗币", |
|||
"french franc sign": "法郎", |
|||
"lira sign": "里拉", |
|||
"mill sign": "密尔", |
|||
"naira sign": "奈拉", |
|||
"peseta sign": "比塞塔", |
|||
"rupee sign": "卢比", |
|||
"won sign": "韩元", |
|||
"new sheqel sign": "新谢克尔", |
|||
"dong sign": "越南盾", |
|||
"kip sign": "老挝基普", |
|||
"tugrik sign": "图格里克", |
|||
"drachma sign": "德拉克马", |
|||
"german penny symbol": "德国便士", |
|||
"peso sign": "比索", |
|||
"guarani sign": "瓜拉尼", |
|||
"austral sign": "澳元", |
|||
"hryvnia sign": "格里夫尼亚", |
|||
"cedi sign": "塞地", |
|||
"livre tournois sign": "里弗弗尔", |
|||
"spesmilo sign": "一千spesoj的货币符号,该货币未使用", |
|||
"tenge sign": "坚戈", |
|||
"indian rupee sign": "印度卢比", |
|||
"turkish lira sign": "土耳其里拉", |
|||
"nordic mark sign": "北欧马克", |
|||
"manat sign": "马纳特", |
|||
"ruble sign": "卢布", |
|||
"yen character": "日元", |
|||
"yuan character": "人民币元", |
|||
"yuan character, in hong kong and taiwan": "元的繁体字", |
|||
"yen\/yuan character variant one": "元(大写)", |
|||
"Loading emoticons...": "正在加载表情文字...", |
|||
"Could not load emoticons": "不能加载表情文字", |
|||
"People": "人类", |
|||
"Animals and Nature": "动物和自然", |
|||
"Food and Drink": "食物和饮品", |
|||
"Activity": "活动", |
|||
"Travel and Places": "旅游和地点", |
|||
"Objects": "物件", |
|||
"Flags": "旗帜", |
|||
"Characters": "字数", |
|||
"Characters (no spaces)": "字数(不含空格)", |
|||
"Error: Form submit field collision.": "错误: 表单提交字段冲突.", |
|||
"Error: No form element found.": "错误: 未找到可用的form.", |
|||
"Update": "更新", |
|||
"Color swatch": "颜色样本", |
|||
"Turquoise": "青绿", |
|||
"Green": "绿色", |
|||
"Blue": "蓝色", |
|||
"Purple": "紫色", |
|||
"Navy Blue": "海军蓝", |
|||
"Dark Turquoise": "深蓝绿色", |
|||
"Dark Green": "暗绿", |
|||
"Medium Blue": "中蓝", |
|||
"Medium Purple": "中紫", |
|||
"Midnight Blue": "深蓝", |
|||
"Yellow": "黄色", |
|||
"Orange": "橙色", |
|||
"Red": "红色", |
|||
"Light Gray": "浅灰", |
|||
"Gray": "灰色", |
|||
"Dark Yellow": "暗黄", |
|||
"Dark Orange": "暗橙", |
|||
"Dark Red": "暗红", |
|||
"Medium Gray": "中灰", |
|||
"Dark Gray": "深灰", |
|||
"Black": "黑色", |
|||
"White": "白色", |
|||
"Switch to or from fullscreen mode": "切换全屏模式", |
|||
"Open help dialog": "打开帮助对话框", |
|||
"history": "历史", |
|||
"styles": "样式", |
|||
"formatting": "格式化", |
|||
"alignment": "对齐", |
|||
"indentation": "缩进", |
|||
"permanent pen": "记号笔", |
|||
"comments": "注释", |
|||
"Anchor": "锚点", |
|||
"Special character": "特殊字符", |
|||
"Code sample": "代码示例", |
|||
"Color": "颜色", |
|||
"Emoticons": "表情", |
|||
"Document properties": "文档属性", |
|||
"Image": "图片", |
|||
"Insert link": "插入链接", |
|||
"Target": "目标", |
|||
"Link": "链接", |
|||
"Poster": "封面", |
|||
"Media": "音视频", |
|||
"Print": "打印", |
|||
"Prev": "上一个", |
|||
"Find and replace": "查找并替换", |
|||
"Whole words": "全字匹配", |
|||
"Spellcheck": "拼写检查", |
|||
"Caption": "标题", |
|||
"Insert template": "插入模板", |
|||
//以下为补充汉化内容 by 莫若卿
|
|||
"Code view": "代码区域", |
|||
"Select...": "选择...", |
|||
"Format Painter": "格式刷", |
|||
"No templates defined.": "无内置模板", |
|||
"Special character...": "特殊字符...", |
|||
"Open link": "打开链接", |
|||
"None": "无", |
|||
"Count": "统计", |
|||
"Document": "整个文档", |
|||
"Selection": "选取部分", |
|||
"Words": "字词数", |
|||
"{0} characters": "{0} 个字符", |
|||
"Alternative source URL": "替代资源地址", |
|||
"Alternative description": "替代说明文字", |
|||
"Accessibility": "可访问性", |
|||
"Image is decorative": "仅用于装饰", |
|||
//5.6新增
|
|||
"Line height": "行高", |
|||
"Cut column": "剪切列", |
|||
"Copy column": "复制列", |
|||
"Paste column before": "粘贴到前方", |
|||
"Paste column after": "粘贴到后方", |
|||
"Copy column": "复制列", |
|||
//帮助窗口内的文字
|
|||
"Version": "版本", |
|||
"Keyboard Navigation": "键盘导航", |
|||
"Open popup menu for split buttons": "该组合键的作用是软回车(插入br)", |
|||
}); |
@ -0,0 +1,504 @@ |
|||
GNU LESSER GENERAL PUBLIC LICENSE |
|||
Version 2.1, February 1999 |
|||
|
|||
Copyright (C) 1991, 1999 Free Software Foundation, Inc. |
|||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|||
Everyone is permitted to copy and distribute verbatim copies |
|||
of this license document, but changing it is not allowed. |
|||
|
|||
[This is the first released version of the Lesser GPL. It also counts |
|||
as the successor of the GNU Library Public License, version 2, hence |
|||
the version number 2.1.] |
|||
|
|||
Preamble |
|||
|
|||
The licenses for most software are designed to take away your |
|||
freedom to share and change it. By contrast, the GNU General Public |
|||
Licenses are intended to guarantee your freedom to share and change |
|||
free software--to make sure the software is free for all its users. |
|||
|
|||
This license, the Lesser General Public License, applies to some |
|||
specially designated software packages--typically libraries--of the |
|||
Free Software Foundation and other authors who decide to use it. You |
|||
can use it too, but we suggest you first think carefully about whether |
|||
this license or the ordinary General Public License is the better |
|||
strategy to use in any particular case, based on the explanations below. |
|||
|
|||
When we speak of free software, we are referring to freedom of use, |
|||
not price. Our General Public Licenses are designed to make sure that |
|||
you have the freedom to distribute copies of free software (and charge |
|||
for this service if you wish); that you receive source code or can get |
|||
it if you want it; that you can change the software and use pieces of |
|||
it in new free programs; and that you are informed that you can do |
|||
these things. |
|||
|
|||
To protect your rights, we need to make restrictions that forbid |
|||
distributors to deny you these rights or to ask you to surrender these |
|||
rights. These restrictions translate to certain responsibilities for |
|||
you if you distribute copies of the library or if you modify it. |
|||
|
|||
For example, if you distribute copies of the library, whether gratis |
|||
or for a fee, you must give the recipients all the rights that we gave |
|||
you. You must make sure that they, too, receive or can get the source |
|||
code. If you link other code with the library, you must provide |
|||
complete object files to the recipients, so that they can relink them |
|||
with the library after making changes to the library and recompiling |
|||
it. And you must show them these terms so they know their rights. |
|||
|
|||
We protect your rights with a two-step method: (1) we copyright the |
|||
library, and (2) we offer you this license, which gives you legal |
|||
permission to copy, distribute and/or modify the library. |
|||
|
|||
To protect each distributor, we want to make it very clear that |
|||
there is no warranty for the free library. Also, if the library is |
|||
modified by someone else and passed on, the recipients should know |
|||
that what they have is not the original version, so that the original |
|||
author's reputation will not be affected by problems that might be |
|||
introduced by others. |
|||
|
|||
Finally, software patents pose a constant threat to the existence of |
|||
any free program. We wish to make sure that a company cannot |
|||
effectively restrict the users of a free program by obtaining a |
|||
restrictive license from a patent holder. Therefore, we insist that |
|||
any patent license obtained for a version of the library must be |
|||
consistent with the full freedom of use specified in this license. |
|||
|
|||
Most GNU software, including some libraries, is covered by the |
|||
ordinary GNU General Public License. This license, the GNU Lesser |
|||
General Public License, applies to certain designated libraries, and |
|||
is quite different from the ordinary General Public License. We use |
|||
this license for certain libraries in order to permit linking those |
|||
libraries into non-free programs. |
|||
|
|||
When a program is linked with a library, whether statically or using |
|||
a shared library, the combination of the two is legally speaking a |
|||
combined work, a derivative of the original library. The ordinary |
|||
General Public License therefore permits such linking only if the |
|||
entire combination fits its criteria of freedom. The Lesser General |
|||
Public License permits more lax criteria for linking other code with |
|||
the library. |
|||
|
|||
We call this license the "Lesser" General Public License because it |
|||
does Less to protect the user's freedom than the ordinary General |
|||
Public License. It also provides other free software developers Less |
|||
of an advantage over competing non-free programs. These disadvantages |
|||
are the reason we use the ordinary General Public License for many |
|||
libraries. However, the Lesser license provides advantages in certain |
|||
special circumstances. |
|||
|
|||
For example, on rare occasions, there may be a special need to |
|||
encourage the widest possible use of a certain library, so that it becomes |
|||
a de-facto standard. To achieve this, non-free programs must be |
|||
allowed to use the library. A more frequent case is that a free |
|||
library does the same job as widely used non-free libraries. In this |
|||
case, there is little to gain by limiting the free library to free |
|||
software only, so we use the Lesser General Public License. |
|||
|
|||
In other cases, permission to use a particular library in non-free |
|||
programs enables a greater number of people to use a large body of |
|||
free software. For example, permission to use the GNU C Library in |
|||
non-free programs enables many more people to use the whole GNU |
|||
operating system, as well as its variant, the GNU/Linux operating |
|||
system. |
|||
|
|||
Although the Lesser General Public License is Less protective of the |
|||
users' freedom, it does ensure that the user of a program that is |
|||
linked with the Library has the freedom and the wherewithal to run |
|||
that program using a modified version of the Library. |
|||
|
|||
The precise terms and conditions for copying, distribution and |
|||
modification follow. Pay close attention to the difference between a |
|||
"work based on the library" and a "work that uses the library". The |
|||
former contains code derived from the library, whereas the latter must |
|||
be combined with the library in order to run. |
|||
|
|||
GNU LESSER GENERAL PUBLIC LICENSE |
|||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
|||
|
|||
0. This License Agreement applies to any software library or other |
|||
program which contains a notice placed by the copyright holder or |
|||
other authorized party saying it may be distributed under the terms of |
|||
this Lesser General Public License (also called "this License"). |
|||
Each licensee is addressed as "you". |
|||
|
|||
A "library" means a collection of software functions and/or data |
|||
prepared so as to be conveniently linked with application programs |
|||
(which use some of those functions and data) to form executables. |
|||
|
|||
The "Library", below, refers to any such software library or work |
|||
which has been distributed under these terms. A "work based on the |
|||
Library" means either the Library or any derivative work under |
|||
copyright law: that is to say, a work containing the Library or a |
|||
portion of it, either verbatim or with modifications and/or translated |
|||
straightforwardly into another language. (Hereinafter, translation is |
|||
included without limitation in the term "modification".) |
|||
|
|||
"Source code" for a work means the preferred form of the work for |
|||
making modifications to it. For a library, complete source code means |
|||
all the source code for all modules it contains, plus any associated |
|||
interface definition files, plus the scripts used to control compilation |
|||
and installation of the library. |
|||
|
|||
Activities other than copying, distribution and modification are not |
|||
covered by this License; they are outside its scope. The act of |
|||
running a program using the Library is not restricted, and output from |
|||
such a program is covered only if its contents constitute a work based |
|||
on the Library (independent of the use of the Library in a tool for |
|||
writing it). Whether that is true depends on what the Library does |
|||
and what the program that uses the Library does. |
|||
|
|||
1. You may copy and distribute verbatim copies of the Library's |
|||
complete source code as you receive it, in any medium, provided that |
|||
you conspicuously and appropriately publish on each copy an |
|||
appropriate copyright notice and disclaimer of warranty; keep intact |
|||
all the notices that refer to this License and to the absence of any |
|||
warranty; and distribute a copy of this License along with the |
|||
Library. |
|||
|
|||
You may charge a fee for the physical act of transferring a copy, |
|||
and you may at your option offer warranty protection in exchange for a |
|||
fee. |
|||
|
|||
2. You may modify your copy or copies of the Library or any portion |
|||
of it, thus forming a work based on the Library, and copy and |
|||
distribute such modifications or work under the terms of Section 1 |
|||
above, provided that you also meet all of these conditions: |
|||
|
|||
a) The modified work must itself be a software library. |
|||
|
|||
b) You must cause the files modified to carry prominent notices |
|||
stating that you changed the files and the date of any change. |
|||
|
|||
c) You must cause the whole of the work to be licensed at no |
|||
charge to all third parties under the terms of this License. |
|||
|
|||
d) If a facility in the modified Library refers to a function or a |
|||
table of data to be supplied by an application program that uses |
|||
the facility, other than as an argument passed when the facility |
|||
is invoked, then you must make a good faith effort to ensure that, |
|||
in the event an application does not supply such function or |
|||
table, the facility still operates, and performs whatever part of |
|||
its purpose remains meaningful. |
|||
|
|||
(For example, a function in a library to compute square roots has |
|||
a purpose that is entirely well-defined independent of the |
|||
application. Therefore, Subsection 2d requires that any |
|||
application-supplied function or table used by this function must |
|||
be optional: if the application does not supply it, the square |
|||
root function must still compute square roots.) |
|||
|
|||
These requirements apply to the modified work as a whole. If |
|||
identifiable sections of that work are not derived from the Library, |
|||
and can be reasonably considered independent and separate works in |
|||
themselves, then this License, and its terms, do not apply to those |
|||
sections when you distribute them as separate works. But when you |
|||
distribute the same sections as part of a whole which is a work based |
|||
on the Library, the distribution of the whole must be on the terms of |
|||
this License, whose permissions for other licensees extend to the |
|||
entire whole, and thus to each and every part regardless of who wrote |
|||
it. |
|||
|
|||
Thus, it is not the intent of this section to claim rights or contest |
|||
your rights to work written entirely by you; rather, the intent is to |
|||
exercise the right to control the distribution of derivative or |
|||
collective works based on the Library. |
|||
|
|||
In addition, mere aggregation of another work not based on the Library |
|||
with the Library (or with a work based on the Library) on a volume of |
|||
a storage or distribution medium does not bring the other work under |
|||
the scope of this License. |
|||
|
|||
3. You may opt to apply the terms of the ordinary GNU General Public |
|||
License instead of this License to a given copy of the Library. To do |
|||
this, you must alter all the notices that refer to this License, so |
|||
that they refer to the ordinary GNU General Public License, version 2, |
|||
instead of to this License. (If a newer version than version 2 of the |
|||
ordinary GNU General Public License has appeared, then you can specify |
|||
that version instead if you wish.) Do not make any other change in |
|||
these notices. |
|||
|
|||
Once this change is made in a given copy, it is irreversible for |
|||
that copy, so the ordinary GNU General Public License applies to all |
|||
subsequent copies and derivative works made from that copy. |
|||
|
|||
This option is useful when you wish to copy part of the code of |
|||
the Library into a program that is not a library. |
|||
|
|||
4. You may copy and distribute the Library (or a portion or |
|||
derivative of it, under Section 2) in object code or executable form |
|||
under the terms of Sections 1 and 2 above provided that you accompany |
|||
it with the complete corresponding machine-readable source code, which |
|||
must be distributed under the terms of Sections 1 and 2 above on a |
|||
medium customarily used for software interchange. |
|||
|
|||
If distribution of object code is made by offering access to copy |
|||
from a designated place, then offering equivalent access to copy the |
|||
source code from the same place satisfies the requirement to |
|||
distribute the source code, even though third parties are not |
|||
compelled to copy the source along with the object code. |
|||
|
|||
5. A program that contains no derivative of any portion of the |
|||
Library, but is designed to work with the Library by being compiled or |
|||
linked with it, is called a "work that uses the Library". Such a |
|||
work, in isolation, is not a derivative work of the Library, and |
|||
therefore falls outside the scope of this License. |
|||
|
|||
However, linking a "work that uses the Library" with the Library |
|||
creates an executable that is a derivative of the Library (because it |
|||
contains portions of the Library), rather than a "work that uses the |
|||
library". The executable is therefore covered by this License. |
|||
Section 6 states terms for distribution of such executables. |
|||
|
|||
When a "work that uses the Library" uses material from a header file |
|||
that is part of the Library, the object code for the work may be a |
|||
derivative work of the Library even though the source code is not. |
|||
Whether this is true is especially significant if the work can be |
|||
linked without the Library, or if the work is itself a library. The |
|||
threshold for this to be true is not precisely defined by law. |
|||
|
|||
If such an object file uses only numerical parameters, data |
|||
structure layouts and accessors, and small macros and small inline |
|||
functions (ten lines or less in length), then the use of the object |
|||
file is unrestricted, regardless of whether it is legally a derivative |
|||
work. (Executables containing this object code plus portions of the |
|||
Library will still fall under Section 6.) |
|||
|
|||
Otherwise, if the work is a derivative of the Library, you may |
|||
distribute the object code for the work under the terms of Section 6. |
|||
Any executables containing that work also fall under Section 6, |
|||
whether or not they are linked directly with the Library itself. |
|||
|
|||
6. As an exception to the Sections above, you may also combine or |
|||
link a "work that uses the Library" with the Library to produce a |
|||
work containing portions of the Library, and distribute that work |
|||
under terms of your choice, provided that the terms permit |
|||
modification of the work for the customer's own use and reverse |
|||
engineering for debugging such modifications. |
|||
|
|||
You must give prominent notice with each copy of the work that the |
|||
Library is used in it and that the Library and its use are covered by |
|||
this License. You must supply a copy of this License. If the work |
|||
during execution displays copyright notices, you must include the |
|||
copyright notice for the Library among them, as well as a reference |
|||
directing the user to the copy of this License. Also, you must do one |
|||
of these things: |
|||
|
|||
a) Accompany the work with the complete corresponding |
|||
machine-readable source code for the Library including whatever |
|||
changes were used in the work (which must be distributed under |
|||
Sections 1 and 2 above); and, if the work is an executable linked |
|||
with the Library, with the complete machine-readable "work that |
|||
uses the Library", as object code and/or source code, so that the |
|||
user can modify the Library and then relink to produce a modified |
|||
executable containing the modified Library. (It is understood |
|||
that the user who changes the contents of definitions files in the |
|||
Library will not necessarily be able to recompile the application |
|||
to use the modified definitions.) |
|||
|
|||
b) Use a suitable shared library mechanism for linking with the |
|||
Library. A suitable mechanism is one that (1) uses at run time a |
|||
copy of the library already present on the user's computer system, |
|||
rather than copying library functions into the executable, and (2) |
|||
will operate properly with a modified version of the library, if |
|||
the user installs one, as long as the modified version is |
|||
interface-compatible with the version that the work was made with. |
|||
|
|||
c) Accompany the work with a written offer, valid for at |
|||
least three years, to give the same user the materials |
|||
specified in Subsection 6a, above, for a charge no more |
|||
than the cost of performing this distribution. |
|||
|
|||
d) If distribution of the work is made by offering access to copy |
|||
from a designated place, offer equivalent access to copy the above |
|||
specified materials from the same place. |
|||
|
|||
e) Verify that the user has already received a copy of these |
|||
materials or that you have already sent this user a copy. |
|||
|
|||
For an executable, the required form of the "work that uses the |
|||
Library" must include any data and utility programs needed for |
|||
reproducing the executable from it. However, as a special exception, |
|||
the materials to be distributed need not include anything that is |
|||
normally distributed (in either source or binary form) with the major |
|||
components (compiler, kernel, and so on) of the operating system on |
|||
which the executable runs, unless that component itself accompanies |
|||
the executable. |
|||
|
|||
It may happen that this requirement contradicts the license |
|||
restrictions of other proprietary libraries that do not normally |
|||
accompany the operating system. Such a contradiction means you cannot |
|||
use both them and the Library together in an executable that you |
|||
distribute. |
|||
|
|||
7. You may place library facilities that are a work based on the |
|||
Library side-by-side in a single library together with other library |
|||
facilities not covered by this License, and distribute such a combined |
|||
library, provided that the separate distribution of the work based on |
|||
the Library and of the other library facilities is otherwise |
|||
permitted, and provided that you do these two things: |
|||
|
|||
a) Accompany the combined library with a copy of the same work |
|||
based on the Library, uncombined with any other library |
|||
facilities. This must be distributed under the terms of the |
|||
Sections above. |
|||
|
|||
b) Give prominent notice with the combined library of the fact |
|||
that part of it is a work based on the Library, and explaining |
|||
where to find the accompanying uncombined form of the same work. |
|||
|
|||
8. You may not copy, modify, sublicense, link with, or distribute |
|||
the Library except as expressly provided under this License. Any |
|||
attempt otherwise to copy, modify, sublicense, link with, or |
|||
distribute the Library is void, and will automatically terminate your |
|||
rights under this License. However, parties who have received copies, |
|||
or rights, from you under this License will not have their licenses |
|||
terminated so long as such parties remain in full compliance. |
|||
|
|||
9. You are not required to accept this License, since you have not |
|||
signed it. However, nothing else grants you permission to modify or |
|||
distribute the Library or its derivative works. These actions are |
|||
prohibited by law if you do not accept this License. Therefore, by |
|||
modifying or distributing the Library (or any work based on the |
|||
Library), you indicate your acceptance of this License to do so, and |
|||
all its terms and conditions for copying, distributing or modifying |
|||
the Library or works based on it. |
|||
|
|||
10. Each time you redistribute the Library (or any work based on the |
|||
Library), the recipient automatically receives a license from the |
|||
original licensor to copy, distribute, link with or modify the Library |
|||
subject to these terms and conditions. You may not impose any further |
|||
restrictions on the recipients' exercise of the rights granted herein. |
|||
You are not responsible for enforcing compliance by third parties with |
|||
this License. |
|||
|
|||
11. If, as a consequence of a court judgment or allegation of patent |
|||
infringement or for any other reason (not limited to patent issues), |
|||
conditions are imposed on you (whether by court order, agreement or |
|||
otherwise) that contradict the conditions of this License, they do not |
|||
excuse you from the conditions of this License. If you cannot |
|||
distribute so as to satisfy simultaneously your obligations under this |
|||
License and any other pertinent obligations, then as a consequence you |
|||
may not distribute the Library at all. For example, if a patent |
|||
license would not permit royalty-free redistribution of the Library by |
|||
all those who receive copies directly or indirectly through you, then |
|||
the only way you could satisfy both it and this License would be to |
|||
refrain entirely from distribution of the Library. |
|||
|
|||
If any portion of this section is held invalid or unenforceable under any |
|||
particular circumstance, the balance of the section is intended to apply, |
|||
and the section as a whole is intended to apply in other circumstances. |
|||
|
|||
It is not the purpose of this section to induce you to infringe any |
|||
patents or other property right claims or to contest validity of any |
|||
such claims; this section has the sole purpose of protecting the |
|||
integrity of the free software distribution system which is |
|||
implemented by public license practices. Many people have made |
|||
generous contributions to the wide range of software distributed |
|||
through that system in reliance on consistent application of that |
|||
system; it is up to the author/donor to decide if he or she is willing |
|||
to distribute software through any other system and a licensee cannot |
|||
impose that choice. |
|||
|
|||
This section is intended to make thoroughly clear what is believed to |
|||
be a consequence of the rest of this License. |
|||
|
|||
12. If the distribution and/or use of the Library is restricted in |
|||
certain countries either by patents or by copyrighted interfaces, the |
|||
original copyright holder who places the Library under this License may add |
|||
an explicit geographical distribution limitation excluding those countries, |
|||
so that distribution is permitted only in or among countries not thus |
|||
excluded. In such case, this License incorporates the limitation as if |
|||
written in the body of this License. |
|||
|
|||
13. The Free Software Foundation may publish revised and/or new |
|||
versions of the Lesser General Public License from time to time. |
|||
Such new versions will be similar in spirit to the present version, |
|||
but may differ in detail to address new problems or concerns. |
|||
|
|||
Each version is given a distinguishing version number. If the Library |
|||
specifies a version number of this License which applies to it and |
|||
"any later version", you have the option of following the terms and |
|||
conditions either of that version or of any later version published by |
|||
the Free Software Foundation. If the Library does not specify a |
|||
license version number, you may choose any version ever published by |
|||
the Free Software Foundation. |
|||
|
|||
14. If you wish to incorporate parts of the Library into other free |
|||
programs whose distribution conditions are incompatible with these, |
|||
write to the author to ask for permission. For software which is |
|||
copyrighted by the Free Software Foundation, write to the Free |
|||
Software Foundation; we sometimes make exceptions for this. Our |
|||
decision will be guided by the two goals of preserving the free status |
|||
of all derivatives of our free software and of promoting the sharing |
|||
and reuse of software generally. |
|||
|
|||
NO WARRANTY |
|||
|
|||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO |
|||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. |
|||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR |
|||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY |
|||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE |
|||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE |
|||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME |
|||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. |
|||
|
|||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN |
|||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY |
|||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU |
|||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR |
|||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE |
|||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING |
|||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A |
|||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF |
|||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
|||
DAMAGES. |
|||
|
|||
END OF TERMS AND CONDITIONS |
|||
|
|||
How to Apply These Terms to Your New Libraries |
|||
|
|||
If you develop a new library, and you want it to be of the greatest |
|||
possible use to the public, we recommend making it free software that |
|||
everyone can redistribute and change. You can do so by permitting |
|||
redistribution under these terms (or, alternatively, under the terms of the |
|||
ordinary General Public License). |
|||
|
|||
To apply these terms, attach the following notices to the library. It is |
|||
safest to attach them to the start of each source file to most effectively |
|||
convey the exclusion of warranty; and each file should have at least the |
|||
"copyright" line and a pointer to where the full notice is found. |
|||
|
|||
<one line to give the library's name and a brief idea of what it does.> |
|||
Copyright (C) <year> <name of author> |
|||
|
|||
This library is free software; you can redistribute it and/or |
|||
modify it under the terms of the GNU Lesser General Public |
|||
License as published by the Free Software Foundation; either |
|||
version 2.1 of the License, or (at your option) any later version. |
|||
|
|||
This library is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|||
Lesser General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU Lesser General Public |
|||
License along with this library; if not, write to the Free Software |
|||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|||
|
|||
Also add information on how to contact you by electronic and paper mail. |
|||
|
|||
You should also get your employer (if you work as a programmer) or your |
|||
school, if any, to sign a "copyright disclaimer" for the library, if |
|||
necessary. Here is a sample; alter the names: |
|||
|
|||
Yoyodyne, Inc., hereby disclaims all copyright interest in the |
|||
library `Frob' (a library for tweaking knobs) written by James Random Hacker. |
|||
|
|||
<signature of Ty Coon>, 1 April 1990 |
|||
Ty Coon, President of Vice |
|||
|
|||
That's all there is to it! |
|||
|
|||
|
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var n,e,t,r=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=function(n,e,t){var r="UL"===e?"InsertUnorderedList":"InsertOrderedList";n.execCommand(r,!1,!1===t?null:{"list-style-type":t})},l=tinymce.util.Tools.resolve("tinymce.util.Tools"),i=function(n){return function(){return n}},c=i(!1),s=i(!0),o=function(){return a},a=(n=function(n){return n.isNone()},{fold:function(n,e){return n()},is:c,isSome:c,isNone:s,getOr:t=function(n){return n},getOrThunk:e=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:i(null),getOrUndefined:i(undefined),or:t,orThunk:e,map:o,each:function(){},bind:o,exists:c,forall:s,filter:o,equals:n,equals_:n,toArray:function(){return[]},toString:i("none()")}),f=function(t){var n=i(t),e=function(){return o},r=function(n){return n(t)},o={fold:function(n,e){return e(t)},is:function(n){return t===n},isSome:s,isNone:c,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:e,orThunk:e,map:function(n){return f(n(t))},each:function(n){n(t)},bind:r,exists:r,forall:r,filter:function(n){return n(t)?o:a},toArray:function(){return[t]},toString:function(){return"some("+t+")"},equals:function(n){return n.is(t)},equals_:function(n,e){return n.fold(c,function(n){return e(t,n)})}};return o},d=function(n){return null===n||n===undefined?a:f(n)},g=function(n){return n&&/^(TH|TD)$/.test(n.nodeName)},m=function(r){return function(n){return n&&/^(OL|UL|DL)$/.test(n.nodeName)&&(t=n,(e=r).$.contains(e.getBody(),t));var e,t}},p=function(n,e,t){var r=function(n,e){for(var t=0;t<n.length;t++){if(e(n[t]))return t}return-1}(e.parents,g),o=-1!==r?e.parents.slice(0,r):e.parents,i=l.grep(o,m(n));return 0<i.length&&i[0].nodeName===t},y=function(o,n,e,t,r,i){o.ui.registry.addSplitButton(n,{tooltip:e,icon:"OL"===r?"ordered-list":"unordered-list",presets:"listpreview",columns:3,fetch:function(n){n(l.map(i,function(n){return{type:"choiceitem",value:"default"===n?"":n,icon:"list-"+("OL"===r?"num":"bull")+"-"+("disc"===n||"decimal"===n?"default":n),text:n.replace(/\-/g," ").replace(/\b\w/g,function(n){return n.toUpperCase()})}}))},onAction:function(){return o.execCommand(t)},onItemAction:function(n,e){u(o,r,e)},select:function(e){var n,t,r;return(t=(n=o).dom.getParent(n.selection.getNode(),"ol,ul"),r=n.dom.getStyle(t,"listStyleType"),d(r)).map(function(n){return e===n}).getOr(!1)},onSetup:function(e){var n=function(n){e.setActive(p(o,n,r))};return o.on("NodeChange",n),function(){return o.off("NodeChange",n)}}})},v=function(n,e,t,r,o,i){var u,l,c,s,a;1<i.length?y(n,e,t,r,o,i):(l=e,c=t,s=r,a=o,(u=n).ui.registry.addToggleButton(l,{active:!1,tooltip:c,icon:"OL"===a?"ordered-list":"unordered-list",onSetup:function(e){var n=function(n){e.setActive(p(u,n,a))};return u.on("NodeChange",n),function(){return u.off("NodeChange",n)}},onAction:function(){return u.execCommand(s)}}))};r.add("advlist",function(n){var t,e,r,o;n.hasPlugin("lists")&&(v(e=n,"numlist","Numbered list","InsertOrderedList","OL",(r=e.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman"))?r.split(/[ ,]/):[]),v(e,"bullist","Bullet list","InsertUnorderedList","UL",(o=e.getParam("advlist_bullet_styles","default,circle,square"))?o.split(/[ ,]/):[]),(t=n).addCommand("ApplyUnorderedListStyle",function(n,e){u(t,"UL",e["list-style-type"])}),t.addCommand("ApplyOrderedListStyle",function(n,e){u(t,"OL",e["list-style-type"])}))})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.RangeUtils"),o=tinymce.util.Tools.resolve("tinymce.util.Tools"),a="a:not([href])",n=function(e){return e.getAttribute("id")||e.getAttribute("name")||""},r=function(e){return(t=e)&&"a"===t.nodeName.toLowerCase()&&!e.getAttribute("href")&&""!==n(e);var t},c=function(e){var n=e.dom;t(n).walk(e.selection.getRng(),function(e){o.each(e,function(e){var t;r(t=e)&&!t.firstChild&&n.remove(e,!1)})})},u=function(e){return e.dom.getParent(e.selection.getStart(),a)},i=function(e,t){var n,o,a,r,i,l=u(e);l?(a=e,r=t,(i=l).removeAttribute("name"),i.id=r,a.addVisual(),a.undoManager.add()):(o=t,(n=e).undoManager.transact(function(){n.getParam("allow_html_in_named_anchor",!1,"boolean")||n.selection.collapse(!0),n.selection.isCollapsed()?n.insertContent(n.dom.createHTML("a",{id:o})):(c(n),n.formatter.remove("namedAnchor",null,null,!0),n.formatter.apply("namedAnchor",{value:o}),n.addVisual())})),e.focus()},l=function(o){var e,t=(e=u(o))?n(e):"";o.windowManager.open({title:"Anchor",size:"normal",body:{type:"panel",items:[{name:"id",type:"input",label:"ID",placeholder:"example"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{id:t},onSubmit:function(e){var t,n;t=o,n=e.getData().id,(/^[A-Za-z][A-Za-z0-9\-:._]*$/.test(n)?(i(t,n),1):(t.windowManager.alert("Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores."),0))&&e.close()}})},d=function(r){return function(e){for(var t,n,o=0;o<e.length;o++){var a=e[o];n=void 0,!(n=t=a)||n.attr("href")||!n.attr("id")&&!n.attr("name")||t.firstChild||a.attr("contenteditable",r)}}};e.add("anchor",function(e){var t,n,o;(t=e).on("PreInit",function(){t.parser.addNodeFilter("a",d("false")),t.serializer.addNodeFilter("a",d(null))}),(n=e).addCommand("mceAnchor",function(){l(n)}),(o=e).ui.registry.addToggleButton("anchor",{icon:"bookmark",tooltip:"Anchor",onAction:function(){return o.execCommand("mceAnchor")},onSetup:function(e){return o.selection.selectorChangedWithUnbind("a:not([href])",e.setActive).unbind}}),o.ui.registry.addMenuItem("anchor",{icon:"bookmark",text:"Anchor...",onAction:function(){return o.execCommand("mceAnchor")}}),e.on("PreInit",function(){e.formatter.register("namedAnchor",{inline:"a",selector:a,remove:"all",split:!0,deep:!0,attributes:{id:"%value"},onmatch:function(e,t,n){return r(e)}})})})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=tinymce.util.Tools.resolve("tinymce.Env"),i=function(e,t){var n;return t<0&&(t=0),3!==e.nodeType||(n=e.data.length)<t&&(t=n),t},y=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setStart(t,i(t,n)):e.setStartBefore(t)},k=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setEnd(t,i(t,n)):e.setEndAfter(t)},r=function(e,t,n){var o,i,r,a,s,d,f,l=e.getParam("autolink_pattern",/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@(?!.*@))(.+)$/i),c=e.getParam("default_link_target",!1);if("A"!==e.selection.getNode().tagName){var g=e.selection.getRng().cloneRange();if(g.startOffset<5){if(!(s=g.endContainer.previousSibling)){if(!g.endContainer.firstChild||!g.endContainer.firstChild.nextSibling)return;s=g.endContainer.firstChild.nextSibling}if(d=s.length,y(g,s,d),k(g,s,d),g.endOffset<5)return;o=g.endOffset,i=s}else{if(3!==(i=g.endContainer).nodeType&&i.firstChild){for(;3!==i.nodeType&&i.firstChild;)i=i.firstChild;3===i.nodeType&&(y(g,i,0),k(g,i,i.nodeValue.length))}o=1===g.endOffset?2:g.endOffset-1-t}for(var u,h=o;y(g,i,2<=o?o-2:0),k(g,i,1<=o?o-1:0),--o," "!==(f=g.toString())&&""!==f&&160!==f.charCodeAt(0)&&0<=o-2&&f!==n;);(u=g.toString())===n||" "===u||160===u.charCodeAt(0)?(y(g,i,o),k(g,i,h),o+=1):(0===g.startOffset?y(g,i,0):y(g,i,o),k(g,i,h)),"."===(a=g.toString()).charAt(a.length-1)&&k(g,i,h-1);var m=(a=g.toString().trim()).match(l),C=e.getParam("link_default_protocol","http","string");m&&("www."===m[1]?m[1]=C+"://www.":/@$/.test(m[1])&&!/^mailto:/.test(m[1])&&(m[1]="mailto:"+m[1]),r=e.selection.getBookmark(),e.selection.setRng(g),e.execCommand("createlink",!1,m[1]+m[2]),!1!==c&&e.dom.setAttrib(e.selection.getNode(),"target",c),e.selection.moveToBookmark(r),e.nodeChanged())}},t=function(t){var n;t.on("keydown",function(e){13!==e.keyCode||r(t,-1,"")}),o.browser.isIE()?t.on("focus",function(){if(!n){n=!0;try{t.execCommand("AutoUrlDetect",!1,!0)}catch(e){}}}):(t.on("keypress",function(e){41!==e.keyCode||r(t,-1,"(")}),t.on("keyup",function(e){32!==e.keyCode||r(t,0,"")}))};e.add("autolink",function(e){t(e)})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),h=tinymce.util.Tools.resolve("tinymce.Env"),r=tinymce.util.Tools.resolve("tinymce.util.Delay"),y=function(e){return e.getParam("min_height",e.getElement().offsetHeight,"number")},a=function(e,t,n,i,o){r.setEditorTimeout(e,function(){b(e,t),n--?a(e,t,n,i,o):o&&o()},i)},p=function(e,t){var n=e.getBody();n&&(n.style.overflowY=t?"":"hidden",t||(n.scrollTop=0))},v=function(e,t,n,i){var o=parseInt(e.getStyle(t,n,i),10);return isNaN(o)?0:o},b=function(e,t){var n,i,o,r,s,a,g,u,l,c,m,f=e.dom,d=e.getDoc();d&&((n=e).plugins.fullscreen&&n.plugins.fullscreen.isFullscreen()?p(e,!0):(i=d.documentElement,o=e.getParam("autoresize_bottom_margin",50,"number"),r=y(e),s=v(f,i,"margin-top",!0),a=v(f,i,"margin-bottom",!0),(g=i.offsetHeight+s+a+o)<0&&(g=0),g+(u=e.getContainer().offsetHeight-e.getContentAreaContainer().offsetHeight)>y(e)&&(r=g+u),(l=e.getParam("max_height",0,"number"))&&l<r?(r=l,p(e,!0)):p(e,!1),r!==t.get()&&(c=r-t.get(),f.setStyle(e.getContainer(),"height",r+"px"),t.set(r),e.fire("ResizeEditor"),h.browser.isSafari()&&h.mac&&(m=e.getWin()).scrollTo(m.pageXOffset,m.pageYOffset),e.hasFocus()&&e.selection.scrollIntoView(e.selection.getNode()),h.webkit&&c<0&&b(e,t))))};e.add("autoresize",function(e){var t,n,i,o,r,s;e.settings.hasOwnProperty("resize")||(e.settings.resize=!1),e.inline||(s=0,r=t={get:function(){return s},set:function(e){s=e}},(o=e).addCommand("mceAutoResize",function(){b(o,r)}),i=t,(n=e).on("init",function(){var e=n.getParam("autoresize_overflow_padding",1,"number"),t=n.dom;t.setStyles(n.getDoc().documentElement,{height:"auto"}),t.setStyles(n.getBody(),{paddingLeft:e,paddingRight:e,"min-height":0})}),n.on("NodeChange SetContent keyup FullscreenStateChanged ResizeContent",function(){b(n,i)}),n.getParam("autoresize_on_init",!0,"boolean")&&n.on("init",function(){a(n,i,20,100,function(){a(n,i,5,1e3)})}))})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e,t=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=(e=undefined,function(t){return e===t}),r=tinymce.util.Tools.resolve("tinymce.util.Delay"),n=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),o=tinymce.util.Tools.resolve("tinymce.util.Tools"),i=function(t,e){var r=t||e,n=/^(\d+)([ms]?)$/.exec(""+r);return(n[2]?{s:1e3,m:6e4}[n[2]]:1)*parseInt(r,10)},u=function(t){var e=document.location;return t.getParam("autosave_prefix","tinymce-autosave-{path}{query}{hash}-{id}-").replace(/{path}/g,e.pathname).replace(/{query}/g,e.search).replace(/{hash}/g,e.hash).replace(/{id}/g,t.id)},s=function(t,e){if(a(e))return t.dom.isEmpty(t.getBody());var r=o.trim(e);if(""===r)return!0;var n=(new DOMParser).parseFromString(r,"text/html");return t.dom.isEmpty(n)},f=function(t){var e=parseInt(n.getItem(u(t)+"time"),10)||0;return!((new Date).getTime()-e>i(t.getParam("autosave_retention"),"20m"))||(c(t,!1),!1)},c=function(t,e){var r=u(t);n.removeItem(r+"draft"),n.removeItem(r+"time"),!1!==e&&t.fire("RemoveDraft")},m=function(t){var e=u(t);!s(t)&&t.isDirty()&&(n.setItem(e+"draft",t.getContent({format:"raw",no_events:!0})),n.setItem(e+"time",(new Date).getTime().toString()),t.fire("StoreDraft"))},l=function(t){var e=u(t);f(t)&&(t.setContent(n.getItem(e+"draft"),{format:"raw"}),t.fire("RestoreDraft"))},v=function(t){var e=i(t.getParam("autosave_interval"),"30s");r.setEditorInterval(t,function(){m(t)},e)},d=function(t){t.undoManager.transact(function(){l(t),c(t)}),t.focus()},g=tinymce.util.Tools.resolve("tinymce.EditorManager"),y=function(r){return function(t){t.setDisabled(!f(r));var e=function(){return t.setDisabled(!f(r))};return r.on("StoreDraft RestoreDraft RemoveDraft",e),function(){return r.off("StoreDraft RestoreDraft RemoveDraft",e)}}};t.add("autosave",function(t){var e,r;return t.editorManager.on("BeforeUnload",function(t){var e;o.each(g.get(),function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e&&(t.preventDefault(),t.returnValue=e)}),v(e=t),e.ui.registry.addButton("restoredraft",{tooltip:"Restore last draft",icon:"restore-draft",onAction:function(){d(e)},onSetup:y(e)}),e.ui.registry.addMenuItem("restoredraft",{text:"Restore last draft",icon:"restore-draft",onAction:function(){d(e)},onSetup:y(e)}),t.on("init",function(){t.getParam("autosave_restore_when_empty",!1)&&t.dom.isEmpty(t.getBody())&&l(t)}),r=t,{hasDraft:function(){return f(r)},storeDraft:function(){return m(r)},restoreDraft:function(){return l(r)},removeDraft:function(t){return c(r,t)},isEmpty:function(t){return s(r,t)}}})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager"),e=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(t){t=e.trim(t);var o=function(o,e){t=t.replace(o,e)};return o(/\n/gi,"<br />"),o(/\[b\]/gi,"<strong>"),o(/\[\/b\]/gi,"</strong>"),o(/\[i\]/gi,"<em>"),o(/\[\/i\]/gi,"</em>"),o(/\[u\]/gi,"<u>"),o(/\[\/u\]/gi,"</u>"),o(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>'),o(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>'),o(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />'),o(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>'),o(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> '),o(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> '),t};o.add("bbcode",function(o){o.on("BeforeSetContent",function(o){o.content=t(o.content)}),o.on("PostProcess",function(o){o.set&&(o.content=t(o.content)),o.get&&(o.content=function(t){t=e.trim(t);var o=function(o,e){t=t.replace(o,e)};return o(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]"),o(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]"),o(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]"),o(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]"),o(/<font>(.*?)<\/font>/gi,"$1"),o(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]"),o(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]"),o(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]"),o(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),o(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),o(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),o(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),o(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),o(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),o(/<\/(strong|b)>/gi,"[/b]"),o(/<(strong|b)>/gi,"[b]"),o(/<\/(em|i)>/gi,"[/i]"),o(/<(em|i)>/gi,"[i]"),o(/<\/u>/gi,"[/u]"),o(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]"),o(/<u>/gi,"[u]"),o(/<blockquote[^>]*>/gi,"[quote]"),o(/<\/blockquote>/gi,"[/quote]"),o(/<br \/>/gi,"\n"),o(/<br\/>/gi,"\n"),o(/<br>/gi,"\n"),o(/<p>/gi,""),o(/<\/p>/gi,"\n"),o(/ |\u00a0/gi," "),o(/"/gi,'"'),o(/</gi,"<"),o(/>/gi,">"),o(/&/gi,"&"),t}(o.content))})})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(o){var e=o.getContent({source_view:!0});o.windowManager.open({title:"Source Code",size:"large",body:{type:"panel",items:[{type:"textarea",name:"code"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{code:e},onSubmit:function(e){var t,n;t=o,n=e.getData().code,t.focus(),t.undoManager.transact(function(){t.setContent(n)}),t.selection.setCursorLocation(),t.nodeChanged(),e.close()}})};e.add("code",function(e){var t,n;return(t=e).addCommand("mceCodeEditor",function(){o(t)}),(n=e).ui.registry.addButton("code",{icon:"sourcecode",tooltip:"Source code",onAction:function(){return o(n)}}),n.ui.registry.addMenuItem("code",{icon:"sourcecode",text:"Source code",onAction:function(){return o(n)}}),{}})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("colorpicker",function(){console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("contextmenu",function(){console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var n,t,e,o,r=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=tinymce.util.Tools.resolve("tinymce.util.Tools"),i=function(n,t){var e,o=n.dom,r=n.selection.getSelectedBlocks();r.length&&(e=o.getAttrib(r[0],"dir"),u.each(r,function(n){o.getParent(n.parentNode,'*[dir="'+t+'"]',o.getRoot())||o.setAttrib(n,"dir",e!==t?t:null)}),n.nodeChanged())},c=function(n){return function(){return n}},f=c(!1),d=c(!0),l=function(){return m},m=(n=function(n){return n.isNone()},{fold:function(n,t){return n()},is:f,isSome:f,isNone:d,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:c(null),getOrUndefined:c(undefined),or:e,orThunk:t,map:l,each:function(){},bind:l,exists:f,forall:d,filter:l,equals:n,equals_:n,toArray:function(){return[]},toString:c("none()")}),a=function(e){var n=c(e),t=function(){return r},o=function(n){return n(e)},r={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:d,isNone:f,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return a(n(e))},each:function(n){n(e)},bind:o,exists:o,forall:o,filter:function(n){return n(e)?r:m},toArray:function(){return[e]},toString:function(){return"some("+e+")"},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(f,function(n){return t(e,n)})}};return r},s={some:a,none:l,from:function(n){return null===n||n===undefined?m:a(n)}},g=(o="function",function(n){return typeof n===o}),h=function(n){if(null===n||n===undefined)throw new Error("Node cannot be null or undefined");return{dom:n}},y={fromHtml:function(n,t){var e=(t||document).createElement("div");if(e.innerHTML=n,!e.hasChildNodes()||1<e.childNodes.length)throw console.error("HTML does not have a single root node",n),new Error("HTML must have a single root node");return h(e.childNodes[0])},fromTag:function(n,t){var e=(t||document).createElement(n);return h(e)},fromText:function(n,t){var e=(t||document).createTextNode(n);return h(e)},fromDom:h,fromPoint:function(n,t,e){return s.from(n.dom.elementFromPoint(t,e)).map(h)}},v=("undefined"!=typeof window||Function("return this;")(),function(t){return function(n){return n.dom.nodeType===t}}),p=v(3),T=v(9),N=v(11),D=g(Element.prototype.attachShadow)&&g(Node.prototype.getRootNode)?function(n){return y.fromDom(n.dom.getRootNode())}:function(n){return T(n)?n:(t=n,y.fromDom(t.dom.ownerDocument));var t},w=function(n){var t=D(n);return N(t)?s.some(t):s.none()},O=function(n){return y.fromDom(n.dom.host)},C=function(n){var t=p(n)?n.dom.parentNode:n.dom;if(t===undefined||null===t||null===t.ownerDocument)return!1;var e,o,r=t.ownerDocument;return w(y.fromDom(t)).fold(function(){return r.body.contains(t)},(e=C,o=O,function(n){return e(o(n))}))},S=function(n,t){return(e=n).style!==undefined&&g(e.style.getPropertyValue)?n.style.getPropertyValue(t):"";var e},L=function(n){return"rtl"===(e="direction",o=(t=n).dom,""!==(r=window.getComputedStyle(o).getPropertyValue(e))||C(t)?r:S(o,e))?"rtl":"ltr";var t,e,o,r},R=function(t,o){return function(e){var n=function(n){var t=y.fromDom(n.element);e.setActive(L(t)===o)};return t.on("NodeChange",n),function(){return t.off("NodeChange",n)}}};r.add("directionality",function(n){var t,e;(t=n).addCommand("mceDirectionLTR",function(){i(t,"ltr")}),t.addCommand("mceDirectionRTL",function(){i(t,"rtl")}),(e=n).ui.registry.addToggleButton("ltr",{tooltip:"Left to right",icon:"ltr",onAction:function(){return e.execCommand("mceDirectionLTR")},onSetup:R(e,"ltr")}),e.ui.registry.addToggleButton("rtl",{tooltip:"Right to left",icon:"rtl",onAction:function(){return e.execCommand("mceDirectionRTL")},onSetup:R(e,"rtl")})})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager");n.add("hr",function(n){var o,t;(o=n).addCommand("InsertHorizontalRule",function(){o.execCommand("mceInsertContent",!1,"<hr />")}),(t=n).ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return t.execCommand("InsertHorizontalRule")}}),t.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return t.execCommand("InsertHorizontalRule")}})})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var n,t=tinymce.util.Tools.resolve("tinymce.PluginManager"),v=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),f=tinymce.util.Tools.resolve("tinymce.EditorManager"),m=tinymce.util.Tools.resolve("tinymce.Env"),h=tinymce.util.Tools.resolve("tinymce.util.Tools"),d=function(t){return t.getParam("importcss_selector_converter")},o=(n="array",function(t){return r=typeof(e=t),(null===e?"null":"object"==r&&(Array.prototype.isPrototypeOf(e)||e.constructor&&"Array"===e.constructor.name)?"array":"object"==r&&(String.prototype.isPrototypeOf(e)||e.constructor&&"String"===e.constructor.name)?"string":r)===n;var e,r}),i=Array.prototype.push,l=function(t,e){return function(t){for(var e=[],r=0,n=t.length;r<n;++r){if(!o(t[r]))throw new Error("Arr.flatten item "+r+" was not an array, input: "+t);i.apply(e,t[r])}return e}(function(t,e){for(var r=t.length,n=new Array(r),o=0;o<r;o++){var i=t[o];n[o]=e(i,o)}return n}(t,e))},p=function(e){return"string"==typeof e?function(t){return-1!==t.indexOf(e)}:e instanceof RegExp?function(t){return e.test(t)}:e},_=function(s,t,a){var u=[],r={};function l(t,e){var r,n,o,i=t.href;if(n=i,o=m.cacheSuffix,"string"==typeof n&&(n=n.replace("?"+o,"").replace("&"+o,"")),(i=n)&&a(i,e)&&!function(t,e){var r,n=!1!==(r=t.getParam("skin"))&&(r||"oxide");if(n){var o=t.getParam("skin_url"),i=o?t.documentBaseURI.toAbsolute(o):f.baseURL+"/skins/ui/"+n,c=f.baseURL+"/skins/content/";return e===i+"/content"+(t.inline?".inline":"")+".min.css"||-1!==e.indexOf(c)}return!1}(s,i)){h.each(t.imports,function(t){l(t,!0)});try{r=t.cssRules||t.rules}catch(c){}h.each(r,function(t){t.styleSheet?l(t.styleSheet,!0):t.selectorText&&h.each(t.selectorText.split(","),function(t){u.push(h.trim(t))})})}}h.each(s.contentCSS,function(t){r[t]=!0}),a=a||function(t,e){return e||r[t]};try{h.each(t.styleSheets,function(t){l(t)})}catch(e){}return u},x=function(t,e){var r,n=/^(?:([a-z0-9\-_]+))?(\.[a-z0-9_\-\.]+)$/i.exec(e);if(n){var o=n[1],i=n[2].substr(1).split(".").join(" "),c=h.makeMap("a,img");return n[1]?(r={title:e},t.schema.getTextBlockElements()[o]?r.block=o:t.schema.getBlockElements()[o]||c[o.toLowerCase()]?r.selector=o:r.inline=o):n[2]&&(r={inline:"span",title:e.substr(1),classes:i}),!1!==t.getParam("importcss_merge_classes")?r.classes=i:r.attributes={"class":i},r}},P=function(t,e){return null===e||!1!==t.getParam("importcss_exclusive")},r=function(y){y.on("init",function(t){var e,r,n,o,i=(e=[],r=[],n={},{addItemToGroup:function(t,e){n[t]?n[t].push(e):(r.push(t),n[t]=[e])},addItem:function(t){e.push(t)},toFormats:function(){return l(r,function(t){var e=n[t];return 0===e.length?[]:[{title:t,items:e}]}).concat(e)}}),g={},c=p(y.getParam("importcss_selector_filter")),s=(o=y.getParam("importcss_groups"),h.map(o,function(t){return h.extend({},t,{original:t,selectors:{},filter:p(t.filter),item:{text:t.title,menu:[]}})})),a=function(t,e){if(f=t,p=g,!(P(y,m=e)?f in p:f in m.selectors)){a=t,l=g,P(y,u=e)?l[a]=!0:u.selectors[a]=!0;var r=(i=(o=y).plugins.importcss,c=t,((s=e)&&s.selector_converter?s.selector_converter:d(o)?d(o):function(){return x(o,c)}).call(i,c,s));if(r){var n=r.name||v.DOM.uniqueId();return y.formatter.register(n,r),h.extend({},{title:r.title,format:n})}}var o,i,c,s,a,u,l,f,m,p;return null};h.each(_(y,y.getDoc(),p(y.getParam("importcss_file_filter"))),function(r){var t,e,n,o;-1===r.indexOf(".mce-")&&(c&&!c(r)||(n=s,o=r,0<(t=h.grep(n,function(t){return!t.filter||t.filter(o)})).length?h.each(t,function(t){var e=a(r,t);e&&i.addItemToGroup(t.title,e)}):(e=a(r,null))&&i.addItem(e)))});var u=i.toFormats();y.fire("addStyleModifications",{items:u,replace:!y.getParam("importcss_append")})})};t.add("importcss",function(t){return r(t),e=t,{convertSelectorToFormat:function(t){return x(e,t)}};var e})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),u=function(e){return e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S"))},c=function(e){return e.getParam("insertdatetime_formats",["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"])},r="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),a="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),i="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),o="January February March April May June July August September October November December".split(" "),m=function(e,t){if((e=""+e).length<t)for(var n=0;n<t-e.length;n++)e="0"+e;return e},s=function(e,t,n){return n=n||new Date,t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+n.getFullYear())).replace("%y",""+n.getYear())).replace("%m",m(n.getMonth()+1,2))).replace("%d",m(n.getDate(),2))).replace("%H",""+m(n.getHours(),2))).replace("%M",""+m(n.getMinutes(),2))).replace("%S",""+m(n.getSeconds(),2))).replace("%I",""+((n.getHours()+11)%12+1))).replace("%p",n.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(o[n.getMonth()]))).replace("%b",""+e.translate(i[n.getMonth()]))).replace("%A",""+e.translate(a[n.getDay()]))).replace("%a",""+e.translate(r[n.getDay()]))).replace("%%","%")},l=function(e,t){var n,r,a,i,o,u,c,m;e.getParam("insertdatetime_element",!1)?(n=s(e,t),r=void 0,r=/%[HMSIp]/.test(t)?s(e,"%Y-%m-%dT%H:%M"):s(e,"%Y-%m-%d"),(a=e.dom.getParent(e.selection.getStart(),"time"))?(o=a,u=r,c=n,m=(i=e).dom.create("time",{datetime:u},c),o.parentNode.insertBefore(m,o),i.dom.remove(o),i.selection.select(m,!0),i.selection.collapse(!1)):e.insertContent('<time datetime="'+r+'">'+n+"</time>")):e.insertContent(s(e,t))},t=function(t){t.addCommand("mceInsertDate",function(){var e;l(t,(e=t).getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d")))}),t.addCommand("mceInsertTime",function(){l(t,u(t))})},d=tinymce.util.Tools.resolve("tinymce.util.Tools"),n=function(n){var e,t,r,a,i=c(n),o=(a=c(r=n),e=0<a.length?a[0]:u(r),t=e,{get:function(){return t},set:function(e){t=e}});n.ui.registry.addSplitButton("insertdatetime",{icon:"insert-time",tooltip:"Insert date/time",select:function(e){return e===o.get()},fetch:function(e){e(d.map(i,function(e){return{type:"choiceitem",text:s(n,e),value:e}}))},onAction:function(e){l(n,o.get())},onItemAction:function(e,t){o.set(t),l(n,t)}});n.ui.registry.addNestedMenuItem("insertdatetime",{icon:"insert-time",text:"Date/time",getSubmenuItems:function(){return d.map(i,function(e){return{type:"menuitem",text:s(n,e),onAction:(t=e,function(){o.set(t),l(n,t)})};var t})}})};e.add("insertdatetime",function(e){t(e),n(e)})}(); |
@ -0,0 +1,9 @@ |
|||
/** |
|||
* Copyright (c) Tiny Technologies, Inc. All rights reserved. |
|||
* Licensed under the LGPL or a commercial license. |
|||
* For LGPL see License.txt in the project root for license information. |
|||
* For commercial licenses see https://www.tiny.cloud/
|
|||
* |
|||
* Version: 5.6.2 (2020-12-08) |
|||
*/ |
|||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),l=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(s){var e,t,i,a;t=!1,(e=s).settings.inline_styles=t,e.getParam("fontsize_formats")||(i="8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7",e.settings.fontsize_formats=i),e.getParam("font_formats")||(a="Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats",e.settings.font_formats=a),s.on("PreInit",function(){return e=s,t="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table",i=l.explode(e.getParam("font_size_style_values","xx-small,x-small,small,medium,large,x-large,xx-large")),a=e.schema,e.formatter.register({alignleft:{selector:t,attributes:{align:"left"}},aligncenter:{selector:t,attributes:{align:"center"}},alignright:{selector:t,attributes:{align:"right"}},alignjustify:{selector:t,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all",preserve_attributes:["class","style"]},{inline:"strong",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all",preserve_attributes:["class","style"]},{inline:"em",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",toggle:!1,attributes:{face:"%value"}},fontsize:{inline:"font",toggle:!1,attributes:{size:function(e){return String(l.inArray(i,e.value)+1)}}},forecolor:{inline:"font",attributes:{color:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0}}),l.each("b,i,u,strike".split(","),function(e){a.addValidElements(e+"[*]")}),a.getElementRule("font")||a.addValidElements("font[face|size|color|style]"),void l.each(t.split(","),function(e){var t=a.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))});var e,t,i,a})};e.add("legacyoutput",function(e){t(e)})}(); |