UNPKG

@insaic/neon

Version:

A Mobile UI Components built on Vue

387 lines (338 loc) 11.9 kB
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] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = 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; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 251); /******/ }) /************************************************************************/ /******/ ({ /***/ 0: /***/ (function(module, exports) { /* globals __VUE_SSR_CONTEXT__ */ // IMPORTANT: Do NOT use ES2015 features in this file. // This module is a runtime utility for cleaner component module output and will // be included in the final webpack user bundle. module.exports = function normalizeComponent ( rawScriptExports, compiledTemplate, functionalTemplate, injectStyles, scopeId, moduleIdentifier /* server only */ ) { 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 options._compiled = true } // functional template if (functionalTemplate) { options.functional = true } // scopedId if (scopeId) { options._scopeId = scopeId } var hook if (moduleIdentifier) { // server build hook = function (context) { // 2.3 injection context = context || // cached call (this.$vnode && this.$vnode.ssrContext) || // stateful (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional // 2.2 with runInNewContext: true if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { context = __VUE_SSR_CONTEXT__ } // inject component styles if (injectStyles) { injectStyles.call(this, context) } // register component module identifier for async chunk inferrence if (context && context._registeredComponents) { context._registeredComponents.add(moduleIdentifier) } } // used by ssr in case component is cached and beforeCreate // never gets called options._ssrRegister = hook } else if (injectStyles) { hook = injectStyles } if (hook) { var functional = options.functional var existing = functional ? options.render : options.beforeCreate if (!functional) { // inject component registration as beforeCreate hook options.beforeCreate = existing ? [].concat(existing, hook) : [hook] } else { // for template-only hot-reload because in that case the render fn doesn't // go through the normalizer options._injectStyles = hook // register for functioal component in vue file options.render = function renderWithStyleInjection (h, context) { hook.call(context) return existing(h, context) } } } return { esModule: esModule, exports: scriptExports, options: options } } /***/ }), /***/ 131: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /* harmony default export */ __webpack_exports__["a"] = ({ name: 'sq-number-keyboard', props: { value: { type: Boolean, required: true }, type: { type: String, default: 'number', validator: function validator(value) { return ['number', 'amount', 'idcard'].indexOf(value) > -1; } }, zIndex: { type: Number, default: 100 }, confirmText: { type: String, default: '确定' } }, computed: { extraKey: function extraKey() { var type = { number: '', amount: '.', idcard: 'X' }; return type[this.type]; } }, data: function data() { return { isShow: this.value, keyboardRef: 'keyboardRef' + this._uid }; }, methods: { setValue: function setValue(e) { var key = e.target.dataset.key; if (key === '') return; if (key === this.extraKey || +key < 10) { this.$emit('key-click', key); } else if (key === 'keyboard-down') { this.isShow = false; this.$emit('input', false); } }, delateKey: function delateKey() { this.$emit('delete'); }, confirm: function confirm() { this.$emit('confirm'); }, closeKeyboard: function closeKeyboard() { if (!this.$refs.hasOwnProperty(this.keyboardRef) || !this.$refs[this.keyboardRef]) { return; } var isContains = this.$refs[this.keyboardRef].contains(event.target); if (!isContains && this.isShow) { this.isShow = false; this.$emit('input', false); } } }, watch: { value: { handler: function handler(val, oldVal) { this.isShow = val; } } }, mounted: function mounted() { var _this = this; this.$nextTick(function () { document.addEventListener('click', _this.closeKeyboard, false); }); }, beforeDestroy: function beforeDestroy() { document.removeEventListener('click', this.closeKeyboard); } }); /***/ }), /***/ 251: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_index_vue__ = __webpack_require__(252); __WEBPACK_IMPORTED_MODULE_0__src_index_vue__["a" /* default */].install = function (Vue) { Vue.component(__WEBPACK_IMPORTED_MODULE_0__src_index_vue__["a" /* default */].name, __WEBPACK_IMPORTED_MODULE_0__src_index_vue__["a" /* default */]); }; /* harmony default export */ __webpack_exports__["default"] = (__WEBPACK_IMPORTED_MODULE_0__src_index_vue__["a" /* default */]); /***/ }), /***/ 252: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__ = __webpack_require__(131); /* unused harmony namespace reexport */ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ba57999a_hasScoped_false_transformToRequire_video_src_poster_source_src_img_src_image_xlink_href_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__ = __webpack_require__(254); function injectStyle (ssrContext) { __webpack_require__(253) } var normalizeComponent = __webpack_require__(0) /* script */ /* template */ /* template functional */ var __vue_template_functional__ = false /* styles */ var __vue_styles__ = injectStyle /* scopeId */ var __vue_scopeId__ = null /* moduleIdentifier (server only) */ var __vue_module_identifier__ = null var Component = normalizeComponent( __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__["a" /* default */], __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ba57999a_hasScoped_false_transformToRequire_video_src_poster_source_src_img_src_image_xlink_href_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__["a" /* default */], __vue_template_functional__, __vue_styles__, __vue_scopeId__, __vue_module_identifier__ ) /* harmony default export */ __webpack_exports__["a"] = (Component.exports); /***/ }), /***/ 253: /***/ (function(module, exports) { // removed by extract-text-webpack-plugin /***/ }), /***/ 254: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{"name":"ry-slide-bottom"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isShow),expression:"isShow"}],ref:_vm.keyboardRef,staticClass:"sq-number-keyboard",style:({'zIndex': _vm.zIndex})},[_c('div',{staticClass:"sq-number-keyboard-value",on:{"click":_vm.setValue}},_vm._l((12),function(item,index){return _c('div',{key:index,staticClass:"sq-number-keyboard-key"},[(index + 1 === 10)?_c('span',{staticClass:"sq-number-keyboard-key-item",class:{'sq-number-keyboard-key-active': _vm.extraKey },style:({ 'fontWeight': _vm.extraKey === '.' ? '700' : '' }),attrs:{"data-key":_vm.extraKey}},[_vm._v("\n "+_vm._s(_vm.extraKey)+"\n ")]):(index + 1 === 11)?_c('span',{staticClass:"sq-number-keyboard-key-item sq-number-keyboard-key-active",attrs:{"data-key":"0"}},[_vm._v("0")]):(index + 1 === 12)?_c('span',{staticClass:"sq-number-keyboard-key-item",attrs:{"data-key":"keyboard-down"}},[_c('i',{staticClass:"sq-icon sq-icon-keyboard-down",attrs:{"data-key":"keyboard-down"}})]):_c('span',{staticClass:"sq-number-keyboard-key-item sq-number-keyboard-key-active",attrs:{"data-key":index + 1}},[_vm._v(_vm._s(index + 1))])])})),_vm._v(" "),_c('div',{staticClass:"sq-number-keyboard-button"},[_c('div',{staticClass:"sq-number-keyboard-delate sq-number-keyboard-key-active",on:{"click":_vm.delateKey}},[_c('i',{staticClass:"sq-icon sq-icon-keyboard-remove"})]),_vm._v(" "),_c('div',{staticClass:"sq-number-keyboard-confirm",on:{"click":_vm.confirm}},[_vm._v(_vm._s(_vm.confirmText))])])])])} var staticRenderFns = [] var esExports = { render: render, staticRenderFns: staticRenderFns } /* harmony default export */ __webpack_exports__["a"] = (esExports); /***/ }) /******/ });