mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-05-06 22:57:57 +08:00
349 lines
8.0 KiB
JavaScript
349 lines
8.0 KiB
JavaScript
module.exports =
|
|
/******/ (function(modules) { // webpackBootstrap
|
|
/******/ // The module cache
|
|
/******/ var installedModules = {};
|
|
|
|
/******/ // The require function
|
|
/******/ function __webpack_require__(moduleId) {
|
|
|
|
/******/ // Check if module is in cache
|
|
/******/ if(installedModules[moduleId])
|
|
/******/ return installedModules[moduleId].exports;
|
|
|
|
/******/ // Create a new module (and put it into the cache)
|
|
/******/ var module = installedModules[moduleId] = {
|
|
/******/ exports: {},
|
|
/******/ id: moduleId,
|
|
/******/ loaded: false
|
|
/******/ };
|
|
|
|
/******/ // Execute the module function
|
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
|
|
/******/ // Flag the module as loaded
|
|
/******/ module.loaded = true;
|
|
|
|
/******/ // Return the exports of the module
|
|
/******/ return module.exports;
|
|
/******/ }
|
|
|
|
|
|
/******/ // expose the modules object (__webpack_modules__)
|
|
/******/ __webpack_require__.m = modules;
|
|
|
|
/******/ // expose the module cache
|
|
/******/ __webpack_require__.c = installedModules;
|
|
|
|
/******/ // __webpack_public_path__
|
|
/******/ __webpack_require__.p = "/dist/";
|
|
|
|
/******/ // Load entry module and return exports
|
|
/******/ return __webpack_require__(0);
|
|
/******/ })
|
|
/************************************************************************/
|
|
/******/ ({
|
|
|
|
/***/ 0:
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
module.exports = __webpack_require__(230);
|
|
|
|
|
|
/***/ },
|
|
|
|
/***/ 3:
|
|
/***/ function(module, exports) {
|
|
|
|
module.exports = function normalizeComponent (
|
|
rawScriptExports,
|
|
compiledTemplate,
|
|
scopeId,
|
|
cssModules
|
|
) {
|
|
var esModule
|
|
var scriptExports = rawScriptExports = rawScriptExports || {}
|
|
|
|
// ES6 modules interop
|
|
var type = typeof rawScriptExports.default
|
|
if (type === 'object' || type === 'function') {
|
|
esModule = rawScriptExports
|
|
scriptExports = rawScriptExports.default
|
|
}
|
|
|
|
// Vue.extend constructor export interop
|
|
var options = typeof scriptExports === 'function'
|
|
? scriptExports.options
|
|
: scriptExports
|
|
|
|
// render functions
|
|
if (compiledTemplate) {
|
|
options.render = compiledTemplate.render
|
|
options.staticRenderFns = compiledTemplate.staticRenderFns
|
|
}
|
|
|
|
// scopedId
|
|
if (scopeId) {
|
|
options._scopeId = scopeId
|
|
}
|
|
|
|
// inject cssModules
|
|
if (cssModules) {
|
|
var computed = options.computed || (options.computed = {})
|
|
Object.keys(cssModules).forEach(function (key) {
|
|
var module = cssModules[key]
|
|
computed[key] = function () { return module }
|
|
})
|
|
}
|
|
|
|
return {
|
|
esModule: esModule,
|
|
exports: scriptExports,
|
|
options: options
|
|
}
|
|
}
|
|
|
|
|
|
/***/ },
|
|
|
|
/***/ 230:
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
'use strict';
|
|
|
|
exports.__esModule = true;
|
|
|
|
var _progress = __webpack_require__(231);
|
|
|
|
var _progress2 = _interopRequireDefault(_progress);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
/* istanbul ignore next */
|
|
_progress2.default.install = function (Vue) {
|
|
Vue.component(_progress2.default.name, _progress2.default);
|
|
};
|
|
|
|
exports.default = _progress2.default;
|
|
|
|
/***/ },
|
|
|
|
/***/ 231:
|
|
/***/ function(module, exports, __webpack_require__) {
|
|
|
|
var Component = __webpack_require__(3)(
|
|
/* script */
|
|
__webpack_require__(232),
|
|
/* template */
|
|
__webpack_require__(233),
|
|
/* scopeId */
|
|
null,
|
|
/* cssModules */
|
|
null
|
|
)
|
|
|
|
module.exports = Component.exports
|
|
|
|
|
|
/***/ },
|
|
|
|
/***/ 232:
|
|
/***/ function(module, exports) {
|
|
|
|
'use strict';
|
|
|
|
exports.__esModule = true;
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
exports.default = {
|
|
name: 'ElProgress',
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'line',
|
|
validator: function validator(val) {
|
|
return ['line', 'circle'].indexOf(val) > -1;
|
|
}
|
|
},
|
|
percentage: {
|
|
type: Number,
|
|
default: 0,
|
|
required: true,
|
|
validator: function validator(val) {
|
|
return val >= 0 && val <= 100;
|
|
}
|
|
},
|
|
status: {
|
|
type: String
|
|
},
|
|
strokeWidth: {
|
|
type: Number,
|
|
default: 6
|
|
},
|
|
textInside: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
width: {
|
|
type: Number,
|
|
default: 126
|
|
},
|
|
showText: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
computed: {
|
|
barStyle: function barStyle() {
|
|
var style = {};
|
|
style.width = this.percentage + '%';
|
|
return style;
|
|
},
|
|
relativeStrokeWidth: function relativeStrokeWidth() {
|
|
return (this.strokeWidth / this.width * 100).toFixed(1);
|
|
},
|
|
trackPath: function trackPath() {
|
|
var radius = parseInt(50 - parseFloat(this.relativeStrokeWidth) / 2, 10);
|
|
|
|
return 'M 50 50 m 0 -' + radius + ' a ' + radius + ' ' + radius + ' 0 1 1 0 ' + radius * 2 + ' a ' + radius + ' ' + radius + ' 0 1 1 0 -' + radius * 2;
|
|
},
|
|
perimeter: function perimeter() {
|
|
var radius = 50 - parseFloat(this.relativeStrokeWidth) / 2;
|
|
return 2 * Math.PI * radius;
|
|
},
|
|
circlePathStyle: function circlePathStyle() {
|
|
var perimeter = this.perimeter;
|
|
return {
|
|
strokeDasharray: perimeter + 'px,' + perimeter + 'px',
|
|
strokeDashoffset: (1 - this.percentage / 100) * perimeter + 'px',
|
|
transition: 'stroke-dashoffset 0.6s ease 0s, stroke 0.6s ease'
|
|
};
|
|
},
|
|
stroke: function stroke() {
|
|
var ret;
|
|
switch (this.status) {
|
|
case 'success':
|
|
ret = '#13ce66';
|
|
break;
|
|
case 'exception':
|
|
ret = '#ff4949';
|
|
break;
|
|
default:
|
|
ret = '#20a0ff';
|
|
}
|
|
return ret;
|
|
},
|
|
iconClass: function iconClass() {
|
|
if (this.type === 'line') {
|
|
return this.status === 'success' ? 'el-icon-circle-check' : 'el-icon-circle-cross';
|
|
} else {
|
|
return this.status === 'success' ? 'el-icon-check' : 'el-icon-close';
|
|
}
|
|
},
|
|
progressTextSize: function progressTextSize() {
|
|
return this.type === 'line' ? 12 + this.strokeWidth * 0.4 : this.width * 0.111111 + 2;
|
|
}
|
|
}
|
|
};
|
|
|
|
/***/ },
|
|
|
|
/***/ 233:
|
|
/***/ function(module, exports) {
|
|
|
|
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
|
return _c('div', {
|
|
staticClass: "el-progress",
|
|
class: [
|
|
'el-progress--' + _vm.type,
|
|
_vm.status ? 'is-' + _vm.status : '', {
|
|
'el-progress--without-text': !_vm.showText,
|
|
'el-progress--text-inside': _vm.textInside,
|
|
}
|
|
]
|
|
}, [(_vm.type === 'line') ? _c('div', {
|
|
staticClass: "el-progress-bar"
|
|
}, [_c('div', {
|
|
staticClass: "el-progress-bar__outer",
|
|
style: ({
|
|
height: _vm.strokeWidth + 'px'
|
|
})
|
|
}, [_c('div', {
|
|
staticClass: "el-progress-bar__inner",
|
|
style: (_vm.barStyle)
|
|
}, [(_vm.showText && _vm.textInside) ? _c('div', {
|
|
staticClass: "el-progress-bar__innerText"
|
|
}, [_vm._v(_vm._s(_vm.percentage) + "%")]) : _vm._e()])])]) : _c('div', {
|
|
staticClass: "el-progress-circle",
|
|
style: ({
|
|
height: _vm.width + 'px',
|
|
width: _vm.width + 'px'
|
|
})
|
|
}, [_c('svg', {
|
|
attrs: {
|
|
"viewBox": "0 0 100 100"
|
|
}
|
|
}, [_c('path', {
|
|
staticClass: "el-progress-circle__track",
|
|
attrs: {
|
|
"d": _vm.trackPath,
|
|
"stroke": "#e5e9f2",
|
|
"stroke-width": _vm.relativeStrokeWidth,
|
|
"fill": "none"
|
|
}
|
|
}), _c('path', {
|
|
staticClass: "el-progress-circle__path",
|
|
style: (_vm.circlePathStyle),
|
|
attrs: {
|
|
"d": _vm.trackPath,
|
|
"stroke-linecap": "round",
|
|
"stroke": _vm.stroke,
|
|
"stroke-width": _vm.relativeStrokeWidth,
|
|
"fill": "none"
|
|
}
|
|
})])]), (_vm.showText && !_vm.textInside) ? _c('div', {
|
|
staticClass: "el-progress__text",
|
|
style: ({
|
|
fontSize: _vm.progressTextSize + 'px'
|
|
})
|
|
}, [(!_vm.status) ? [_vm._v(_vm._s(_vm.percentage) + "%")] : _c('i', {
|
|
class: _vm.iconClass
|
|
})], 2) : _vm._e()])
|
|
},staticRenderFns: []}
|
|
|
|
/***/ }
|
|
|
|
/******/ }); |