| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- !(function (t) {
- const e = {};function n(r) {
- if (e[r]) return e[r].exports;const a = e[r] = { i: r, l: !1, exports: {} };return t[r].call(a.exports, a, a.exports, n), a.l = !0, a.exports;
- }n.m = t, n.c = e, n.d = function (t, e, r) {
- n.o(t, e) || Object.defineProperty(t, e, { enumerable: !0, get: r });
- }, n.r = function (t) {
- 'undefined' !== typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { value: 'Module' }), Object.defineProperty(t, '__esModule', { value: !0 });
- }, n.t = function (t, e) {
- if (1 & e && (t = n(t)), 8 & e) return t;if (4 & e && 'object' === typeof t && t && t.__esModule) return t;const r = Object.create(null);if (n.r(r), Object.defineProperty(r, 'default', { enumerable: !0, value: t }), 2 & e && 'string' !== typeof t) for (const a in t)n.d(r, a, (e => t[e]).bind(null, a));return r;
- }, n.n = function (t) {
- const e = t && t.__esModule ? function () {
- return t.default;
- } : function () {
- return t;
- };return n.d(e, 'a', e), e;
- }, n.o = function (t, e) {
- return Object.prototype.hasOwnProperty.call(t, e);
- }, n.p = '', n(n.s = 36);
- }({ 0(t, e, n) {
- 'use strict';function r(t) {
- return (function (t) {
- if (Array.isArray(t)) {
- for (var e = 0, n = new Array(t.length);e < t.length;e++)n[e] = t[e];return n;
- }
- }(t)) || (function (t) {
- if (Symbol.iterator in Object(t) || '[object Arguments]' === Object.prototype.toString.call(t)) return Array.from(t);
- }(t)) || (function () {
- throw new TypeError('Invalid attempt to spread non-iterable instance');
- }());
- } function a(t, e) {
- let n = Object.keys(t);return Object.getOwnPropertySymbols && n.push.apply(n, Object.getOwnPropertySymbols(t)), e && (n = n.filter(e => Object.getOwnPropertyDescriptor(t, e).enumerable)), n;
- } function c(t) {
- for (let e = 1;e < arguments.length;e++) {
- var n = null != arguments[e] ? arguments[e] : {};e % 2 ? a(n, !0).forEach((e) => {
- o(t, e, n[e]);
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : a(n).forEach((e) => {
- Object.defineProperty(t, e, Object.getOwnPropertyDescriptor(n, e));
- });
- } return t;
- } function o(t, e, n) {
- return e in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
- } function i(t, e) {
- return (function (t) {
- if (Array.isArray(t)) return t;
- }(t)) || (function (t, e) {
- const n = []; let r = !0; let a = !1; let c = void 0;try {
- for (var o, i = t[Symbol.iterator]();!(r = (o = i.next()).done) && (n.push(o.value), !e || n.length !== e);r = !0);
- } catch (t) {
- a = !0, c = t;
- } finally {
- try {
- r || null == i.return || i.return();
- } finally {
- if (a) throw c;
- }
- } return n;
- }(t, e)) || (function () {
- throw new TypeError('Invalid attempt to destructure non-iterable instance');
- }());
- }n.r(e);e.default = { arrayIsEmpty(t) {
- return !(!t || 0 !== t.length);
- }, timestampToTime(t, e) {
- const n = new Date(t); const r = n.getFullYear().toString(); const a = n.getMonth() + 1 < 10 ? '0'.concat(n.getMonth() + 1) : ''.concat(n.getMonth() + 1); const c = n.getDate() < 10 ? '0'.concat(n.getDate()) : ''.concat(n.getDate()); const o = n.getHours() < 10 ? '0'.concat(n.getHours()) : ''.concat(n.getHours()); const i = n.getMinutes() < 10 ? '0'.concat(n.getMinutes()) : ''.concat(n.getMinutes()); const u = n.getSeconds() < 10 ? '0'.concat(n.getSeconds()) : ''.concat(n.getSeconds()); let s = { value: { Y: r, M: a, D: c, h: o, m: i, s: u }, str: ''.concat(r, '-').concat(a, '-')
- .concat(c, ' ')
- .concat(o, ':')
- .concat(i, ':')
- .concat(u) };switch (e) {
- case 'YYYYMMDDHHMM':s = { value: { Y: r, M: a, D: c, h: o, m: i }, str: ''.concat(r, '-').concat(a, '-')
- .concat(c, ' ')
- .concat(o, ':')
- .concat(i) };break;case 'YYYYMMDD':s = { value: { Y: r, M: a, D: c }, str: ''.concat(r, '-').concat(a, '-')
- .concat(c) };break;case 'YYYYMM':s = { value: { Y: r, M: a }, str: ''.concat(r, '-').concat(a) };break;case 'HHMMSS':s = { value: { h: o, m: i, s: u }, str: ''.concat(o, ':').concat(i, ':')
- .concat(u) };break;case 'HHMM':s = { value: { h: o, m: i }, str: ''.concat(o, ':').concat(i) };
- } return s;
- }, timeToTimestamp(t) {
- return new Date(t.replace(/-/g, '/')).valueOf();
- }, pickerConfirmData(t, e) {
- const n = [];console.log(e);const r = 'number' === typeof e ? [e] : e;return t && t.map((t, e) => {
- n.push(t[r[e]]);
- }), console.log(n), { value: 1 === n.length ? n[0] : n, index: 1 === r.length ? r[0] : r };
- }, getCurrentMonthDay(t, e) {
- return new Date(t, e, 0).getDate();
- }, generateIntervalData(t, e) {
- for (var n = [], a = Number(t), c = Number(e), o = a;o <= c;o++) {
- const i = o < 10 ? '0'.concat(o) : ''.concat(o);n = [].concat(r(n), [i]);
- } return n;
- }, datePickerConfirmData(t, e) {
- let n = ''; let r = void 0; let a = void 0; let c = void 0; let o = void 0; let u = void 0; let s = void 0;switch (e) {
- case 'YYYYMMDDHHMM':var l = i(t, 5);r = l[0], a = l[1], c = l[2], o = l[3], u = l[4], n = ''.concat(r, '-').concat(a, '-')
- .concat(c, ' ')
- .concat(o, ':')
- .concat(u);break;case 'YYYYMMDD':var f = i(t, 3);r = f[0], a = f[1], c = f[2], n = ''.concat(r, '-').concat(a, '-')
- .concat(c);break;case 'YYYYMM':var d = i(t, 2);r = d[0], a = d[1], n = ''.concat(r, '-').concat(a);break;case 'HHMMSS':var p = i(t, 3);o = p[0], u = p[1], s = p[2], n = ''.concat(o, ':').concat(u, ':')
- .concat(s);break;case 'HHMM':var g = i(t, 2);o = g[0], u = g[1], n = ''.concat(o, ':').concat(u);break;default:var v = i(t, 6);r = v[0], a = v[1], c = v[2], o = v[3], u = v[4], s = v[5], n = ''.concat(r, '-').concat(a, '-')
- .concat(c, ' ')
- .concat(o, ':')
- .concat(u, ':')
- .concat(s);
- } return n;
- }, timeAbbreviationFormat(t) {
- return /^[\d]{4}[\/-]{1}[\d]{1,2}[\/-]{1}[\d]{1,2}\s[\d]{1,2}[:][\d]{1,2}[:][\d]{1,2}$/.test(t) ? 'YYYYMMDDHHMMSS' : /^[\d]{4}[\/-]{1}[\d]{1,2}[\/-]{1}[\d]{1,2}\s[\d]{1,2}[:][\d]{1,2}$/.test(t) ? 'YYYYMMDDHHMM' : /^[\d]{4}[\/-]{1}[\d]{1,2}[\/-]{1}[\d]{1,2}$/.test(t) ? 'YYYYMMDD' : /^(\d{4})-(\d{2})$/.test(t) ? 'YYYYMM' : /^[\d]{1,2}[:][\d]{1,2}[:][\d]{1,2}$/.test(t) ? 'HHMMSS' : /^[\d]{1,2}[:][\d]{1,2}$/.test(t) ? 'HHMM' : '';
- }, timeToFormatTimestamp(t) {
- const e = i(t.split(':'), 3); const n = e[0]; const a = e[1]; const o = e[2]; let u = {}; let s = [];return void 0 !== n && (u = c({}, u, { h: n }), s = [].concat(r(s), [n])), void 0 !== a && (u = c({}, u, { m: a }), s = [].concat(r(s), [a])), void 0 !== o && (u = c({}, u, { s: o }), s = [].concat(r(s), [o])), { value: u, str: s.join(':') };
- } };
- }, 36(t, e, n) {
- 'use strict';n.r(e);const r = n(0);function a(t, e) {
- let n = Object.keys(t);return Object.getOwnPropertySymbols && n.push.apply(n, Object.getOwnPropertySymbols(t)), e && (n = n.filter(e => Object.getOwnPropertyDescriptor(t, e).enumerable)), n;
- } function c(t) {
- for (let e = 1;e < arguments.length;e++) {
- var n = null != arguments[e] ? arguments[e] : {};e % 2 ? a(n, !0).forEach((e) => {
- o(t, e, n[e]);
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : a(n).forEach((e) => {
- Object.defineProperty(t, e, Object.getOwnPropertyDescriptor(n, e));
- });
- } return t;
- } function o(t, e, n) {
- return e in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
- }Component({ properties: { range: { type: Array, value: [], observer() {
- this.__init();
- } }, mode: { type: String, value: 'selector' }, value: { type: Array, optionalTypes: [Number] }, disabled: { type: Boolean, value: !1 }, indicatorStyle: String, indicatorClass: String, maskClass: String, maskStyle: String, columnClass: String }, data: { prefixed: 'seal', isConfirmDisabled: !1, baseAttr: {}, pickerData: {} }, created() {}, attached() {
- this.__init();
- }, methods: { __init() {
- const t = this.data.mode;'selector' === t ? this._handleSelectorData() : 'multiSelector' === t && this._handleMultiSelectorData();
- }, _handleSelectorData() {
- const t = this.data; const e = t.range; const n = t.value; const a = [e]; let c = [];c = r.default.arrayIsEmpty([n]) ? a.map(() => 0) : [Number(n)], this.setData({ pickerData: { range: a, innerValue: c } });
- }, _handleMultiSelectorData() {
- const t = this.data; const e = t.range; const n = t.value; let a = [];a = r.default.arrayIsEmpty(n) ? e.map(() => 0) : n, this.setData({ pickerData: { innerValue: a, range: e } });
- }, _handleChange(t) {
- const e = this.data.pickerData; const n = t.detail.value;this.setData({ pickerData: c({}, e, { innerValue: n }) });const a = r.default.pickerConfirmData(e.range, n);this.triggerEvent('change', a);
- }, _handleCancel() {
- this.triggerEvent('cancel', {});
- }, _handleConfirm() {
- const t = this.data; const e = t.pickerData; const n = t.isConfirmDisabled; const a = e.range; const c = e.innerValue; const o = r.default.pickerConfirmData(a, c);!n && this.triggerEvent('confirm', o);
- }, _handlePickerStart() {
- this.setData({ isConfirmDisabled: !0 }), this.triggerEvent('pickstart', {});
- }, _handlePickerEnd() {
- this.setData({ isConfirmDisabled: !1 }), this.triggerEvent('pickend', {});
- } } });
- } }));
|