123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- 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__(204);
- /***/ },
- /***/ 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
- }
- }
- /***/ },
- /***/ 56:
- /***/ function(module, exports) {
- module.exports = require("vue");
- /***/ },
- /***/ 132:
- /***/ function(module, exports) {
- module.exports = require("element-ui/lib/utils/popup");
- /***/ },
- /***/ 204:
- /***/ function(module, exports, __webpack_require__) {
- 'use strict';
- exports.__esModule = true;
- var _main = __webpack_require__(205);
- var _main2 = _interopRequireDefault(_main);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- exports.default = _main2.default;
- /***/ },
- /***/ 205:
- /***/ function(module, exports, __webpack_require__) {
- 'use strict';
- exports.__esModule = true;
- var _vue = __webpack_require__(56);
- var _vue2 = _interopRequireDefault(_vue);
- var _popup = __webpack_require__(132);
- var _vdom = __webpack_require__(206);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- var NotificationConstructor = _vue2.default.extend(__webpack_require__(207));
- var instance = void 0;
- var instances = [];
- var seed = 1;
- var Notification = function Notification(options) {
- if (_vue2.default.prototype.$isServer) return;
- options = options || {};
- var userOnClose = options.onClose;
- var id = 'notification_' + seed++;
- options.onClose = function () {
- Notification.close(id, userOnClose);
- };
- instance = new NotificationConstructor({
- data: options
- });
- if ((0, _vdom.isVNode)(options.message)) {
- instance.$slots.default = [options.message];
- options.message = '';
- }
- instance.id = id;
- instance.vm = instance.$mount();
- document.body.appendChild(instance.vm.$el);
- instance.vm.visible = true;
- instance.dom = instance.vm.$el;
- instance.dom.style.zIndex = _popup.PopupManager.nextZIndex();
- var offset = options.offset || 0;
- var topDist = offset;
- for (var i = 0, len = instances.length; i < len; i++) {
- topDist += instances[i].$el.offsetHeight + 16;
- }
- topDist += 16;
- instance.top = topDist;
- instances.push(instance);
- return instance.vm;
- };
- ['success', 'warning', 'info', 'error'].forEach(function (type) {
- Notification[type] = function (options) {
- if (typeof options === 'string' || (0, _vdom.isVNode)(options)) {
- options = {
- message: options
- };
- }
- options.type = type;
- return Notification(options);
- };
- });
- Notification.close = function (id, userOnClose) {
- var index = void 0;
- var removedHeight = void 0;
- for (var i = 0, len = instances.length; i < len; i++) {
- if (id === instances[i].id) {
- if (typeof userOnClose === 'function') {
- userOnClose(instances[i]);
- }
- index = i;
- removedHeight = instances[i].dom.offsetHeight;
- instances.splice(i, 1);
- break;
- }
- }
- if (len > 1) {
- for (i = index; i < len - 1; i++) {
- instances[i].dom.style.top = parseInt(instances[i].dom.style.top, 10) - removedHeight - 16 + 'px';
- }
- }
- };
- exports.default = Notification;
- /***/ },
- /***/ 206:
- /***/ function(module, exports) {
- module.exports = require("element-ui/lib/utils/vdom");
- /***/ },
- /***/ 207:
- /***/ function(module, exports, __webpack_require__) {
- var Component = __webpack_require__(3)(
- /* script */
- __webpack_require__(208),
- /* template */
- __webpack_require__(209),
- /* scopeId */
- null,
- /* cssModules */
- null
- )
- module.exports = Component.exports
- /***/ },
- /***/ 208:
- /***/ function(module, exports) {
- 'use strict';
- exports.__esModule = true;
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- var typeMap = {
- success: 'circle-check',
- info: 'information',
- warning: 'warning',
- error: 'circle-cross'
- };
- exports.default = {
- data: function data() {
- return {
- visible: false,
- title: '',
- message: '',
- duration: 4500,
- type: '',
- customClass: '',
- iconClass: '',
- onClose: null,
- closed: false,
- top: null,
- timer: null
- };
- },
- computed: {
- typeClass: function typeClass() {
- return this.type && typeMap[this.type] ? 'el-icon-' + typeMap[this.type] : '';
- }
- },
- watch: {
- closed: function closed(newVal) {
- if (newVal) {
- this.visible = false;
- this.$el.addEventListener('transitionend', this.destroyElement);
- }
- }
- },
- methods: {
- destroyElement: function destroyElement() {
- this.$el.removeEventListener('transitionend', this.destroyElement);
- this.$destroy(true);
- this.$el.parentNode.removeChild(this.$el);
- },
- close: function close() {
- this.closed = true;
- if (typeof this.onClose === 'function') {
- this.onClose();
- }
- },
- clearTimer: function clearTimer() {
- clearTimeout(this.timer);
- },
- startTimer: function startTimer() {
- var _this = this;
- if (this.duration > 0) {
- this.timer = setTimeout(function () {
- if (!_this.closed) {
- _this.close();
- }
- }, this.duration);
- }
- }
- },
- mounted: function mounted() {
- var _this2 = this;
- if (this.duration > 0) {
- this.timer = setTimeout(function () {
- if (!_this2.closed) {
- _this2.close();
- }
- }, this.duration);
- }
- }
- };
- /***/ },
- /***/ 209:
- /***/ function(module, exports) {
- module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
- return _c('transition', {
- attrs: {
- "name": "el-notification-fade"
- }
- }, [_c('div', {
- directives: [{
- name: "show",
- rawName: "v-show",
- value: (_vm.visible),
- expression: "visible"
- }],
- staticClass: "el-notification",
- class: _vm.customClass,
- style: ({
- top: _vm.top ? _vm.top + 'px' : 'auto'
- }),
- on: {
- "mouseenter": function($event) {
- _vm.clearTimer()
- },
- "mouseleave": function($event) {
- _vm.startTimer()
- }
- }
- }, [(_vm.type || _vm.iconClass) ? _c('i', {
- staticClass: "el-notification__icon",
- class: [_vm.typeClass, _vm.iconClass]
- }) : _vm._e(), _c('div', {
- staticClass: "el-notification__group",
- class: {
- 'is-with-icon': _vm.typeClass || _vm.iconClass
- }
- }, [_c('h2', {
- staticClass: "el-notification__title",
- domProps: {
- "textContent": _vm._s(_vm.title)
- }
- }), _c('div', {
- staticClass: "el-notification__content"
- }, [_vm._t("default", [_vm._v(_vm._s(_vm.message))])], 2), _c('div', {
- staticClass: "el-notification__closeBtn el-icon-close",
- on: {
- "click": _vm.close
- }
- })])])])
- },staticRenderFns: []}
- /***/ }
- /******/ });
|