@opentiny/vue-search-box 3.29.0 → 3.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.css +7 -0
- package/index.js +576 -589
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +22 -6
package/index.js
CHANGED
|
@@ -2,18 +2,18 @@ import './index.css';
|
|
|
2
2
|
import { defineComponent as ke, $prefix as Ne, $props as we, setup as Pe } from "@opentiny/vue-common";
|
|
3
3
|
import { TinyDropdownItem as Ae, TinyFormItem as ze, TinyCheckbox as lt, TinyCheckboxGroup as at, TinyDatePicker as Ue, TinyInput as je, TinyButton as Ke, TinyLoading as st, TinyTag as rt, TinyDropdown as it, TinyDropdownMenu as pt, TinyTooltip as ut, TinyForm as ct, TinyPopover as dt, TinySelect as mt, TinyOption as ht } from "@opentiny/vue";
|
|
4
4
|
import { iconSearch as ft, iconClose as vt, iconHelpQuery as bt } from "@opentiny/vue-icon";
|
|
5
|
-
import { resolveComponent as x, openBlock as I, createElementBlock as M, withDirectives as Y, createVNode as D, withCtx as E, createElementVNode as S, toDisplayString as w, vShow as J, Fragment as H, renderList as z, createBlock as F, createCommentVNode as B, createTextVNode as G, resolveDirective as gt, normalizeClass as ve, normalizeStyle as
|
|
6
|
-
const yt = (e, t,
|
|
7
|
-
if (typeof e == "string" && typeof
|
|
5
|
+
import { resolveComponent as x, openBlock as I, createElementBlock as M, withDirectives as Y, createVNode as D, withCtx as E, createElementVNode as S, toDisplayString as w, vShow as J, Fragment as H, renderList as z, createBlock as F, createCommentVNode as B, createTextVNode as G, resolveDirective as gt, normalizeClass as ve, normalizeStyle as ne, withModifiers as Z, withKeys as He, renderSlot as fe, mergeProps as Ie } from "vue";
|
|
6
|
+
const yt = (e, t, n, o = "0") => {
|
|
7
|
+
if (typeof e == "string" && typeof o == "string" && Ge(t)) {
|
|
8
8
|
let d = e.length - t;
|
|
9
9
|
if (d > 0)
|
|
10
|
-
return
|
|
10
|
+
return n ? e.substr(0, t) : e.substr(d, t);
|
|
11
11
|
{
|
|
12
12
|
const c = [];
|
|
13
|
-
for (d = Math.abs(d) /
|
|
14
|
-
c.push(
|
|
13
|
+
for (d = Math.abs(d) / o.length; d > 0; d--)
|
|
14
|
+
c.push(o);
|
|
15
15
|
const f = c.join("");
|
|
16
|
-
return
|
|
16
|
+
return n ? e + f : f + e;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
}, It = Object.prototype.toString, Vt = Object.prototype.hasOwnProperty, kt = Vt.toString;
|
|
@@ -55,20 +55,20 @@ const wt = {
|
|
|
55
55
|
MILLISECOND: 999
|
|
56
56
|
}, Lt = "-12:00,-11:00,-10:00,-09:30,-08:00,-07:00,-06:00,-05:00,-04:30,-04:00,-03:30,-02:00,-01:00", _t = "-00:00,+00:00,+01:00,+02:00,+03:00,+03:30,+04:00,+04:30,+05:00,+05:30,+05:45,+06:00", Rt = "+06:30,+07:00,+08:00,+09:00,+10:00,+10:30,+11:00,+11:30,+12:00,+12:45,+13:00,+14:00", Nt = [].concat(Lt.split(","), _t.split(","), Rt.split(",")), Pt = (e) => {
|
|
57
57
|
const t = 0 - e.getTimezoneOffset() / 60;
|
|
58
|
-
let
|
|
59
|
-
return t === 0 ?
|
|
60
|
-
}, qe = (e) => e % 400 === 0 || e % 4 === 0 && e % 100 !== 0, Ze = (e) => e > le.MILLISECOND ? Number(String(e).substring(0, 3)) : e, Oe = ({ year: e, month: t, date:
|
|
58
|
+
let n;
|
|
59
|
+
return t === 0 ? n = "Z" : t > 0 ? n = "+" + (t > 10 ? t : "0" + t) + "00" : n = (t < -10 ? t : "-0" + -t) + "00", n;
|
|
60
|
+
}, qe = (e) => e % 400 === 0 || e % 4 === 0 && e % 100 !== 0, Ze = (e) => e > le.MILLISECOND ? Number(String(e).substring(0, 3)) : e, Oe = ({ year: e, month: t, date: n, hours: o, minutes: d, seconds: c, milliseconds: f }) => {
|
|
61
61
|
let b = Ye[t];
|
|
62
|
-
if (qe(e) && t === 1 && (b += 1),
|
|
63
|
-
return new Date(e, t,
|
|
62
|
+
if (qe(e) && t === 1 && (b += 1), n <= b)
|
|
63
|
+
return new Date(e, t, n, o, d, c, Ze(f));
|
|
64
64
|
}, Ot = (e) => {
|
|
65
65
|
if (e.length === 23) {
|
|
66
|
-
const t = Number(e[1]),
|
|
66
|
+
const t = Number(e[1]), n = e[3] - 1, o = Number(e[9] || 1), d = e[15] || 0, c = e[17] || 0, f = e[20] || 0, b = e[22] || 0;
|
|
67
67
|
return Oe({
|
|
68
|
-
date:
|
|
68
|
+
date: o,
|
|
69
69
|
year: t,
|
|
70
70
|
hours: d,
|
|
71
|
-
month:
|
|
71
|
+
month: n,
|
|
72
72
|
seconds: f,
|
|
73
73
|
minutes: c,
|
|
74
74
|
milliseconds: b
|
|
@@ -76,11 +76,11 @@ const wt = {
|
|
|
76
76
|
}
|
|
77
77
|
}, xt = (e) => {
|
|
78
78
|
if (e.length === 22) {
|
|
79
|
-
const t = Number(e[12]),
|
|
79
|
+
const t = Number(e[12]), n = e[1] - 1, o = Number(e[6] || 1), d = e[14] || 0, c = e[16] || 0, f = e[19] || 0, b = e[21] || 0;
|
|
80
80
|
return Oe({
|
|
81
81
|
year: t,
|
|
82
|
-
month:
|
|
83
|
-
date:
|
|
82
|
+
month: n,
|
|
83
|
+
date: o,
|
|
84
84
|
hours: d,
|
|
85
85
|
minutes: c,
|
|
86
86
|
seconds: f,
|
|
@@ -90,33 +90,33 @@ const wt = {
|
|
|
90
90
|
}, Ft = (e) => {
|
|
91
91
|
if (e.length !== 25)
|
|
92
92
|
return;
|
|
93
|
-
const t = Number(e[1]),
|
|
94
|
-
let
|
|
95
|
-
const
|
|
96
|
-
let p = Ye[
|
|
97
|
-
if (qe(t) &&
|
|
98
|
-
if (
|
|
93
|
+
const t = Number(e[1]), n = e[2] - 1, o = Number(e[6]), d = new Date(t, n, o).getTimezoneOffset(), c = e[12] || 0, f = e[14] || 0, b = e[17] || 0, m = e[19] || 0;
|
|
94
|
+
let s = e[20];
|
|
95
|
+
const r = e[21], u = e[22] || 0, i = e[24] || 0;
|
|
96
|
+
let p = Ye[n], v, l;
|
|
97
|
+
if (qe(t) && n === 1 && (p += 1), o <= p) {
|
|
98
|
+
if (s === "Z")
|
|
99
99
|
v = c - d / 60, l = f;
|
|
100
100
|
else {
|
|
101
|
-
if (
|
|
101
|
+
if (s.includes(":") || (s = s.substr(0, 3) + ":" + s.substr(3)), !Nt.includes(s))
|
|
102
102
|
return;
|
|
103
|
-
v =
|
|
103
|
+
v = r === "+" ? c - u - d / 60 : Number(c) + Number(u) - d / 60, l = r === "+" ? f - i : Number(f) + Number(i);
|
|
104
104
|
}
|
|
105
|
-
return new Date(t,
|
|
105
|
+
return new Date(t, n, o, v, l, b, Ze(m));
|
|
106
106
|
}
|
|
107
107
|
}, Ce = [
|
|
108
108
|
[Ct, Ot],
|
|
109
109
|
[Dt, xt],
|
|
110
110
|
[Et, Ft]
|
|
111
111
|
], Bt = (e) => {
|
|
112
|
-
for (let t = 0,
|
|
113
|
-
const
|
|
114
|
-
if (
|
|
115
|
-
return Ce[t][1](
|
|
112
|
+
for (let t = 0, n = Ce.length; t < n; t++) {
|
|
113
|
+
const o = Ce[t][0].exec(e);
|
|
114
|
+
if (o && o.length > 0)
|
|
115
|
+
return Ce[t][1](o);
|
|
116
116
|
}
|
|
117
|
-
}, Ht = (e, t,
|
|
118
|
-
if (
|
|
119
|
-
switch (
|
|
117
|
+
}, Ht = (e, t, n) => {
|
|
118
|
+
if (n)
|
|
119
|
+
switch (n) {
|
|
120
120
|
case "yyyy":
|
|
121
121
|
case "yy":
|
|
122
122
|
e[0] = t;
|
|
@@ -148,57 +148,57 @@ const wt = {
|
|
|
148
148
|
break;
|
|
149
149
|
}
|
|
150
150
|
}, At = (e, t) => {
|
|
151
|
-
const
|
|
151
|
+
const n = [0, -1, 0, 0, 0, 0];
|
|
152
152
|
if (e.length !== t.length)
|
|
153
|
-
return
|
|
154
|
-
let
|
|
153
|
+
return n;
|
|
154
|
+
let o = 0, d = 0;
|
|
155
155
|
for (let c = 0, f = e.length; c < f; c++) {
|
|
156
156
|
const b = e.substr(c, 1), m = isNaN(Number(b)) || (b == null ? void 0 : b.trim()) === "";
|
|
157
157
|
if (m && b === t.substr(c, 1) || c === f - 1) {
|
|
158
|
-
let
|
|
158
|
+
let s, r;
|
|
159
159
|
if (m) {
|
|
160
|
-
|
|
160
|
+
s = e.substring(o, c), o = c + 1;
|
|
161
161
|
const u = t.indexOf(b, d);
|
|
162
|
-
|
|
162
|
+
r = t.substring(d, u === -1 ? t.length : u), d = u + 1;
|
|
163
163
|
} else
|
|
164
|
-
|
|
165
|
-
(
|
|
164
|
+
s = e.substring(o, f), r = t.substring(d, f);
|
|
165
|
+
(s.length === r.length || s) && Ht(n, s, r);
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
|
-
return
|
|
169
|
-
}, ue = (e, t,
|
|
168
|
+
return n;
|
|
169
|
+
}, ue = (e, t, n) => isNaN(e) || e < t || e > n, zt = ({ year: e, month: t, date: n, hours: o, minutes: d, seconds: c, milliseconds: f }) => ue(e, 0, le.YEAR) || ue(t, 0, le.MONTH) || ue(n, 0, le.DATE) || ue(o, 0, le.HOUR) || ue(d, 0, le.MINUTE) || ue(c, 0, le.SECOND) || ue(f, 0, le.MILLISECOND), Ut = (e, t) => {
|
|
170
170
|
if (typeof t == "string") {
|
|
171
|
-
const
|
|
171
|
+
const n = At(e, t), o = Number(n[0]), d = Number(n[1]), c = Number(n[2] || 1), f = Number(n[3] || 0), b = Number(n[4] || 0), m = Number(n[5] || 0), s = Number(n[6] || 0);
|
|
172
172
|
return zt({
|
|
173
|
-
year:
|
|
173
|
+
year: o,
|
|
174
174
|
month: d,
|
|
175
175
|
date: c,
|
|
176
176
|
hours: f,
|
|
177
177
|
minutes: b,
|
|
178
178
|
seconds: m,
|
|
179
|
-
milliseconds:
|
|
179
|
+
milliseconds: s
|
|
180
180
|
}) ? void 0 : Oe({
|
|
181
|
-
year:
|
|
181
|
+
year: o,
|
|
182
182
|
date: c,
|
|
183
183
|
month: d,
|
|
184
184
|
minutes: b,
|
|
185
185
|
hours: f,
|
|
186
|
-
milliseconds:
|
|
186
|
+
milliseconds: s,
|
|
187
187
|
seconds: m
|
|
188
188
|
});
|
|
189
189
|
} else
|
|
190
190
|
return Bt(e);
|
|
191
|
-
}, Xe = (e, t,
|
|
192
|
-
let
|
|
193
|
-
if (Ge(e) ?
|
|
194
|
-
const d =
|
|
195
|
-
return
|
|
191
|
+
}, Xe = (e, t, n) => {
|
|
192
|
+
let o;
|
|
193
|
+
if (Ge(e) ? o = new Date(e) : typeof e == "string" && (o = Ut(e, t)), n) {
|
|
194
|
+
const d = n && Xe(n) || new Date(1, 1, 1, 0, 0, 0);
|
|
195
|
+
return o && o < d ? d : o;
|
|
196
196
|
}
|
|
197
|
-
return
|
|
197
|
+
return o;
|
|
198
198
|
}, Ee = function(e, t = "yyyy/MM/dd hh:mm:ss") {
|
|
199
199
|
if (Mt(e)) {
|
|
200
200
|
if (typeof t == "string") {
|
|
201
|
-
const
|
|
201
|
+
const n = {
|
|
202
202
|
"y{1,4}": e.getFullYear(),
|
|
203
203
|
"M{1,2}": e.getMonth() + 1,
|
|
204
204
|
"d{1,2}": e.getDate(),
|
|
@@ -209,93 +209,93 @@ const wt = {
|
|
|
209
209
|
"S{1,3}": e.getMilliseconds(),
|
|
210
210
|
"Z{1,1}": Pt(e)
|
|
211
211
|
};
|
|
212
|
-
return Object.keys(
|
|
213
|
-
const d = t.match($t[
|
|
214
|
-
|
|
212
|
+
return Object.keys(n).forEach((o) => {
|
|
213
|
+
const d = t.match($t[o]);
|
|
214
|
+
o && d && d.length && (t = t.replace(d[0], o === "Z{1,1}" ? n[o] : yt(n[o].toString(), d[0].length)));
|
|
215
215
|
}), t;
|
|
216
216
|
}
|
|
217
217
|
} else if (typeof e == "string" && arguments.length >= 2) {
|
|
218
|
-
let
|
|
219
|
-
arguments.length === 2 ? t = void 0 :
|
|
220
|
-
const
|
|
221
|
-
return
|
|
218
|
+
let n = t;
|
|
219
|
+
arguments.length === 2 ? t = void 0 : n = arguments[2];
|
|
220
|
+
const o = Xe(e, t);
|
|
221
|
+
return o ? Ee(o, n) : "";
|
|
222
222
|
}
|
|
223
223
|
}, _ = (e, t = !0) => {
|
|
224
|
-
t ? e.visibleTimer = setTimeout(() => {
|
|
224
|
+
clearTimeout(e.visibleTimer), e.visibleTimer = null, t ? e.visible || (e.visibleTimer = setTimeout(() => {
|
|
225
225
|
e.visible = !0;
|
|
226
|
-
}, 0) :
|
|
226
|
+
}, 0)) : e.visible = !1;
|
|
227
227
|
}, ye = (e, t = !0) => {
|
|
228
228
|
if (!e.instance)
|
|
229
229
|
return;
|
|
230
230
|
e.popoverVisible = t;
|
|
231
|
-
const { dropdownRef:
|
|
232
|
-
t &&
|
|
231
|
+
const { dropdownRef: n } = e.instance;
|
|
232
|
+
t && n.state.visible && (clearTimeout(Number(n.state.timeout)), n.state.timeout = null, n.state.visible = !1);
|
|
233
233
|
}, jt = (e, t = 200) => {
|
|
234
|
-
let
|
|
235
|
-
const
|
|
236
|
-
|
|
237
|
-
e.apply(this, d),
|
|
234
|
+
let n = null;
|
|
235
|
+
const o = function(...d) {
|
|
236
|
+
n && clearTimeout(n), n = setTimeout(() => {
|
|
237
|
+
e.apply(this, d), n = null;
|
|
238
238
|
}, t);
|
|
239
239
|
};
|
|
240
|
-
return
|
|
241
|
-
|
|
242
|
-
},
|
|
243
|
-
},
|
|
240
|
+
return o.cancel = () => {
|
|
241
|
+
n && (clearTimeout(n), n = null);
|
|
242
|
+
}, o;
|
|
243
|
+
}, oe = (e) => parseFloat(e).toString() !== "NaN", ae = (e) => {
|
|
244
244
|
const t = Array.isArray(e) ? [] : {};
|
|
245
245
|
if (e && typeof e == "object") {
|
|
246
|
-
const
|
|
247
|
-
if (
|
|
248
|
-
|
|
249
|
-
e[
|
|
246
|
+
const n = Object.keys(e);
|
|
247
|
+
if (n.length)
|
|
248
|
+
n.forEach((o) => {
|
|
249
|
+
e[o] && typeof e[o] == "object" ? t[o] = ae(e[o]) : t[o] = e[o];
|
|
250
250
|
});
|
|
251
251
|
else
|
|
252
252
|
return e;
|
|
253
253
|
}
|
|
254
254
|
return t;
|
|
255
255
|
}, Te = (e, t = ["mergeTag", "options", "idMapKey"]) => {
|
|
256
|
-
const
|
|
257
|
-
return t.forEach((
|
|
258
|
-
delete o
|
|
259
|
-
}),
|
|
260
|
-
}, ee = (e, t,
|
|
261
|
-
const { valueMap:
|
|
262
|
-
return
|
|
256
|
+
const n = { ...e };
|
|
257
|
+
return t.forEach((o) => {
|
|
258
|
+
delete n[o];
|
|
259
|
+
}), n;
|
|
260
|
+
}, ee = (e, t, n = "") => {
|
|
261
|
+
const { valueMap: o, prevItem: d } = e, c = (d.label || n) + t;
|
|
262
|
+
return o.has(c);
|
|
263
263
|
}, Se = (e) => {
|
|
264
264
|
e.propItem = {}, e.inputValue = "";
|
|
265
|
-
}, X = ({ emit: e, state: t, nextTick:
|
|
265
|
+
}, X = ({ emit: e, state: t, nextTick: n, ...o }) => {
|
|
266
266
|
ye(t, !1);
|
|
267
|
-
const { tagList: d = null, index: c = -1, newTag: f = null, newValue: b = null, oldValue: m = null, isEdit:
|
|
268
|
-
if (
|
|
267
|
+
const { tagList: d = null, index: c = -1, newTag: f = null, newValue: b = null, oldValue: m = null, isEdit: s } = o;
|
|
268
|
+
if (s || Se(t), !d && c === -1 && !b)
|
|
269
269
|
return;
|
|
270
|
-
const
|
|
270
|
+
const r = m || ae(t.innerModelValue);
|
|
271
271
|
let u = [];
|
|
272
|
-
b ? u = [...b] : c !== -1 ? (u = [...t.innerModelValue], f ? u.splice(c, 1, f) : u.splice(c, 1)) : u = [...t.innerModelValue, ...d], t.innerModelValue = u, e("update:modelValue", ae(u)), e("change", ae(u),
|
|
273
|
-
}, se = (e) => e, re = (e, t,
|
|
274
|
-
const
|
|
275
|
-
return
|
|
272
|
+
b ? u = [...b] : c !== -1 ? (u = [...t.innerModelValue], f ? u.splice(c, 1, f) : u.splice(c, 1)) : u = [...t.innerModelValue, ...d], t.innerModelValue = u, e("update:modelValue", ae(u)), e("change", ae(u), r);
|
|
273
|
+
}, se = (e) => e, re = (e, t, n) => {
|
|
274
|
+
const o = t.idMapKey || e.idMapKey;
|
|
275
|
+
return n && n[o] !== void 0 ? { [o]: n[o] } : null;
|
|
276
276
|
};
|
|
277
|
-
function Kt({ props: e, state: t, emit:
|
|
277
|
+
function Kt({ props: e, state: t, emit: n, nextTick: o }) {
|
|
278
278
|
let d = ae(t.inputValue);
|
|
279
|
-
const c = (
|
|
280
|
-
if (
|
|
281
|
-
const
|
|
282
|
-
if (
|
|
283
|
-
const u =
|
|
279
|
+
const c = (s) => {
|
|
280
|
+
if (s) {
|
|
281
|
+
const r = t.recordItems.find((u) => u.label === s.label);
|
|
282
|
+
if (r && r.options) {
|
|
283
|
+
const u = r.options.find((i) => i.label === s.value);
|
|
284
284
|
u && (u.isChecked = !1);
|
|
285
285
|
}
|
|
286
286
|
}
|
|
287
287
|
};
|
|
288
288
|
return {
|
|
289
|
-
deleteTag: (
|
|
290
|
-
_(t, !1), c(
|
|
291
|
-
const
|
|
292
|
-
X({ emit:
|
|
289
|
+
deleteTag: (s) => {
|
|
290
|
+
_(t, !1), c(s);
|
|
291
|
+
const r = e.modelValue.filter((u) => u !== s);
|
|
292
|
+
X({ emit: n, state: t, nextTick: o, newValue: r });
|
|
293
293
|
},
|
|
294
294
|
clearTag: () => {
|
|
295
|
-
_(t, !1), e.modelValue.forEach((
|
|
295
|
+
_(t, !1), e.modelValue.forEach((s) => c(s)), t.propItem = {}, t.inputValue = "", X({ emit: n, state: t, nextTick: o, newValue: [] }), n("clear");
|
|
296
296
|
},
|
|
297
297
|
backspaceDeleteTag: () => {
|
|
298
|
-
var
|
|
298
|
+
var s, r, u;
|
|
299
299
|
if (!t.inputValue) {
|
|
300
300
|
if (t.propItem.label) {
|
|
301
301
|
t.propItem = {};
|
|
@@ -303,175 +303,172 @@ function Kt({ props: e, state: t, emit: o, nextTick: n }) {
|
|
|
303
303
|
}
|
|
304
304
|
if (d === "" && t.inputValue === "") {
|
|
305
305
|
_(t, !1);
|
|
306
|
-
const
|
|
307
|
-
c(e.modelValue[
|
|
306
|
+
const i = e.modelValue.length - 1;
|
|
307
|
+
c(e.modelValue[i]);
|
|
308
308
|
const p = t.innerModelValue.slice(0, e.modelValue.length - 1);
|
|
309
|
-
X({ emit:
|
|
309
|
+
X({ emit: n, state: t, nextTick: o, newValue: p });
|
|
310
310
|
}
|
|
311
|
-
d = t.inputValue, (u = (
|
|
311
|
+
d = t.inputValue, (u = (r = (s = t == null ? void 0 : t.instance) == null ? void 0 : s.refs) == null ? void 0 : r.inputRef) != null && u.$el && t.instance.refs.inputRef.$el.click();
|
|
312
312
|
}
|
|
313
313
|
}
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
|
-
const Gt = async (e, t,
|
|
317
|
-
const { prevItem:
|
|
316
|
+
const Gt = async (e, t, n) => {
|
|
317
|
+
const { prevItem: o, inputEditValue: d } = t, { operators: c } = o, f = Te(o);
|
|
318
318
|
let b = null, m = !0;
|
|
319
|
-
if (await e.$refs.formRef.validateField(["inputEditValue"], (
|
|
320
|
-
|
|
319
|
+
if (await e.$refs.formRef.validateField(["inputEditValue"], (s) => {
|
|
320
|
+
s && (m = !1);
|
|
321
321
|
}), m) {
|
|
322
|
-
let
|
|
323
|
-
const
|
|
322
|
+
let s = null;
|
|
323
|
+
const r = t.operatorValue && c ? { operator: t.operatorValue } : null;
|
|
324
324
|
let u = d;
|
|
325
|
-
const
|
|
325
|
+
const i = {};
|
|
326
326
|
if (Array.isArray(d))
|
|
327
|
-
|
|
327
|
+
i.options = [], u = "", d.forEach((p) => {
|
|
328
328
|
const v = t.currentEditValue.find((h) => h.label === p), l = (v == null ? void 0 : v.label) || p;
|
|
329
329
|
if (u = u ? `${u} | ${l}` : l, v) {
|
|
330
|
-
const h = re(
|
|
331
|
-
|
|
330
|
+
const h = re(n, o, v);
|
|
331
|
+
i.options.push({ label: l, ...h });
|
|
332
332
|
} else
|
|
333
|
-
|
|
333
|
+
i.options.push({ label: l });
|
|
334
334
|
});
|
|
335
335
|
else if (Array.isArray(t.currentEditValue)) {
|
|
336
336
|
const p = t.currentEditValue.find((v) => v.label === u);
|
|
337
|
-
|
|
337
|
+
s = re(n, o, p);
|
|
338
338
|
}
|
|
339
|
-
b = se({ ...f, label: t.selectValue, ...
|
|
339
|
+
b = se({ ...f, label: t.selectValue, ...r, value: u, ...s, ...i });
|
|
340
340
|
}
|
|
341
341
|
return b;
|
|
342
|
-
}, Qe = async (e, t,
|
|
343
|
-
const { prevItem:
|
|
344
|
-
let
|
|
342
|
+
}, Qe = async (e, t, n) => {
|
|
343
|
+
const { prevItem: o } = t, d = `min${o.field}`, c = `max${o.field}`, f = t[d], b = t[c], m = [d, c];
|
|
344
|
+
let s = !0, r = null;
|
|
345
345
|
if (await e.$refs.formRef.validateField(m, (u) => {
|
|
346
|
-
u && (
|
|
347
|
-
}),
|
|
348
|
-
const { field: u, label:
|
|
346
|
+
u && (s = !1);
|
|
347
|
+
}), s) {
|
|
348
|
+
const { field: u, label: i, unit: p, type: v, operators: l } = o, h = p ? `${i}(${p})` : i;
|
|
349
349
|
let g = "";
|
|
350
350
|
f && b ? g = `${f}-${b}` : g = f ? `≥${f}` : `≤${b}`;
|
|
351
|
-
const T = re(
|
|
352
|
-
|
|
351
|
+
const T = re(n, o, o), $ = t.operatorValue && l ? { operator: t.operatorValue } : null;
|
|
352
|
+
r = se({ type: v, field: u, label: h, value: g, ...T, start: f, end: b, ...$ });
|
|
353
353
|
}
|
|
354
|
-
return
|
|
355
|
-
}, $e = async (e, t,
|
|
354
|
+
return r;
|
|
355
|
+
}, $e = async (e, t, n, o) => {
|
|
356
356
|
const { prevItem: d, startDate: c, endDate: f, startDateTime: b, endDateTime: m } = t;
|
|
357
|
-
let
|
|
358
|
-
if (
|
|
357
|
+
let s = null, r = null, u = !0, i = null, p = null;
|
|
358
|
+
if (o ? (s = b, r = m, p = ["startDateTime", "endDateTime"]) : (s = c, r = f, p = ["startDate", "endDate"]), await e.$refs.formRef.validateField(p, (v) => {
|
|
359
359
|
v && (u = !1);
|
|
360
360
|
}), u) {
|
|
361
361
|
const { operators: v } = d, l = Te(d);
|
|
362
362
|
let h = "";
|
|
363
|
-
if (
|
|
364
|
-
if (
|
|
363
|
+
if (s && r) {
|
|
364
|
+
if (s > r)
|
|
365
365
|
return;
|
|
366
|
-
|
|
366
|
+
s === r ? h = s : h = `${s}-${r}`;
|
|
367
367
|
} else
|
|
368
|
-
h =
|
|
369
|
-
const g = re(
|
|
370
|
-
|
|
368
|
+
h = s ? `≥${s}` : `≤${r}`;
|
|
369
|
+
const g = re(n, d, d), T = t.operatorValue && v ? { operator: t.operatorValue } : null;
|
|
370
|
+
i = se({ ...l, value: h, start: s, end: r, ...g, ...T });
|
|
371
371
|
}
|
|
372
|
-
return
|
|
373
|
-
}, We = (e, t,
|
|
374
|
-
const { prevItem:
|
|
375
|
-
(e.curMinNumVar !==
|
|
376
|
-
const { curMinNumVar: u, curMaxNumVar:
|
|
372
|
+
return i;
|
|
373
|
+
}, We = (e, t, n) => {
|
|
374
|
+
const { prevItem: o } = e, { field: d, start: c, end: f, min: b = o.min, max: m = o.max } = t, s = `min${d}`, r = `max${d}`;
|
|
375
|
+
(e.curMinNumVar !== s || e.curMaxNumVar !== r) && (delete e[e.curMinNumVar], delete e[e.curMaxNumVar], delete e.formRules[e.curMinNumVar], delete e.formRules[e.curMaxNumVar], e.curMinNumVar = s, e.curMaxNumVar = r), e[e.curMinNumVar] = c, e[e.curMaxNumVar] = f;
|
|
376
|
+
const { curMinNumVar: u, curMaxNumVar: i } = e, p = oe(b), v = oe(m);
|
|
377
377
|
p || v ? (e.formRules[u] = {
|
|
378
378
|
validator: (l, h, g) => {
|
|
379
|
-
const T =
|
|
380
|
-
!T &&
|
|
379
|
+
const T = oe(h);
|
|
380
|
+
!T && oe(e[i]) || T && (p && !v && h >= b || !p && v && h <= m || h >= b && h <= m) ? g() : (e.numberShowMessage = !!(h || e[i]), g(new Error(n("tvp.tvpSearchbox.rangeMinErr", [b, m]))));
|
|
381
381
|
}
|
|
382
|
-
}, e.formRules[
|
|
382
|
+
}, e.formRules[i] = {
|
|
383
383
|
validator: (l, h, g) => {
|
|
384
|
-
const T =
|
|
385
|
-
!a && T || a && (y && !v && h >= $ || !y && v && h <= m || h >= $ && h <= m) ? g() : g(!a && !T ? new Error(
|
|
384
|
+
const T = oe(e[u]), $ = T && b < e[u] ? Number(e[u]) : b, y = oe($), a = oe(h);
|
|
385
|
+
!a && T || a && (y && !v && h >= $ || !y && v && h <= m || h >= $ && h <= m) ? g() : g(!a && !T ? new Error(n("tvp.tvpSearchbox.rangeNumberTitle")) : new Error(n("tvp.tvpSearchbox.rangeMaxErr")));
|
|
386
386
|
}
|
|
387
|
-
}) : e.formRules[
|
|
387
|
+
}) : e.formRules[i] = {
|
|
388
388
|
validator: (l, h, g) => {
|
|
389
|
-
const T = e[u], $ =
|
|
390
|
-
$ && !y || !$ && y || $ && y && h >= Number(T) ? g() : g(!$ && !y ? new Error(
|
|
389
|
+
const T = e[u], $ = oe(h), y = oe(T);
|
|
390
|
+
$ && !y || !$ && y || $ && y && h >= Number(T) ? g() : g(!$ && !y ? new Error(n("tvp.tvpSearchbox.rangeNumberTitle")) : new Error(n("tvp.tvpSearchbox.rangeMaxErr")));
|
|
391
391
|
}
|
|
392
392
|
};
|
|
393
393
|
};
|
|
394
|
-
function Yt({ props: e, emit: t, state:
|
|
395
|
-
const m = f ||
|
|
394
|
+
function Yt({ props: e, emit: t, state: n, t: o, format: d, nextTick: c, vm: f, cancelHandleInput: b }) {
|
|
395
|
+
const m = f || n.instance, s = (y) => {
|
|
396
396
|
var L, C, P;
|
|
397
397
|
const { start: a, end: V, type: k } = y;
|
|
398
|
-
if (
|
|
399
|
-
We(
|
|
398
|
+
if (n.backupList = y.options, k === "numRange")
|
|
399
|
+
We(n, y, o);
|
|
400
400
|
else if (k === "dateRange") {
|
|
401
|
-
const { dateRangeFormat: R } =
|
|
402
|
-
if (!
|
|
401
|
+
const { dateRangeFormat: R } = n;
|
|
402
|
+
if (!n.startDate && a) {
|
|
403
403
|
const N = d(a, R);
|
|
404
|
-
|
|
404
|
+
n.startDate = n.endDate < N ? null : N;
|
|
405
405
|
}
|
|
406
|
-
if (!
|
|
406
|
+
if (!n.endDate && V) {
|
|
407
407
|
const N = d(V, R);
|
|
408
|
-
|
|
408
|
+
n.endDate = N < n.startDate ? null : N;
|
|
409
409
|
}
|
|
410
410
|
} else if (k === "datetimeRange") {
|
|
411
|
-
const { datetimeRangeFormat: R } =
|
|
412
|
-
if (!
|
|
411
|
+
const { datetimeRangeFormat: R } = n;
|
|
412
|
+
if (!n.startDateTime && a) {
|
|
413
413
|
const N = d(a, R);
|
|
414
|
-
|
|
414
|
+
n.startDateTime = n.endDateTime < N ? null : N;
|
|
415
415
|
}
|
|
416
|
-
if (!
|
|
416
|
+
if (!n.endDateTime && V) {
|
|
417
417
|
const N = d(V, R);
|
|
418
|
-
|
|
418
|
+
n.endDateTime = N < n.startDateTime ? null : N;
|
|
419
419
|
}
|
|
420
420
|
} else
|
|
421
|
-
|
|
422
|
-
ee(
|
|
421
|
+
n.backupList && k === "checkbox" && (n.filterList = n.backupList, n.checkboxGroup = [], (L = n.backupList) == null || L.forEach((R) => {
|
|
422
|
+
ee(n, R.label) && n.checkboxGroup.push(`${y.label}${R.label}`), R.isFilter = !1;
|
|
423
423
|
}));
|
|
424
|
-
k !== "checkbox" && ((C =
|
|
425
|
-
R.isFilter = !1, R.isChecked = ee(
|
|
426
|
-
})),
|
|
427
|
-
},
|
|
424
|
+
k !== "checkbox" && ((C = n.backupList) != null && C.length) && ((P = n.backupList) == null || P.forEach((R) => {
|
|
425
|
+
R.isFilter = !1, R.isChecked = ee(n, R.label);
|
|
426
|
+
})), n.currentOperators = null, !n.backupList && !["dateRange", "datetimeRange", "numRange", "custom"].includes(k) ? _(n, !1) : _(n);
|
|
427
|
+
}, r = (y) => {
|
|
428
428
|
var C;
|
|
429
429
|
const { field: a, label: V } = y;
|
|
430
|
-
|
|
430
|
+
n.propItem = { ...n.propItem, label: V }, t("first-level-select", a);
|
|
431
431
|
const k = (C = m.$refs) == null ? void 0 : C.inputRef;
|
|
432
|
-
|
|
433
|
-
o.operatorValue = ":", s(y, y, V, "");
|
|
434
|
-
return;
|
|
435
|
-
}
|
|
432
|
+
n.prevItem = y, n.backupPrevItem = y;
|
|
436
433
|
const { operators: L } = y;
|
|
437
|
-
L != null && L.length ? (
|
|
434
|
+
L != null && L.length ? (n.operatorValue = "", n.currentOperators = L, _(n)) : (n.operatorValue = ":", s(y)), n.inputValue = "", k.focus();
|
|
438
435
|
}, u = (y) => {
|
|
439
|
-
|
|
440
|
-
},
|
|
441
|
-
const { replace: L, operators: C, mergeTag: P } = y, R = Te(y), { indexMap: N } =
|
|
436
|
+
n.operatorValue = y, s(n.prevItem);
|
|
437
|
+
}, i = (y, a, V, k) => {
|
|
438
|
+
const { replace: L, operators: C, mergeTag: P } = y, R = Te(y), { indexMap: N } = n, A = N.get(V), O = re(e, y, a), j = n.operatorValue && C ? { operator: n.operatorValue } : null;
|
|
442
439
|
let Q = null;
|
|
443
440
|
if (P) {
|
|
444
441
|
const W = { label: k, ...O };
|
|
445
442
|
if (A >= 0) {
|
|
446
|
-
const pe = `${
|
|
447
|
-
Q = se({ ...
|
|
443
|
+
const pe = `${n.innerModelValue[A].value} | ${k}`, de = [...n.innerModelValue[A].options, W];
|
|
444
|
+
Q = se({ ...n.innerModelValue[A], value: pe, options: de });
|
|
448
445
|
} else
|
|
449
446
|
Q = se({ ...R, label: V, value: k, options: [W] });
|
|
450
447
|
} else
|
|
451
448
|
Q = se({ ...R, label: V, value: k, ...O, ...j });
|
|
452
|
-
if (ee(
|
|
453
|
-
Se(
|
|
449
|
+
if (ee(n, k, V)) {
|
|
450
|
+
Se(n);
|
|
454
451
|
return;
|
|
455
452
|
}
|
|
456
|
-
_(
|
|
457
|
-
const ce = ae(
|
|
453
|
+
_(n, !1);
|
|
454
|
+
const ce = ae(n.innerModelValue);
|
|
458
455
|
let ie = [];
|
|
459
456
|
if ((L || P) && A >= 0) {
|
|
460
|
-
const W = [...
|
|
457
|
+
const W = [...n.innerModelValue];
|
|
461
458
|
W.splice(A, 1), ie = [...W, Q];
|
|
462
459
|
} else
|
|
463
|
-
ie = [...
|
|
464
|
-
X({ emit: t, state:
|
|
460
|
+
ie = [...n.innerModelValue, Q];
|
|
461
|
+
X({ emit: t, state: n, nextTick: c, newValue: ie, oldValue: ce });
|
|
465
462
|
}, p = (y) => {
|
|
466
|
-
var a;
|
|
467
|
-
(a =
|
|
463
|
+
var a, V;
|
|
464
|
+
T(), (V = (a = m.$refs) == null ? void 0 : a.inputRef) == null || V.focus();
|
|
468
465
|
}, v = (y, a = !1) => {
|
|
469
466
|
var C;
|
|
470
|
-
_(
|
|
471
|
-
const { prevItem: V } =
|
|
472
|
-
if (!ee(
|
|
473
|
-
const P =
|
|
474
|
-
|
|
467
|
+
_(n, !1), a && (n.prevItem = y, n.backupPrevItem = y);
|
|
468
|
+
const { prevItem: V } = n, k = y.value || y.label, L = (C = m.$refs) == null ? void 0 : C.inputRef;
|
|
469
|
+
if (!ee(n, k)) {
|
|
470
|
+
const P = n.propItem.label || y.label;
|
|
471
|
+
i(V, y, P, k);
|
|
475
472
|
}
|
|
476
473
|
L.focus();
|
|
477
474
|
}, l = (y, a) => {
|
|
@@ -483,15 +480,15 @@ function Yt({ props: e, emit: t, state: o, t: n, format: d, nextTick: c, vm: f,
|
|
|
483
480
|
return;
|
|
484
481
|
if (!e.modelValue.find((L) => L.value === V.label)) {
|
|
485
482
|
const L = a.label, C = V.label;
|
|
486
|
-
|
|
483
|
+
i(a, V, L, C);
|
|
487
484
|
return;
|
|
488
485
|
}
|
|
489
486
|
} else
|
|
490
|
-
t("search",
|
|
487
|
+
t("search", n.innerModelValue);
|
|
491
488
|
}, h = (y, a, V) => {
|
|
492
489
|
var L;
|
|
493
|
-
const k = (L =
|
|
494
|
-
|
|
490
|
+
const k = (L = n.backupList) == null ? void 0 : L.find((C) => C.label === V);
|
|
491
|
+
i(y, k, a.label, V);
|
|
495
492
|
}, g = (y, a, V) => {
|
|
496
493
|
var k, L;
|
|
497
494
|
if (a.label) {
|
|
@@ -512,9 +509,9 @@ function Yt({ props: e, emit: t, state: o, t: n, format: d, nextTick: c, vm: f,
|
|
|
512
509
|
} else {
|
|
513
510
|
const { items: C, defaultField: P, defaultFieldReplace: R } = e, N = C.find((K) => {
|
|
514
511
|
const { regexp: te } = K;
|
|
515
|
-
return te && te.test(
|
|
516
|
-
}), A = P ? C.find((K) => K.field === P) :
|
|
517
|
-
(k = O == null ? void 0 : O.options) != null && k.length && (
|
|
512
|
+
return te && te.test(n.inputValue);
|
|
513
|
+
}), A = P ? C.find((K) => K.field === P) : n.allTypeAttri, O = N || A, j = !N && R ? { ...O, replace: !0 } : O, { replace: Q, type: ce, mergeTag: ie, regexp: W } = j, pe = ce !== "checkbox" && Q || ce === "checkbox" && ie ? [y] : y.split(e.splitInputValue);
|
|
514
|
+
(k = O == null ? void 0 : O.options) != null && k.length && (n.backupList = [...O.options], (L = n.backupList) == null || L.forEach((K) => {
|
|
518
515
|
const te = K.value || K.label;
|
|
519
516
|
pe.includes(te) && (K.isChecked = !0);
|
|
520
517
|
}));
|
|
@@ -522,7 +519,7 @@ function Yt({ props: e, emit: t, state: o, t: n, format: d, nextTick: c, vm: f,
|
|
|
522
519
|
if (W) {
|
|
523
520
|
const K = [];
|
|
524
521
|
for (const te of pe)
|
|
525
|
-
W.test(te) ?
|
|
522
|
+
W.test(te) ? i(j, {}, de, te) : K.push(te);
|
|
526
523
|
K.length > 0 && t("validate-error", {
|
|
527
524
|
invalidValues: K,
|
|
528
525
|
field: j.field,
|
|
@@ -531,11 +528,11 @@ function Yt({ props: e, emit: t, state: o, t: n, format: d, nextTick: c, vm: f,
|
|
|
531
528
|
});
|
|
532
529
|
} else
|
|
533
530
|
for (const K of pe)
|
|
534
|
-
|
|
531
|
+
i(j, {}, de, K);
|
|
535
532
|
}
|
|
536
533
|
}, T = () => {
|
|
537
|
-
const { inputValue: y, propItem: a, prevItem: V } =
|
|
538
|
-
if (b && b(), _(
|
|
534
|
+
const { inputValue: y, propItem: a, prevItem: V } = n;
|
|
535
|
+
if (b && b(), _(n, !1), !y)
|
|
539
536
|
l(a, V);
|
|
540
537
|
else {
|
|
541
538
|
const { maxlength: k } = e;
|
|
@@ -546,37 +543,37 @@ function Yt({ props: e, emit: t, state: o, t: n, format: d, nextTick: c, vm: f,
|
|
|
546
543
|
g(y, a, V);
|
|
547
544
|
}
|
|
548
545
|
};
|
|
549
|
-
return { selectPropItem:
|
|
546
|
+
return { selectPropItem: r, selectRadioItem: v, selectInputValue: p, createTag: T, helpClick: () => {
|
|
550
547
|
t("help");
|
|
551
548
|
}, setOperator: u };
|
|
552
549
|
}
|
|
553
550
|
const qt = (e) => e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), De = (e, t) => {
|
|
554
|
-
const
|
|
555
|
-
let
|
|
551
|
+
const n = [];
|
|
552
|
+
let o = 0, d;
|
|
556
553
|
for (; (d = e.exec(t)) !== null; ) {
|
|
557
554
|
const c = d.index, f = e.lastIndex;
|
|
558
|
-
c >
|
|
555
|
+
c > o && n.push(t.slice(o, c)), n.push(t.slice(c, f)), o = f;
|
|
559
556
|
}
|
|
560
|
-
return
|
|
557
|
+
return o < t.length && n.push(t.slice(o)), n;
|
|
561
558
|
};
|
|
562
|
-
function Zt({ props: e, state: t, emit:
|
|
563
|
-
const d = async (
|
|
564
|
-
t.potentialOptions = await e.potentialOptions.getMatchList(
|
|
565
|
-
}, f = jt((
|
|
559
|
+
function Zt({ props: e, state: t, emit: n, nextTick: o }) {
|
|
560
|
+
const d = async (r) => {
|
|
561
|
+
t.potentialOptions = await e.potentialOptions.getMatchList(r), _(t, !0);
|
|
562
|
+
}, f = jt((r) => {
|
|
566
563
|
var a, V, k, L;
|
|
567
|
-
const { recordItems: u, propItem:
|
|
564
|
+
const { recordItems: u, propItem: i } = t, p = typeof r == "string" ? r : r && r.target && typeof r.target.value == "string" ? r.target.value : t.inputValue || "", v = (a = String(p)) == null ? void 0 : a.trim(), { maxlength: l } = e;
|
|
568
565
|
if (l && l < v.length) {
|
|
569
|
-
|
|
566
|
+
n("exceed", l);
|
|
570
567
|
return;
|
|
571
568
|
}
|
|
572
569
|
if (v.length === 0) {
|
|
573
|
-
_(t);
|
|
570
|
+
m(), _(t);
|
|
574
571
|
return;
|
|
575
572
|
}
|
|
576
573
|
Object.keys(t.matchItems).forEach((C) => {
|
|
577
574
|
t.matchItems[C].attr = [], t.matchItems[C].attrValue = [];
|
|
578
575
|
});
|
|
579
|
-
const h = qt(v), g = new RegExp(h, "i"), T =
|
|
576
|
+
const h = qt(v), g = new RegExp(h, "i"), T = i.label || !h ? null : u.find((C) => C.type === "map" && g.test(C.label));
|
|
580
577
|
if (T) {
|
|
581
578
|
t.propItem = { ...t.propItem, label: T.label }, t.inputValue = "", t.prevItem = T, t.backupPrevItem = T, t.backupList = T.options || [];
|
|
582
579
|
return;
|
|
@@ -616,43 +613,43 @@ function Zt({ props: e, state: t, emit: o, nextTick: n }) {
|
|
|
616
613
|
}, 500), b = () => {
|
|
617
614
|
f.cancel && f.cancel();
|
|
618
615
|
}, m = () => {
|
|
619
|
-
var
|
|
620
|
-
(
|
|
616
|
+
var r;
|
|
617
|
+
(r = t.backupList) == null || r.forEach((u) => u.isFilter && delete u.isFilter);
|
|
621
618
|
};
|
|
622
619
|
return {
|
|
623
620
|
handleInput: f,
|
|
624
|
-
selectFirstMap: (
|
|
621
|
+
selectFirstMap: (r, u) => {
|
|
625
622
|
var l;
|
|
626
|
-
const { options:
|
|
627
|
-
if (
|
|
628
|
-
_(t, !1), t.propItem = { ...t.propItem, value: `${
|
|
623
|
+
const { options: i } = r, { prevItem: p, propItem: v } = t;
|
|
624
|
+
if (i)
|
|
625
|
+
_(t, !1), t.propItem = { ...t.propItem, value: `${r.label}=` }, t.isShowTagKey = !1, t.inputValue = "", t.backupList = r.options || [], m(), (l = t.backupList) == null || l.forEach((h) => {
|
|
629
626
|
const g = v.value + h.label;
|
|
630
627
|
h.isChecked = ee(t, g);
|
|
631
628
|
});
|
|
632
629
|
else {
|
|
633
|
-
if (
|
|
630
|
+
if (r.isChecked)
|
|
634
631
|
return;
|
|
635
632
|
_(t, !1), t.isShowTagKey = !0, m();
|
|
636
|
-
const { field: h, type: g } = p, T = v.value +
|
|
637
|
-
X({ emit:
|
|
633
|
+
const { field: h, type: g } = p, T = v.value + r.label, $ = re(e, p, r), a = [se({ type: g, field: h, label: v.label, value: T, ...$ })];
|
|
634
|
+
X({ emit: n, state: t, nextTick: o, tagList: a });
|
|
638
635
|
}
|
|
639
636
|
u && _(t);
|
|
640
637
|
},
|
|
641
638
|
cancelHandleInput: b
|
|
642
639
|
};
|
|
643
640
|
}
|
|
644
|
-
function Xt({ props: e, state: t, emit:
|
|
641
|
+
function Xt({ props: e, state: t, emit: n, nextTick: o }) {
|
|
645
642
|
return {
|
|
646
643
|
selectCheckbox: (c) => {
|
|
647
|
-
var
|
|
644
|
+
var r, u;
|
|
648
645
|
_(t, !1);
|
|
649
|
-
const { checkboxGroup: f, prevItem: b, propItem: m } = t,
|
|
646
|
+
const { checkboxGroup: f, prevItem: b, propItem: m } = t, s = Te(b);
|
|
650
647
|
if (c) {
|
|
651
|
-
const
|
|
648
|
+
const i = [], p = ae(t.innerModelValue), { mergeTag: v, operators: l, label: h } = b;
|
|
652
649
|
if (v) {
|
|
653
650
|
let g = "";
|
|
654
651
|
const T = [], { indexMap: $ } = t, y = $.get(h);
|
|
655
|
-
if (y !== void 0 && t.innerModelValue.splice(y, 1), (
|
|
652
|
+
if (y !== void 0 && t.innerModelValue.splice(y, 1), (r = t.backupList) == null || r.forEach((a) => {
|
|
656
653
|
const { label: V } = a, k = `${h}${V}`;
|
|
657
654
|
if (f.includes(k)) {
|
|
658
655
|
delete a.isFilter;
|
|
@@ -660,16 +657,16 @@ function Xt({ props: e, state: t, emit: o, nextTick: n }) {
|
|
|
660
657
|
g += g ? ` | ${V}` : V, T.push(P);
|
|
661
658
|
}
|
|
662
659
|
}), T.length > 0) {
|
|
663
|
-
const a = { ...
|
|
664
|
-
|
|
660
|
+
const a = { ...s, value: g, options: T };
|
|
661
|
+
i.push(a);
|
|
665
662
|
}
|
|
666
663
|
} else {
|
|
667
664
|
const { valueMap: g } = t, T = [];
|
|
668
665
|
if ((u = t.backupList) == null || u.forEach(($) => {
|
|
669
666
|
const { label: y } = $, a = `${h}${y}`, V = f.includes(a);
|
|
670
667
|
if (V && !ee(t, y)) {
|
|
671
|
-
const k = re(e, b, $), L = t.operatorValue && l ? { operator: t.operatorValue } : null, C = se({ ...
|
|
672
|
-
|
|
668
|
+
const k = re(e, b, $), L = t.operatorValue && l ? { operator: t.operatorValue } : null, C = se({ ...s, label: m.label, value: y, ...k, ...L });
|
|
669
|
+
i.push(C), $.isChecked = !0;
|
|
673
670
|
} else if (!V && ee(t, y)) {
|
|
674
671
|
$.isChecked = !1;
|
|
675
672
|
const k = g.get(a);
|
|
@@ -677,68 +674,68 @@ function Xt({ props: e, state: t, emit: o, nextTick: n }) {
|
|
|
677
674
|
}
|
|
678
675
|
}), T.length) {
|
|
679
676
|
const $ = t.innerModelValue.filter((y, a) => y && !T.includes(a));
|
|
680
|
-
X({ emit:
|
|
677
|
+
X({ emit: n, state: t, nextTick: o, newValue: $, oldValue: p });
|
|
681
678
|
return;
|
|
682
679
|
}
|
|
683
680
|
}
|
|
684
|
-
X({ emit:
|
|
681
|
+
X({ emit: n, state: t, nextTick: o, tagList: i, oldValue: p });
|
|
685
682
|
} else
|
|
686
683
|
t.propItem = { ...m, label: "" }, t.inputValue = "";
|
|
687
684
|
}
|
|
688
685
|
};
|
|
689
686
|
}
|
|
690
|
-
function Qt({ props: e, state: t, emit:
|
|
687
|
+
function Qt({ props: e, state: t, emit: n, nextTick: o, vm: d }) {
|
|
691
688
|
const c = d || t.instance;
|
|
692
689
|
return {
|
|
693
|
-
onConfirmDate: async (
|
|
694
|
-
if (!
|
|
690
|
+
onConfirmDate: async (s, r = !1) => {
|
|
691
|
+
if (!s) {
|
|
695
692
|
t.propItem = { label: "" };
|
|
696
693
|
return;
|
|
697
694
|
}
|
|
698
|
-
const u = await $e(c, t, e,
|
|
695
|
+
const u = await $e(c, t, e, r);
|
|
699
696
|
if (u) {
|
|
700
697
|
_(t, !1);
|
|
701
|
-
const
|
|
702
|
-
|
|
698
|
+
const i = e.modelValue.filter((p) => p.type !== u.type || p.field !== u.field);
|
|
699
|
+
i.push(u), X({ emit: n, state: t, nextTick: o, newValue: i });
|
|
703
700
|
} else
|
|
704
701
|
_(t);
|
|
705
702
|
},
|
|
706
703
|
handleDateShow: () => _(t),
|
|
707
|
-
pickerOptions: (
|
|
704
|
+
pickerOptions: (s, r = "") => ({
|
|
708
705
|
disabledDate(u) {
|
|
709
|
-
const { maxTimeLength:
|
|
710
|
-
if (
|
|
706
|
+
const { maxTimeLength: i = 0, min: p, max: v } = t.prevItem, l = t[r], h = u.getTime();
|
|
707
|
+
if (i > 0)
|
|
711
708
|
if (p || v)
|
|
712
|
-
if (
|
|
713
|
-
const g = new Date(l).getTime(), T = !p && v ? g -
|
|
709
|
+
if (r && l) {
|
|
710
|
+
const g = new Date(l).getTime(), T = !p && v ? g - i : Math.max(p.getTime(), g - i);
|
|
714
711
|
return h < T || h > g;
|
|
715
|
-
} else if (!
|
|
716
|
-
const g = new Date(
|
|
712
|
+
} else if (!r && s) {
|
|
713
|
+
const g = new Date(s).getTime(), T = p && !v ? g + i : Math.min(v.getTime(), g + i);
|
|
717
714
|
return h < g || h > T;
|
|
718
715
|
} else
|
|
719
716
|
return p && h < p.getTime() || v && h > v.getTime();
|
|
720
|
-
else if (
|
|
721
|
-
const g = new Date(l).getTime(), T = g -
|
|
717
|
+
else if (r && l) {
|
|
718
|
+
const g = new Date(l).getTime(), T = g - i;
|
|
722
719
|
return h < T || h > g;
|
|
723
|
-
} else if (!
|
|
724
|
-
const g = new Date(
|
|
720
|
+
} else if (!r && s) {
|
|
721
|
+
const g = new Date(s).getTime(), T = g + i;
|
|
725
722
|
return h < g || h > T;
|
|
726
723
|
} else
|
|
727
724
|
return !1;
|
|
728
725
|
else if (p || v)
|
|
729
|
-
if (
|
|
726
|
+
if (r && l) {
|
|
730
727
|
const g = new Date(l).getTime();
|
|
731
728
|
return p && h < p.getTime() || h > g;
|
|
732
|
-
} else if (!
|
|
733
|
-
const g = new Date(
|
|
729
|
+
} else if (!r && s) {
|
|
730
|
+
const g = new Date(s).getTime();
|
|
734
731
|
return h < g || v && h > v.getTime();
|
|
735
732
|
} else
|
|
736
733
|
return h < p || h > v;
|
|
737
|
-
else if (
|
|
734
|
+
else if (r && l) {
|
|
738
735
|
const g = new Date(l).getTime();
|
|
739
736
|
return h > g;
|
|
740
|
-
} else if (!
|
|
741
|
-
const g = new Date(
|
|
737
|
+
} else if (!r && s) {
|
|
738
|
+
const g = new Date(s).getTime();
|
|
742
739
|
return h < g;
|
|
743
740
|
} else
|
|
744
741
|
return !1;
|
|
@@ -746,58 +743,58 @@ function Qt({ props: e, state: t, emit: o, nextTick: n, vm: d }) {
|
|
|
746
743
|
})
|
|
747
744
|
};
|
|
748
745
|
}
|
|
749
|
-
function Wt({ props: e, state: t, t:
|
|
750
|
-
const f = c || t.instance, b = async (
|
|
751
|
-
if (!
|
|
746
|
+
function Wt({ props: e, state: t, t: n, emit: o, nextTick: d, vm: c }) {
|
|
747
|
+
const f = c || t.instance, b = async (r) => {
|
|
748
|
+
if (!r) {
|
|
752
749
|
t.propItem = { ...t.propItem, label: "" };
|
|
753
750
|
return;
|
|
754
751
|
}
|
|
755
752
|
const u = await Qe(f, t, e);
|
|
756
753
|
if (u) {
|
|
757
754
|
_(t, !1);
|
|
758
|
-
const
|
|
759
|
-
|
|
755
|
+
const i = e.modelValue.filter((p) => p.type !== u.type || p.field !== u.field);
|
|
756
|
+
i.push(u), X({ emit: o, state: t, nextTick: d, newValue: i });
|
|
760
757
|
} else
|
|
761
758
|
_(t);
|
|
762
|
-
}, m = (
|
|
763
|
-
const { maxTimeLength: p = 0 } =
|
|
759
|
+
}, m = (r, u, i) => {
|
|
760
|
+
const { maxTimeLength: p = 0 } = r;
|
|
764
761
|
return {
|
|
765
762
|
[u]: {
|
|
766
763
|
validator: (v, l, h) => {
|
|
767
|
-
p > 0 && !l ? h(new Error(
|
|
764
|
+
p > 0 && !l ? h(new Error(n("tvp.tvpSearchbox.notBeNull"))) : !l && !t[i] ? h(new Error(n("tvp.tvpSearchbox.rangeDateTitle"))) : h();
|
|
768
765
|
}
|
|
769
766
|
},
|
|
770
|
-
[
|
|
767
|
+
[i]: {
|
|
771
768
|
validator: (v, l, h) => {
|
|
772
|
-
p > 0 && !l ? h(new Error(
|
|
769
|
+
p > 0 && !l ? h(new Error(n("tvp.tvpSearchbox.notBeNull"))) : !l && !t[u] ? h(new Error(n("tvp.tvpSearchbox.rangeDateTitle"))) : h();
|
|
773
770
|
}
|
|
774
771
|
}
|
|
775
772
|
};
|
|
776
773
|
};
|
|
777
774
|
return {
|
|
778
775
|
initFormRule: () => {
|
|
779
|
-
let
|
|
780
|
-
e.items.forEach((
|
|
781
|
-
|
|
776
|
+
let r = {}, u = {};
|
|
777
|
+
e.items.forEach((i) => {
|
|
778
|
+
i.type === "dateRange" && (r = m(i, "startDate", "endDate")), i.type === "datetimeRange" && (u = m(i, "startDateTime", "endDateTime"));
|
|
782
779
|
}), t.formRules = {
|
|
783
|
-
...
|
|
780
|
+
...r,
|
|
784
781
|
...u
|
|
785
782
|
}, e.editable && (t.formRules.inputEditValue = {
|
|
786
783
|
required: !0,
|
|
787
|
-
message:
|
|
784
|
+
message: n("tvp.tvpSearchbox.notBeNull"),
|
|
788
785
|
trigger: ["change", "blur"]
|
|
789
786
|
});
|
|
790
787
|
},
|
|
791
788
|
sizeChange: b
|
|
792
789
|
};
|
|
793
790
|
}
|
|
794
|
-
function Jt({ props: e, state: t, t:
|
|
791
|
+
function Jt({ props: e, state: t, t: n, nextTick: o, format: d, emit: c, vm: f }) {
|
|
795
792
|
const b = (p) => {
|
|
796
793
|
var V;
|
|
797
794
|
const { operator: v, value: l, start: h, end: g } = p, { options: T, operators: $, type: y, mergeTag: a } = t.prevItem;
|
|
798
795
|
if (y !== "custom") {
|
|
799
796
|
if (y === "numRange")
|
|
800
|
-
We(t, p,
|
|
797
|
+
We(t, p, n);
|
|
801
798
|
else if (y === "dateRange") {
|
|
802
799
|
const { dateRangeFormat: k } = t;
|
|
803
800
|
t.startDate = d(h, k), t.endDate = d(g, k);
|
|
@@ -835,7 +832,7 @@ function Jt({ props: e, state: t, t: o, nextTick: n, format: d, emit: c, vm: f }
|
|
|
835
832
|
return;
|
|
836
833
|
_(t, !1), t.popoverVisible = !1;
|
|
837
834
|
const h = l.target.classList.contains("tiny-tag") ? l.target : l.srcElement.parentElement;
|
|
838
|
-
|
|
835
|
+
o(() => {
|
|
839
836
|
const { popoverRef: g } = t.instance.$refs;
|
|
840
837
|
g.state.referenceElm = h, g.state.popperElm && (g.state.popperElm.style.display = "none"), g.doDestroy(), t.popoverVisible = !0, m();
|
|
841
838
|
}), t.prevItem = t.recordItems.find((g) => g.field === p.field), !t.prevItem && (t.prevItem = p), t.selectValue = p.label, t.currentModelValueIndex = v, c("tagClick", p), b(p);
|
|
@@ -847,10 +844,10 @@ function Jt({ props: e, state: t, t: o, nextTick: n, format: d, emit: c, vm: f }
|
|
|
847
844
|
}
|
|
848
845
|
const { prevItem: v, currentModelValueIndex: l } = t;
|
|
849
846
|
let h = null;
|
|
850
|
-
v.type === "numRange" ? h = await Qe(t.instance, t, e) : v.type === "dateRange" ? h = await $e(t.instance, t, e, !1) : v.type === "datetimeRange" ? h = await $e(t.instance, t, e, !0) : h = await Gt(t.instance, t, e), h ? (_(t, !1), t.popoverVisible = !1, X({ emit: c, state: t, nextTick:
|
|
847
|
+
v.type === "numRange" ? h = await Qe(t.instance, t, e) : v.type === "dateRange" ? h = await $e(t.instance, t, e, !1) : v.type === "datetimeRange" ? h = await $e(t.instance, t, e, !0) : h = await Gt(t.instance, t, e), h ? (_(t, !1), t.popoverVisible = !1, X({ emit: c, state: t, nextTick: o, index: l, newTag: h, isEdit: !0 })) : t.popoverVisible = !0, t.currentEditValue = [];
|
|
851
848
|
},
|
|
852
849
|
selectPropChange: (p, v) => {
|
|
853
|
-
v || (t.prevItem = p, b(p),
|
|
850
|
+
v || (t.prevItem = p, b(p), o(() => {
|
|
854
851
|
m();
|
|
855
852
|
}));
|
|
856
853
|
},
|
|
@@ -866,19 +863,19 @@ function Jt({ props: e, state: t, t: o, nextTick: n, format: d, emit: c, vm: f }
|
|
|
866
863
|
checkFormValidation: m
|
|
867
864
|
};
|
|
868
865
|
}
|
|
869
|
-
function
|
|
870
|
-
const
|
|
866
|
+
function en({ state: e, emit: t, nextTick: n }) {
|
|
867
|
+
const o = (f) => {
|
|
871
868
|
_(e, !1);
|
|
872
|
-
const { prevItem: b, indexMap: m } = e, { replace:
|
|
873
|
-
if (
|
|
874
|
-
const
|
|
875
|
-
X({ emit: t, state: e, nextTick:
|
|
869
|
+
const { prevItem: b, indexMap: m } = e, { replace: s, label: r } = b, u = [];
|
|
870
|
+
if (s && m.has(r)) {
|
|
871
|
+
const i = m.get(r), p = { ...b, ...f };
|
|
872
|
+
X({ emit: t, state: e, nextTick: n, newTag: p, index: i });
|
|
876
873
|
return;
|
|
877
874
|
} else
|
|
878
|
-
!
|
|
879
|
-
ee(e,
|
|
875
|
+
!s && Array.isArray(f) ? f.forEach((i) => {
|
|
876
|
+
ee(e, i.value) || u.push({ ...b, ...i });
|
|
880
877
|
}) : ee(e, f.value) || u.push({ ...b, ...f });
|
|
881
|
-
X({ emit: t, state: e, nextTick:
|
|
878
|
+
X({ emit: t, state: e, nextTick: n, tagList: u });
|
|
882
879
|
};
|
|
883
880
|
return {
|
|
884
881
|
handleConfirm: (f) => {
|
|
@@ -886,28 +883,28 @@ function eo({ state: e, emit: t, nextTick: o }) {
|
|
|
886
883
|
Se(e), _(e, !1);
|
|
887
884
|
return;
|
|
888
885
|
}
|
|
889
|
-
|
|
886
|
+
o(f);
|
|
890
887
|
},
|
|
891
888
|
handleEditConfirm: (f) => {
|
|
892
889
|
if (!f) {
|
|
893
890
|
ye(e, !1);
|
|
894
891
|
return;
|
|
895
892
|
}
|
|
896
|
-
|
|
893
|
+
o(f);
|
|
897
894
|
}
|
|
898
895
|
};
|
|
899
896
|
}
|
|
900
|
-
function
|
|
897
|
+
function tn({ props: e, state: t }) {
|
|
901
898
|
return {
|
|
902
899
|
initItems: () => {
|
|
903
900
|
t.groupItems = {}, t.recordItems.forEach((b) => {
|
|
904
|
-
var
|
|
901
|
+
var s;
|
|
905
902
|
const { groupKey: m = "0" } = b;
|
|
906
903
|
if (t.groupItems[m] ? t.groupItems[m].push({ ...b }) : (t.groupItems[m] = [{ ...b }], t.matchItems[m] = { attr: [], attrValue: [] }), t.prevItem && b.field === t.prevItem.field && b !== t.prevItem) {
|
|
907
|
-
const { options:
|
|
908
|
-
t.prevItem = b,
|
|
909
|
-
const { label: p } =
|
|
910
|
-
ee(t, p) && t.checkboxGroup.push(`${b.label}${p}`),
|
|
904
|
+
const { options: r, type: u } = b;
|
|
905
|
+
t.prevItem = b, r != null && r.length && (t.backupList = r), u === "checkbox" && (t.filterList = t.backupList, t.checkboxGroup = [], (s = t.backupList) == null || s.forEach((i) => {
|
|
906
|
+
const { label: p } = i;
|
|
907
|
+
ee(t, p) && t.checkboxGroup.push(`${b.label}${p}`), i.isFilter = !1;
|
|
911
908
|
})), _(t, b.field === t.prevItem.field && b !== t.prevItem);
|
|
912
909
|
}
|
|
913
910
|
});
|
|
@@ -922,9 +919,9 @@ function to({ props: e, state: t }) {
|
|
|
922
919
|
t.isMouseDown && (t.isMouseDown = !1);
|
|
923
920
|
},
|
|
924
921
|
handleClick: (b) => {
|
|
925
|
-
var
|
|
926
|
-
const { backupPrevItem: m, prevItem:
|
|
927
|
-
b.stopPropagation(), e.editable && (t.popoverVisible = !1, t.currentEditValue = [], t.propItem.label && m && m !==
|
|
922
|
+
var r;
|
|
923
|
+
const { backupPrevItem: m, prevItem: s } = t;
|
|
924
|
+
b.stopPropagation(), e.editable && (t.popoverVisible = !1, t.currentEditValue = [], t.propItem.label && m && m !== s && (t.prevItem = m)), t.hasBackupList && (((r = t.backupList) == null ? void 0 : r.length) === 0 || !t.backupList) && !t.inputValue || e.items.length === 0 ? _(t, !1) : _(t);
|
|
928
925
|
}
|
|
929
926
|
};
|
|
930
927
|
}
|
|
@@ -958,7 +955,6 @@ const Je = {
|
|
|
958
955
|
rangeEndLabel: "结束日期",
|
|
959
956
|
rulekeyword1: "关键字",
|
|
960
957
|
notBeNull: "值不能为空",
|
|
961
|
-
noData: "暂无匹配数据...",
|
|
962
958
|
selectAll: "全选",
|
|
963
959
|
confirm: "确定",
|
|
964
960
|
cancel: "取消",
|
|
@@ -999,7 +995,6 @@ const Je = {
|
|
|
999
995
|
rangeEndLabel: "End date",
|
|
1000
996
|
rulekeyword1: "Keywords",
|
|
1001
997
|
notBeNull: "The value cannot be empty",
|
|
1002
|
-
noData: "There is currently no matching data available ..",
|
|
1003
998
|
selectAll: "Select All",
|
|
1004
999
|
confirm: "Confirm",
|
|
1005
1000
|
cancel: "Cancel",
|
|
@@ -1017,13 +1012,13 @@ const Je = {
|
|
|
1017
1012
|
let U = null, Le = null;
|
|
1018
1013
|
const _e = (e) => {
|
|
1019
1014
|
U = e;
|
|
1020
|
-
},
|
|
1015
|
+
}, nn = (e) => {
|
|
1021
1016
|
Le = e;
|
|
1022
1017
|
}, xe = () => {
|
|
1023
|
-
var e, t,
|
|
1024
|
-
if ((
|
|
1018
|
+
var e, t, n, o, d;
|
|
1019
|
+
if ((n = (t = (e = U == null ? void 0 : U.config) == null ? void 0 : e.globalProperties) == null ? void 0 : t.$i18n) != null && n.locale)
|
|
1025
1020
|
return U.config.globalProperties.$i18n.locale;
|
|
1026
|
-
if ((
|
|
1021
|
+
if ((o = U == null ? void 0 : U.$i18n) != null && o.locale)
|
|
1027
1022
|
return U.$i18n.locale;
|
|
1028
1023
|
if (typeof navigator < "u") {
|
|
1029
1024
|
const c = navigator.language || ((d = navigator.languages) == null ? void 0 : d[0]);
|
|
@@ -1059,17 +1054,17 @@ const _e = (e) => {
|
|
|
1059
1054
|
} catch (m) {
|
|
1060
1055
|
console.warn("[TinySearchBox] i18n translation failed:", m);
|
|
1061
1056
|
}
|
|
1062
|
-
const
|
|
1063
|
-
let c =
|
|
1057
|
+
const n = xe(), o = Re(n), d = e.split(".");
|
|
1058
|
+
let c = o;
|
|
1064
1059
|
for (const m of d)
|
|
1065
1060
|
if (c && typeof c == "object" && m in c)
|
|
1066
1061
|
c = c[m];
|
|
1067
1062
|
else {
|
|
1068
|
-
if (
|
|
1063
|
+
if (n !== ge) {
|
|
1069
1064
|
c = Re(ge);
|
|
1070
|
-
for (const
|
|
1071
|
-
if (c && typeof c == "object" &&
|
|
1072
|
-
c = c[
|
|
1065
|
+
for (const r of d)
|
|
1066
|
+
if (c && typeof c == "object" && r in c)
|
|
1067
|
+
c = c[r];
|
|
1073
1068
|
else {
|
|
1074
1069
|
c = e;
|
|
1075
1070
|
break;
|
|
@@ -1078,25 +1073,25 @@ const _e = (e) => {
|
|
|
1078
1073
|
c = e;
|
|
1079
1074
|
break;
|
|
1080
1075
|
}
|
|
1081
|
-
return typeof c == "string" && Object.keys(t).length > 0 ? c.replace(/\{(\w+)\}/g, (m,
|
|
1082
|
-
},
|
|
1076
|
+
return typeof c == "string" && Object.keys(t).length > 0 ? c.replace(/\{(\w+)\}/g, (m, s) => t[s] !== void 0 ? t[s] : m) : typeof c == "string" ? c : e;
|
|
1077
|
+
}, on = (e, t = {}) => e.map((n) => q(n, t)), ln = (e) => e in me, an = () => Object.keys(me), sn = (e, t) => {
|
|
1083
1078
|
me[e] = t;
|
|
1084
|
-
},
|
|
1079
|
+
}, rn = (e) => {
|
|
1085
1080
|
e !== ge && delete me[e];
|
|
1086
|
-
},
|
|
1081
|
+
}, pn = {
|
|
1087
1082
|
t: q,
|
|
1088
1083
|
zhCN: Je,
|
|
1089
1084
|
enUS: et,
|
|
1090
|
-
tArray:
|
|
1091
|
-
setGlobalT:
|
|
1085
|
+
tArray: on,
|
|
1086
|
+
setGlobalT: nn,
|
|
1092
1087
|
setGlobalApp: _e,
|
|
1093
1088
|
getCurrentLocale: xe,
|
|
1094
1089
|
getLocaleMessages: Re,
|
|
1095
|
-
isLocaleSupported:
|
|
1096
|
-
getSupportedLocales:
|
|
1097
|
-
addLocale:
|
|
1098
|
-
removeLocale:
|
|
1099
|
-
},
|
|
1090
|
+
isLocaleSupported: ln,
|
|
1091
|
+
getSupportedLocales: an,
|
|
1092
|
+
addLocale: sn,
|
|
1093
|
+
removeLocale: rn
|
|
1094
|
+
}, un = [
|
|
1100
1095
|
"t",
|
|
1101
1096
|
"state",
|
|
1102
1097
|
"isShowClose",
|
|
@@ -1123,7 +1118,7 @@ const _e = (e) => {
|
|
|
1123
1118
|
"handleEditConfirm",
|
|
1124
1119
|
"showDropdown",
|
|
1125
1120
|
"showPopover"
|
|
1126
|
-
], Ve = (e, t) => e.emptyPlaceholder || t("tvp.tvpSearchbox.addPlaceholder"),
|
|
1121
|
+
], Ve = (e, t) => e.emptyPlaceholder || t("tvp.tvpSearchbox.addPlaceholder"), cn = ({ reactive: e, computed: t, api: n, i18n: o, watch: d, props: c, emit: f, vm: b }) => {
|
|
1127
1122
|
const m = e({
|
|
1128
1123
|
innerModelValue: [...c.modelValue],
|
|
1129
1124
|
placeholder: c.modelValue.length > 0 ? q("tvp.tvpSearchbox.addPlaceholder") : Ve(c, q),
|
|
@@ -1168,25 +1163,25 @@ const _e = (e) => {
|
|
|
1168
1163
|
visibleTimer: null,
|
|
1169
1164
|
hasFormError: !1,
|
|
1170
1165
|
// 表单校验错误状态
|
|
1171
|
-
hasBackupList: t(() => m.propItem.label && [void 0, "radio", "checkbox", "map"].includes(m.prevItem.type)),
|
|
1166
|
+
hasBackupList: t(() => m.propItem.label && [void 0, null, "", "radio", "input", "checkbox", "map"].includes(m.prevItem.type)),
|
|
1172
1167
|
isIndeterminate: t(() => m.checkboxGroup.length > 0 && m.checkboxGroup.length !== m.filterList.length),
|
|
1173
1168
|
checkAll: t({
|
|
1174
1169
|
get: () => m.checkboxGroup.length && m.checkboxGroup.length === m.filterList.length,
|
|
1175
|
-
set: (
|
|
1176
|
-
|
|
1170
|
+
set: (s) => {
|
|
1171
|
+
s ? m.checkboxGroup = m.filterList.flatMap((r) => `${m.prevItem.label}${r.label}`) : m.checkboxGroup = [];
|
|
1177
1172
|
}
|
|
1178
1173
|
})
|
|
1179
1174
|
});
|
|
1180
1175
|
return m;
|
|
1181
|
-
},
|
|
1182
|
-
const
|
|
1183
|
-
return
|
|
1184
|
-
typeof document < "u" && (document.addEventListener("click",
|
|
1185
|
-
}),
|
|
1186
|
-
typeof document < "u" && (document.removeEventListener("click",
|
|
1187
|
-
}),
|
|
1188
|
-
},
|
|
1189
|
-
const { deleteTag: m, clearTag:
|
|
1176
|
+
}, dn = (e, { getCurrentInstance: t, onMounted: n, onBeforeUnmount: o, computed: d, reactive: c, watch: f }, { emit: b, nextTick: m, refs: s, vm: r, slots: u }) => {
|
|
1177
|
+
const i = {}, p = e.emitter ? e.emitter.emit : b, v = cn({ reactive: c, computed: d, api: i, i18n: pn, watch: f, props: e, emit: p, vm: r });
|
|
1178
|
+
return mn({ api: i, state: v, t: q, props: e, emit: p, nextTick: m, vm: r, computed: d }), hn({ watch: f, state: v, props: e, api: i, nextTick: m, vm: r }), v.instance = r, r && u && (r.slots = u), n(() => {
|
|
1179
|
+
typeof document < "u" && (document.addEventListener("click", i.watchOutsideClick), document.addEventListener("mousedown", i.watchMouseDown), document.addEventListener("mousemove", i.watchMouseMove));
|
|
1180
|
+
}), o(() => {
|
|
1181
|
+
typeof document < "u" && (document.removeEventListener("click", i.watchOutsideClick), document.removeEventListener("mousedown", i.watchMouseDown), document.removeEventListener("mousemove", i.watchMouseMove), v.localeCheckInterval && (clearInterval(v.localeCheckInterval), v.localeCheckInterval = null));
|
|
1182
|
+
}), i;
|
|
1183
|
+
}, mn = ({ api: e, state: t, t: n, props: o, emit: d, nextTick: c, vm: f, computed: b }) => {
|
|
1184
|
+
const { deleteTag: m, clearTag: s, backspaceDeleteTag: r } = Kt({ props: o, state: t, emit: d, nextTick: c }), { editTag: u, confirmEditTag: i, selectPropChange: p, selectItemIsDisable: v, checkFormValidation: l } = Jt({ props: o, state: t, t: n, nextTick: c, format: Ee, emit: d, vm: f }), { handleInput: h, selectFirstMap: g, cancelHandleInput: T } = Zt({ props: o, state: t, emit: d, nextTick: c }), { selectPropItem: $, selectRadioItem: y, selectInputValue: a, createTag: V, helpClick: k, setOperator: L } = Yt({ props: o, emit: d, state: t, t: n, format: Ee, nextTick: c, vm: f, cancelHandleInput: T }), { selectCheckbox: C } = Xt({ props: o, state: t, emit: d, nextTick: c }), { onConfirmDate: P, handleDateShow: R, pickerOptions: N } = Qt({ props: o, state: t, emit: d, nextTick: c, vm: f }), { sizeChange: A, initFormRule: O } = Wt({ props: o, state: t, t: n, emit: d, nextTick: c, vm: f }), { handleConfirm: j, handleEditConfirm: Q } = en({ state: t, emit: d, nextTick: c }), { initItems: ce, watchOutsideClick: ie, watchMouseDown: W, watchMouseMove: pe, handleClick: de } = tn({ props: o, state: t }), K = b(() => o.modelValue.length || t.propItem.label || t.inputValue), te = () => ({
|
|
1190
1185
|
selectInputValue: a,
|
|
1191
1186
|
selectPropItem: $,
|
|
1192
1187
|
selectRadioItem: y,
|
|
@@ -1198,28 +1193,28 @@ const _e = (e) => {
|
|
|
1198
1193
|
handleDateShow: R
|
|
1199
1194
|
}), Me = (he) => {
|
|
1200
1195
|
t.placeholder = he;
|
|
1201
|
-
}, tt = () => Ve(
|
|
1202
|
-
|
|
1203
|
-
t:
|
|
1196
|
+
}, tt = () => Ve(o, n);
|
|
1197
|
+
o.modelValue.length > 0 ? Me(n("tvp.tvpSearchbox.addPlaceholder")) : Me(tt()), Object.assign(e, {
|
|
1198
|
+
t: n,
|
|
1204
1199
|
state: t,
|
|
1205
1200
|
isShowClose: K,
|
|
1206
1201
|
deleteTag: m,
|
|
1207
1202
|
editTag: u,
|
|
1208
|
-
backspaceDeleteTag:
|
|
1203
|
+
backspaceDeleteTag: r,
|
|
1209
1204
|
createTag: V,
|
|
1210
|
-
clearTag:
|
|
1205
|
+
clearTag: s,
|
|
1211
1206
|
helpClick: k,
|
|
1212
1207
|
handleInput: h,
|
|
1213
1208
|
handleClick: de,
|
|
1214
|
-
handleEvents: (he,
|
|
1209
|
+
handleEvents: (he, nt, ot) => {
|
|
1215
1210
|
const Be = te();
|
|
1216
|
-
typeof Be[he] == "function" ? Be[he](
|
|
1211
|
+
typeof Be[he] == "function" ? Be[he](nt, ot) : console.warn(`[TinySearchBox] Unknown event: ${he}`);
|
|
1217
1212
|
},
|
|
1218
1213
|
pickerOptions: N,
|
|
1219
1214
|
resetInput: Se,
|
|
1220
1215
|
selectItemIsDisable: v,
|
|
1221
1216
|
selectPropChange: p,
|
|
1222
|
-
confirmEditTag:
|
|
1217
|
+
confirmEditTag: i,
|
|
1223
1218
|
handleConfirm: j,
|
|
1224
1219
|
handleEditConfirm: Q,
|
|
1225
1220
|
showDropdown: _,
|
|
@@ -1232,61 +1227,61 @@ const _e = (e) => {
|
|
|
1232
1227
|
watchMouseDown: W,
|
|
1233
1228
|
watchMouseMove: pe
|
|
1234
1229
|
});
|
|
1235
|
-
},
|
|
1230
|
+
}, hn = ({ watch: e, state: t, props: n, api: o, nextTick: d, vm: c }) => {
|
|
1236
1231
|
var u;
|
|
1237
1232
|
const f = () => {
|
|
1238
|
-
var
|
|
1233
|
+
var i;
|
|
1239
1234
|
if (t.propItem.label) {
|
|
1240
1235
|
const { placeholder: p, type: v } = t.prevItem;
|
|
1241
|
-
p ?
|
|
1236
|
+
p ? o.setPlaceholder(p) : v === "map" ? o.setPlaceholder(q("tvp.tvpSearchbox.tagPlaceholder")) : (i = t.backupList) != null && i.length ? o.setPlaceholder(q("tvp.tvpSearchbox.dynamicPlaceholder", { newValue: t.propItem.label })) : o.setPlaceholder(q("tvp.tvpSearchbox.addPlaceholder"));
|
|
1242
1237
|
} else {
|
|
1243
|
-
const p =
|
|
1244
|
-
|
|
1238
|
+
const p = n.modelValue.length > 0 ? q("tvp.tvpSearchbox.addPlaceholder") : Ve(n, q);
|
|
1239
|
+
o.setPlaceholder(p);
|
|
1245
1240
|
}
|
|
1246
1241
|
}, b = () => {
|
|
1247
|
-
var
|
|
1248
|
-
return (
|
|
1242
|
+
var i, p, v;
|
|
1243
|
+
return (i = c == null ? void 0 : c.$i18n) != null && i.locale ? c.$i18n.locale : (v = (p = c == null ? void 0 : c.proxy) == null ? void 0 : p.$i18n) != null && v.locale ? c.proxy.$i18n.locale : xe();
|
|
1249
1244
|
};
|
|
1250
|
-
let m = b(),
|
|
1245
|
+
let m = b(), s = !1;
|
|
1251
1246
|
if (c != null && c.$i18n)
|
|
1252
1247
|
try {
|
|
1253
1248
|
c.$watch(
|
|
1254
1249
|
() => c.$i18n.locale,
|
|
1255
|
-
(
|
|
1256
|
-
|
|
1250
|
+
(i) => {
|
|
1251
|
+
i !== m && (m = i, f());
|
|
1257
1252
|
},
|
|
1258
1253
|
{ immediate: !1 }
|
|
1259
|
-
),
|
|
1260
|
-
} catch (
|
|
1261
|
-
console.warn("[TinySearchBox] Unable to watch i18n.locale via vm.$watch:",
|
|
1254
|
+
), s = !0;
|
|
1255
|
+
} catch (i) {
|
|
1256
|
+
console.warn("[TinySearchBox] Unable to watch i18n.locale via vm.$watch:", i);
|
|
1262
1257
|
}
|
|
1263
1258
|
if ((u = c == null ? void 0 : c.proxy) != null && u.$i18n)
|
|
1264
1259
|
try {
|
|
1265
1260
|
e(
|
|
1266
1261
|
() => c.proxy.$i18n.locale,
|
|
1267
|
-
(
|
|
1268
|
-
|
|
1262
|
+
(i) => {
|
|
1263
|
+
i !== m && (m = i, f());
|
|
1269
1264
|
},
|
|
1270
1265
|
{ immediate: !1 }
|
|
1271
|
-
),
|
|
1272
|
-
} catch (
|
|
1273
|
-
console.warn("[TinySearchBox] Unable to watch i18n.locale via watch:",
|
|
1266
|
+
), s = !0;
|
|
1267
|
+
} catch (i) {
|
|
1268
|
+
console.warn("[TinySearchBox] Unable to watch i18n.locale via watch:", i);
|
|
1274
1269
|
}
|
|
1275
|
-
const
|
|
1276
|
-
const
|
|
1277
|
-
|
|
1270
|
+
const r = () => {
|
|
1271
|
+
const i = b();
|
|
1272
|
+
i !== m && (m = i, f());
|
|
1278
1273
|
};
|
|
1279
|
-
typeof window < "u" && !
|
|
1280
|
-
() =>
|
|
1274
|
+
typeof window < "u" && !s && (t.localeCheckInterval = setInterval(r, 1e3)), e(
|
|
1275
|
+
() => n.modelValue,
|
|
1281
1276
|
() => {
|
|
1282
|
-
|
|
1277
|
+
r();
|
|
1283
1278
|
}
|
|
1284
1279
|
), e(
|
|
1285
|
-
() =>
|
|
1286
|
-
(
|
|
1280
|
+
() => n.items,
|
|
1281
|
+
(i) => {
|
|
1287
1282
|
const p = t.visible, v = t.prevItem && t.prevItem.field;
|
|
1288
|
-
t.recordItems = ae(
|
|
1289
|
-
if (
|
|
1283
|
+
t.recordItems = ae(i), o.initItems(), o.initFormRule(), d(() => {
|
|
1284
|
+
if (o.initItems(), o.initFormRule(), p && t.propItem.label) {
|
|
1290
1285
|
const l = t.recordItems.find((h) => h.field === v) || t.prevItem;
|
|
1291
1286
|
t.prevItem = l || {}, t.backupList = l && l.options ? [...l.options] : [], t.filterList = t.backupList ? [...t.backupList] : [], _(t);
|
|
1292
1287
|
}
|
|
@@ -1296,57 +1291,49 @@ const _e = (e) => {
|
|
|
1296
1291
|
deep: !0,
|
|
1297
1292
|
immediate: !0
|
|
1298
1293
|
}
|
|
1299
|
-
), e(
|
|
1300
|
-
() => t.inputValue,
|
|
1301
|
-
(s) => {
|
|
1302
|
-
!s && !t.propItem.type && (t.visible = !1);
|
|
1303
|
-
},
|
|
1304
|
-
{
|
|
1305
|
-
immediate: !0
|
|
1306
|
-
}
|
|
1307
1294
|
), e(
|
|
1308
1295
|
() => t.popoverVisible,
|
|
1309
|
-
(
|
|
1310
|
-
!
|
|
1296
|
+
(i) => {
|
|
1297
|
+
!i && !t.inputEditValue.length && (t.prevItem && t.prevItem.mergeTag ? t.inputEditValue = Array.isArray(t.currentEditSelectTags) ? t.currentEditSelectTags : [] : t.inputEditValue = Array.isArray(t.currentEditSelectTags) ? t.currentEditSelectTags.join(",") : t.currentEditSelectTags || ""), i || (t.hasFormError = !1);
|
|
1311
1298
|
},
|
|
1312
1299
|
{
|
|
1313
1300
|
immediate: !0
|
|
1314
1301
|
}
|
|
1315
1302
|
), e(
|
|
1316
1303
|
() => {
|
|
1317
|
-
const
|
|
1304
|
+
const i = {
|
|
1318
1305
|
inputEditValue: t.inputEditValue,
|
|
1319
1306
|
startDate: t.startDate,
|
|
1320
1307
|
endDate: t.endDate,
|
|
1321
1308
|
startDateTime: t.startDateTime,
|
|
1322
1309
|
endDateTime: t.endDateTime
|
|
1323
1310
|
};
|
|
1324
|
-
return t.curMinNumVar && t.curMaxNumVar && (
|
|
1311
|
+
return t.curMinNumVar && t.curMaxNumVar && (i[t.curMinNumVar] = t[t.curMinNumVar], i[t.curMaxNumVar] = t[t.curMaxNumVar]), i;
|
|
1325
1312
|
},
|
|
1326
1313
|
() => {
|
|
1327
1314
|
t.popoverVisible && d(() => {
|
|
1328
|
-
|
|
1315
|
+
o.checkFormValidation();
|
|
1329
1316
|
});
|
|
1330
1317
|
},
|
|
1331
1318
|
{ deep: !0 }
|
|
1332
1319
|
), e(
|
|
1333
1320
|
() => t.propItem.label,
|
|
1334
|
-
(
|
|
1321
|
+
(i) => {
|
|
1335
1322
|
f();
|
|
1336
1323
|
}
|
|
1337
1324
|
), e(
|
|
1338
|
-
() =>
|
|
1339
|
-
(
|
|
1340
|
-
if (
|
|
1341
|
-
if (t.indexMap.clear(), t.valueMap.clear(),
|
|
1325
|
+
() => n.modelValue,
|
|
1326
|
+
(i) => {
|
|
1327
|
+
if (i) {
|
|
1328
|
+
if (t.indexMap.clear(), t.valueMap.clear(), i.forEach((p, v) => {
|
|
1342
1329
|
var h;
|
|
1343
1330
|
const l = `${p.label}${p.value}`;
|
|
1344
1331
|
t.indexMap.set(p.label, v), t.valueMap.set(l, v), ((h = p.options) == null ? void 0 : h.length) > 0 && p.options.forEach((g) => {
|
|
1345
1332
|
const T = `${p.label}${g.label}`;
|
|
1346
1333
|
t.valueMap.set(T, v);
|
|
1347
1334
|
});
|
|
1348
|
-
}), ye(t, !1),
|
|
1349
|
-
const p =
|
|
1335
|
+
}), ye(t, !1), i.length === 0 && o.setPlaceholder(Ve(n, q)), n.editable && !t.inputEditValue.length && i[0]) {
|
|
1336
|
+
const p = i[0];
|
|
1350
1337
|
if ((t.recordItems.find((l) => l.field === p.field) || p).mergeTag && p.options) {
|
|
1351
1338
|
const l = p.options.flatMap((h) => h.label) || [];
|
|
1352
1339
|
t.inputEditValue = l, t.currentEditSelectTags = l;
|
|
@@ -1355,7 +1342,7 @@ const _e = (e) => {
|
|
|
1355
1342
|
t.inputEditValue = Array.isArray(l) ? l.join(",") : l || "";
|
|
1356
1343
|
}
|
|
1357
1344
|
}
|
|
1358
|
-
t.innerModelValue = [...
|
|
1345
|
+
t.innerModelValue = [...i];
|
|
1359
1346
|
}
|
|
1360
1347
|
},
|
|
1361
1348
|
{
|
|
@@ -1364,31 +1351,31 @@ const _e = (e) => {
|
|
|
1364
1351
|
}
|
|
1365
1352
|
);
|
|
1366
1353
|
}, Fe = (e, t) => {
|
|
1367
|
-
const
|
|
1368
|
-
for (const [
|
|
1369
|
-
o
|
|
1370
|
-
return
|
|
1371
|
-
},
|
|
1372
|
-
const { computed:
|
|
1373
|
-
|
|
1354
|
+
const n = e.__vccOpts || e;
|
|
1355
|
+
for (const [o, d] of t)
|
|
1356
|
+
n[o] = d;
|
|
1357
|
+
return n;
|
|
1358
|
+
}, fn = (e, t, { emit: n }) => {
|
|
1359
|
+
const { computed: o } = t, d = e.handleEvents || e.events || ((s, r, u) => {
|
|
1360
|
+
n("events", s, r, u);
|
|
1374
1361
|
});
|
|
1375
1362
|
return {
|
|
1376
|
-
isShowSearchOption:
|
|
1377
|
-
const { inputValue:
|
|
1378
|
-
return
|
|
1363
|
+
isShowSearchOption: o(() => {
|
|
1364
|
+
const { inputValue: s, popoverVisible: r, currentOperators: u, propItem: i, prevItem: p } = e.state;
|
|
1365
|
+
return s.trim() && !r && !(u != null && u.length) && (!i.label || [void 0, null, "", "radio", "input"].includes(p.type));
|
|
1379
1366
|
}),
|
|
1380
|
-
selectInputValue: (
|
|
1381
|
-
d("selectInputValue",
|
|
1367
|
+
selectInputValue: (s) => {
|
|
1368
|
+
d("selectInputValue", s);
|
|
1382
1369
|
},
|
|
1383
|
-
selectPropItem: (
|
|
1384
|
-
d("selectPropItem",
|
|
1370
|
+
selectPropItem: (s) => {
|
|
1371
|
+
d("selectPropItem", s);
|
|
1385
1372
|
},
|
|
1386
|
-
selectRadioItem: (
|
|
1387
|
-
d("selectRadioItem",
|
|
1373
|
+
selectRadioItem: (s, r) => {
|
|
1374
|
+
d("selectRadioItem", s, r);
|
|
1388
1375
|
},
|
|
1389
1376
|
t: q
|
|
1390
1377
|
};
|
|
1391
|
-
},
|
|
1378
|
+
}, vn = ["isShowSearchOption", "selectInputValue", "selectPropItem", "selectRadioItem", "t"], bn = ke({
|
|
1392
1379
|
name: Ne + "SearchBoxFirstLevelPanel",
|
|
1393
1380
|
components: {
|
|
1394
1381
|
TinyDropdownItem: Ae
|
|
@@ -1414,25 +1401,25 @@ const _e = (e) => {
|
|
|
1414
1401
|
},
|
|
1415
1402
|
emits: ["events", "click"],
|
|
1416
1403
|
setup(e, t) {
|
|
1417
|
-
return Pe({ props: e, context: t, renderless:
|
|
1404
|
+
return Pe({ props: e, context: t, renderless: fn, api: vn });
|
|
1418
1405
|
}
|
|
1419
|
-
}),
|
|
1406
|
+
}), gn = { tiny_mode: "pc" }, yn = { key: 0 }, In = { class: "tvp-search-box__filter-type" }, Vn = {
|
|
1420
1407
|
key: 0,
|
|
1421
1408
|
class: "tvp-search-box__text-highlight"
|
|
1422
|
-
},
|
|
1409
|
+
}, kn = { key: 1 }, wn = { class: "tvp-search-box__filter-type" }, Tn = {
|
|
1423
1410
|
key: 0,
|
|
1424
1411
|
class: "tvp-search-box__text-highlight"
|
|
1425
|
-
},
|
|
1412
|
+
}, Sn = { key: 1 }, Mn = { class: "tvp-search-box__filter-type" }, Cn = {
|
|
1426
1413
|
id: "potential-loading",
|
|
1427
1414
|
class: "tvp-search-box__potential-box"
|
|
1428
|
-
},
|
|
1415
|
+
}, Dn = { key: 0 }, En = { class: "tvp-search-box__text-highlight" }, $n = { class: "tvp-search-box__first-panel" }, Ln = {
|
|
1429
1416
|
key: 0,
|
|
1430
1417
|
class: "tvp-search-box__filter-type"
|
|
1431
|
-
},
|
|
1432
|
-
function
|
|
1418
|
+
}, _n = ["title"];
|
|
1419
|
+
function Rn(e, t, n, o, d, c) {
|
|
1433
1420
|
var b, m;
|
|
1434
1421
|
const f = x("tiny-dropdown-item");
|
|
1435
|
-
return I(), M("div",
|
|
1422
|
+
return I(), M("div", gn, [
|
|
1436
1423
|
Y(D(f, {
|
|
1437
1424
|
class: "tvp-search-box__filter-item tvp-search-box__dropdown-item tvp-search-box__dropdown-item-init",
|
|
1438
1425
|
"item-data": { label: e.state.inputValue },
|
|
@@ -1446,11 +1433,11 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1446
1433
|
[J, e.isShowSearchOption]
|
|
1447
1434
|
]),
|
|
1448
1435
|
Y(S("div", null, [
|
|
1449
|
-
(I(!0), M(H, null, z(e.state.matchItems, (
|
|
1450
|
-
|
|
1451
|
-
S("span",
|
|
1452
|
-
(I(!0), M(H, null, z(
|
|
1453
|
-
key: u.label +
|
|
1436
|
+
(I(!0), M(H, null, z(e.state.matchItems, (s, r) => (I(), M("div", { key: r }, [
|
|
1437
|
+
s.attr.length ? (I(), M("div", yn, [
|
|
1438
|
+
S("span", In, w(r === "0" ? e.t("tvp.tvpSearchbox.attributeType") : r), 1),
|
|
1439
|
+
(I(!0), M(H, null, z(s.attr, (u, i) => (I(), F(f, {
|
|
1440
|
+
key: u.label + i,
|
|
1454
1441
|
class: "tvp-search-box__filter-item tvp-search-box__dropdown-item",
|
|
1455
1442
|
"item-data": u,
|
|
1456
1443
|
onItemClick: () => e.selectPropItem(u)
|
|
@@ -1458,17 +1445,17 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1458
1445
|
default: E(() => [
|
|
1459
1446
|
S("span", null, [
|
|
1460
1447
|
(I(!0), M(H, null, z(u.match, (p) => (I(), M("span", { key: p }, [
|
|
1461
|
-
p.toLowerCase() === u.hightlighStr ? (I(), M("span",
|
|
1448
|
+
p.toLowerCase() === u.hightlighStr ? (I(), M("span", Vn, w(p), 1)) : (I(), M("span", kn, w(p), 1))
|
|
1462
1449
|
]))), 128))
|
|
1463
1450
|
])
|
|
1464
1451
|
]),
|
|
1465
1452
|
_: 2
|
|
1466
1453
|
}, 1032, ["item-data", "onItemClick"]))), 128))
|
|
1467
1454
|
])) : B("", !0),
|
|
1468
|
-
|
|
1469
|
-
S("span",
|
|
1470
|
-
(I(!0), M(H, null, z(
|
|
1471
|
-
key: u.label +
|
|
1455
|
+
s.attrValue.length ? (I(), M(H, { key: 1 }, [
|
|
1456
|
+
S("span", wn, w(e.t("tvp.tvpSearchbox.propertyValue", [r === "0" ? e.t("tvp.tvpSearchbox.attributeType") : r])), 1),
|
|
1457
|
+
(I(!0), M(H, null, z(s.attrValue, (u, i) => (I(), F(f, {
|
|
1458
|
+
key: u.label + i,
|
|
1472
1459
|
disabled: u.isChecked,
|
|
1473
1460
|
class: "tvp-search-box__filter-item tvp-search-box__dropdown-item",
|
|
1474
1461
|
"item-data": u,
|
|
@@ -1477,7 +1464,7 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1477
1464
|
default: E(() => [
|
|
1478
1465
|
S("span", null, [
|
|
1479
1466
|
(I(!0), M(H, null, z(u.match, (p) => (I(), M("span", { key: p }, [
|
|
1480
|
-
p.toLowerCase() === u.hightlighStr ? (I(), M("span",
|
|
1467
|
+
p.toLowerCase() === u.hightlighStr ? (I(), M("span", Tn, w(p), 1)) : (I(), M("span", Sn, w(p), 1))
|
|
1481
1468
|
]))), 128))
|
|
1482
1469
|
])
|
|
1483
1470
|
]),
|
|
@@ -1486,18 +1473,18 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1486
1473
|
], 64)) : B("", !0)
|
|
1487
1474
|
]))), 128)),
|
|
1488
1475
|
Y(S("div", null, [
|
|
1489
|
-
S("span",
|
|
1490
|
-
S("div",
|
|
1491
|
-
e.state.potentialOptions ? (I(), M("div",
|
|
1492
|
-
(I(!0), M(H, null, z(e.state.potentialOptions, (
|
|
1493
|
-
key:
|
|
1476
|
+
S("span", Mn, w(e.t("tvp.tvpSearchbox.matched")), 1),
|
|
1477
|
+
S("div", Cn, [
|
|
1478
|
+
e.state.potentialOptions ? (I(), M("div", Dn, [
|
|
1479
|
+
(I(!0), M(H, null, z(e.state.potentialOptions, (s, r) => (I(), F(f, {
|
|
1480
|
+
key: s.label + r,
|
|
1494
1481
|
class: "tvp-search-box__filter-item tvp-search-box__dropdown-item",
|
|
1495
|
-
"item-data":
|
|
1496
|
-
onItemClick: () => e.selectRadioItem(
|
|
1482
|
+
"item-data": s,
|
|
1483
|
+
onItemClick: () => e.selectRadioItem(s, !0)
|
|
1497
1484
|
}, {
|
|
1498
1485
|
default: E(() => [
|
|
1499
|
-
G(w(
|
|
1500
|
-
S("span",
|
|
1486
|
+
G(w(s.label) + ": ", 1),
|
|
1487
|
+
S("span", En, w(s.value), 1)
|
|
1501
1488
|
]),
|
|
1502
1489
|
_: 2
|
|
1503
1490
|
}, 1032, ["item-data", "onItemClick"]))), 128))
|
|
@@ -1509,11 +1496,11 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1509
1496
|
], 512), [
|
|
1510
1497
|
[J, !e.state.propItem.label && ((b = e.state.inputValue) == null ? void 0 : b.trim())]
|
|
1511
1498
|
]),
|
|
1512
|
-
Y(S("div", $
|
|
1513
|
-
(I(!0), M(H, null, z(e.state.groupItems, (
|
|
1514
|
-
|
|
1515
|
-
(I(!0), M(H, null, z(
|
|
1516
|
-
key: (u.field || u.label) +
|
|
1499
|
+
Y(S("div", $n, [
|
|
1500
|
+
(I(!0), M(H, null, z(e.state.groupItems, (s, r) => (I(), M("div", { key: r }, [
|
|
1501
|
+
s.length ? (I(), M("span", Ln, w(r === "0" ? e.t("tvp.tvpSearchbox.attributeType") : r), 1)) : B("", !0),
|
|
1502
|
+
(I(!0), M(H, null, z(s, (u, i) => (I(), F(f, {
|
|
1503
|
+
key: (u.field || u.label) + i,
|
|
1517
1504
|
class: "tvp-search-box__dropdown-item",
|
|
1518
1505
|
"item-data": u,
|
|
1519
1506
|
onItemClick: () => e.selectPropItem(u)
|
|
@@ -1521,7 +1508,7 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1521
1508
|
default: E(() => [
|
|
1522
1509
|
S("span", {
|
|
1523
1510
|
title: u.label
|
|
1524
|
-
}, w(u.label), 9,
|
|
1511
|
+
}, w(u.label), 9, _n)
|
|
1525
1512
|
]),
|
|
1526
1513
|
_: 2
|
|
1527
1514
|
}, 1032, ["item-data", "onItemClick"]))), 128))
|
|
@@ -1531,47 +1518,47 @@ function Ro(e, t, o, n, d, c) {
|
|
|
1531
1518
|
])
|
|
1532
1519
|
]);
|
|
1533
1520
|
}
|
|
1534
|
-
const
|
|
1535
|
-
function
|
|
1536
|
-
const { reactive:
|
|
1521
|
+
const Nn = /* @__PURE__ */ Fe(bn, [["render", Rn]]);
|
|
1522
|
+
function Pn(e, t) {
|
|
1523
|
+
const { reactive: n, computed: o } = e, { getList: d, itemHeight: c = 32, bufferSize: f = 5, headerHeight: b = () => 0 } = t, m = n({
|
|
1537
1524
|
scrollTop: 0,
|
|
1538
1525
|
viewportHeight: 300
|
|
1539
|
-
}),
|
|
1526
|
+
}), s = o(() => (d() || []).length * c), r = o(() => {
|
|
1540
1527
|
const l = Math.max(0, m.scrollTop - b());
|
|
1541
1528
|
return Math.max(0, Math.floor(l / c) - f);
|
|
1542
|
-
}), u =
|
|
1529
|
+
}), u = o(() => {
|
|
1543
1530
|
const l = d() || [], h = Math.ceil(m.viewportHeight / c);
|
|
1544
|
-
return Math.min(l.length,
|
|
1545
|
-
}),
|
|
1531
|
+
return Math.min(l.length, r.value + h + f * 2);
|
|
1532
|
+
}), i = o(() => r.value * c), p = o(() => (d() || []).slice(r.value, u.value));
|
|
1546
1533
|
return {
|
|
1547
1534
|
vsState: m,
|
|
1548
|
-
totalHeight:
|
|
1549
|
-
startIndex:
|
|
1535
|
+
totalHeight: s,
|
|
1536
|
+
startIndex: r,
|
|
1550
1537
|
endIndex: u,
|
|
1551
|
-
offsetY:
|
|
1538
|
+
offsetY: i,
|
|
1552
1539
|
visibleItems: p,
|
|
1553
1540
|
handleScroll: (l) => {
|
|
1554
1541
|
m.scrollTop = l.target.scrollTop, m.viewportHeight = l.target.clientHeight;
|
|
1555
1542
|
}
|
|
1556
1543
|
};
|
|
1557
1544
|
}
|
|
1558
|
-
const
|
|
1559
|
-
const { computed: c, reactive: f, watch: b, onMounted: m } = t,
|
|
1560
|
-
|
|
1561
|
-
}),
|
|
1562
|
-
|
|
1545
|
+
const On = (e, t, { emit: n, nextTick: o, refs: d }) => {
|
|
1546
|
+
const { computed: c, reactive: f, watch: b, onMounted: m } = t, s = e.handleEvents || e.events || ((a, V, k) => {
|
|
1547
|
+
n("events", a, V, k);
|
|
1548
|
+
}), r = (a) => {
|
|
1549
|
+
s("setOperator", a);
|
|
1563
1550
|
}, u = (a) => {
|
|
1564
|
-
|
|
1565
|
-
},
|
|
1566
|
-
|
|
1551
|
+
s("selectRadioItem", a);
|
|
1552
|
+
}, i = (a) => {
|
|
1553
|
+
s("selectCheckbox", a);
|
|
1567
1554
|
}, p = (a) => {
|
|
1568
|
-
|
|
1555
|
+
s("sizeChange", a);
|
|
1569
1556
|
}, v = (a, V) => {
|
|
1570
|
-
|
|
1557
|
+
s("onConfirmDate", a, V);
|
|
1571
1558
|
}, l = (a, V) => {
|
|
1572
|
-
|
|
1559
|
+
s("selectFirstMap", a, V);
|
|
1573
1560
|
}, h = (a) => {
|
|
1574
|
-
|
|
1561
|
+
s("handleDateShow", a);
|
|
1575
1562
|
}, g = c(() => {
|
|
1576
1563
|
var a;
|
|
1577
1564
|
return e.state.hasBackupList && ((a = e.state.backupList) == null ? void 0 : a.length) === 0;
|
|
@@ -1581,7 +1568,7 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1581
1568
|
}), $ = c(() => {
|
|
1582
1569
|
const a = e.state.prevItem.type, V = e.state.backupList || [];
|
|
1583
1570
|
return !a || a === "radio" ? e.state.inputValue ? V.filter((k) => !k.isFilter) : V : V.filter((k) => !k.isFilter);
|
|
1584
|
-
}), y =
|
|
1571
|
+
}), y = Pn(
|
|
1585
1572
|
{ reactive: f, computed: c },
|
|
1586
1573
|
{
|
|
1587
1574
|
getList: () => $.value,
|
|
@@ -1596,14 +1583,14 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1596
1583
|
return b(
|
|
1597
1584
|
() => e.state.inputValue,
|
|
1598
1585
|
() => {
|
|
1599
|
-
y.vsState.scrollTop = 0,
|
|
1586
|
+
y.vsState.scrollTop = 0, o(() => {
|
|
1600
1587
|
d.vsScrollEl && (d.vsScrollEl.scrollTop = 0);
|
|
1601
1588
|
});
|
|
1602
1589
|
}
|
|
1603
1590
|
), b(
|
|
1604
1591
|
() => e.state.prevItem,
|
|
1605
1592
|
() => {
|
|
1606
|
-
y.vsState.scrollTop = 0,
|
|
1593
|
+
y.vsState.scrollTop = 0, o(() => {
|
|
1607
1594
|
d.vsScrollEl && (d.vsScrollEl.scrollTop = 0, y.handleScroll({ target: d.vsScrollEl }));
|
|
1608
1595
|
});
|
|
1609
1596
|
},
|
|
@@ -1611,9 +1598,9 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1611
1598
|
), m(() => {
|
|
1612
1599
|
d.vsScrollEl && y.handleScroll({ target: d.vsScrollEl });
|
|
1613
1600
|
}), {
|
|
1614
|
-
setOperator:
|
|
1601
|
+
setOperator: r,
|
|
1615
1602
|
selectRadioItem: u,
|
|
1616
|
-
selectCheckbox:
|
|
1603
|
+
selectCheckbox: i,
|
|
1617
1604
|
sizeChange: p,
|
|
1618
1605
|
onConfirmDate: v,
|
|
1619
1606
|
selectFirstMap: l,
|
|
@@ -1627,7 +1614,7 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1627
1614
|
vsHandleScroll: y.handleScroll,
|
|
1628
1615
|
t: q
|
|
1629
1616
|
};
|
|
1630
|
-
},
|
|
1617
|
+
}, xn = [
|
|
1631
1618
|
"setOperator",
|
|
1632
1619
|
"selectRadioItem",
|
|
1633
1620
|
"selectCheckbox",
|
|
@@ -1643,7 +1630,7 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1643
1630
|
"vsVisibleItems",
|
|
1644
1631
|
"vsHandleScroll",
|
|
1645
1632
|
"t"
|
|
1646
|
-
],
|
|
1633
|
+
], Fn = ke({
|
|
1647
1634
|
name: Ne + "SearchBoxSecondLevelPanel",
|
|
1648
1635
|
emits: ["events", "click"],
|
|
1649
1636
|
components: {
|
|
@@ -1683,33 +1670,33 @@ const Oo = (e, t, { emit: o, nextTick: n, refs: d }) => {
|
|
|
1683
1670
|
}
|
|
1684
1671
|
},
|
|
1685
1672
|
setup(e, t) {
|
|
1686
|
-
return Pe({ props: e, context: t, renderless:
|
|
1673
|
+
return Pe({ props: e, context: t, renderless: On, api: xn });
|
|
1687
1674
|
}
|
|
1688
|
-
}),
|
|
1675
|
+
}), Bn = { tiny_mode: "pc" }, Hn = { key: 0 }, An = { class: "tvp-search-box__filter-type" }, zn = ["title"], Un = {
|
|
1689
1676
|
key: 0,
|
|
1690
1677
|
class: "tvp-search-box__text-highlight"
|
|
1691
|
-
},
|
|
1678
|
+
}, jn = { key: 1 }, Kn = ["title"], Gn = { class: "tvp-search-box__checkbox-btn" }, Yn = {
|
|
1692
1679
|
key: 3,
|
|
1693
1680
|
class: "tvp-search-box__panel-box"
|
|
1694
|
-
},
|
|
1681
|
+
}, qn = { class: "tvp-search-box__number" }, Zn = { class: "tvp-search-box__dropdown-title" }, Xn = { class: "tvp-search-box__dropdown-start" }, Qn = { class: "tvp-search-box__dropdown-end" }, Wn = { class: "tvp-search-box__bottom-btn" }, Jn = {
|
|
1695
1682
|
key: 4,
|
|
1696
1683
|
class: "tvp-search-box__panel-box"
|
|
1697
|
-
},
|
|
1684
|
+
}, eo = { class: "tvp-search-box__date-wrap" }, to = { class: "tvp-search-box__dropdown-title" }, no = { class: "tvp-search-box__dropdown-start" }, oo = { class: "tvp-search-box__dropdown-end" }, lo = { class: "tvp-search-box__bottom-btn" }, ao = {
|
|
1698
1685
|
key: 5,
|
|
1699
1686
|
class: "tvp-search-box__panel-box"
|
|
1700
|
-
},
|
|
1687
|
+
}, so = { class: "tvp-search-box__date-wrap" }, ro = { class: "tvp-search-box__dropdown-title" }, io = { class: "tvp-search-box__dropdown-start" }, po = { class: "tvp-search-box__dropdown-end" }, uo = { class: "tvp-search-box__bottom-btn" }, co = { key: 6 }, mo = {
|
|
1701
1688
|
key: 0,
|
|
1702
1689
|
class: "tvp-search-box__filter-type"
|
|
1703
|
-
},
|
|
1690
|
+
}, ho = {
|
|
1704
1691
|
key: 1,
|
|
1705
1692
|
class: "tvp-search-box__filter-type"
|
|
1706
|
-
},
|
|
1707
|
-
function
|
|
1693
|
+
}, fo = ["title"];
|
|
1694
|
+
function vo(e, t, n, o, d, c) {
|
|
1708
1695
|
var v;
|
|
1709
|
-
const f = x("tiny-dropdown-item"), b = x("tiny-checkbox"), m = x("tiny-checkbox-group"),
|
|
1710
|
-
return I(), M("div",
|
|
1711
|
-
(v = e.state.currentOperators) != null && v.length ? (I(), M("div",
|
|
1712
|
-
S("span",
|
|
1696
|
+
const f = x("tiny-dropdown-item"), b = x("tiny-checkbox"), m = x("tiny-checkbox-group"), s = x("tiny-button"), r = x("tiny-input"), u = x("tiny-form-item"), i = x("tiny-date-picker"), p = gt("loading");
|
|
1697
|
+
return I(), M("div", Bn, [
|
|
1698
|
+
(v = e.state.currentOperators) != null && v.length ? (I(), M("div", Hn, [
|
|
1699
|
+
S("span", An, w(e.t("tvp.tvpSearchbox.operator")), 1),
|
|
1713
1700
|
(I(!0), M(H, null, z(e.state.currentOperators, (l, h) => Y((I(), F(f, {
|
|
1714
1701
|
key: l + h,
|
|
1715
1702
|
class: "tvp-search-box__dropdown-item",
|
|
@@ -1723,20 +1710,20 @@ function vn(e, t, o, n, d, c) {
|
|
|
1723
1710
|
}, 1032, ["item-data", "onItemClick"])), [
|
|
1724
1711
|
[J, l.includes(e.state.inputValue)]
|
|
1725
1712
|
])), 128))
|
|
1726
|
-
])) : !e.state.prevItem.type || e.state.prevItem.type
|
|
1713
|
+
])) : !e.state.prevItem.type || ["radio", "input"].includes(e.state.prevItem.type) ? Y((I(), M("div", {
|
|
1727
1714
|
key: 1,
|
|
1728
1715
|
class: ve(["tvp-search-box__radio-wrap", "tvp-search-box__virtual-list", e.isLoading && "tvp-search-box__loading-box"]),
|
|
1729
|
-
style:
|
|
1716
|
+
style: ne({ maxHeight: e.panelMaxHeight }),
|
|
1730
1717
|
ref: "vsScrollEl",
|
|
1731
1718
|
onScroll: t[0] || (t[0] = (...l) => e.vsHandleScroll && e.vsHandleScroll(...l))
|
|
1732
1719
|
}, [
|
|
1733
1720
|
S("div", {
|
|
1734
1721
|
class: "tvp-search-box__virtual-phantom",
|
|
1735
|
-
style:
|
|
1722
|
+
style: ne({ height: e.vsTotalHeight + "px" })
|
|
1736
1723
|
}, [
|
|
1737
1724
|
S("div", {
|
|
1738
1725
|
class: "tvp-search-box__virtual-content",
|
|
1739
|
-
style:
|
|
1726
|
+
style: ne({ transform: "translateY(" + e.vsOffsetY + "px)" })
|
|
1740
1727
|
}, [
|
|
1741
1728
|
(I(!0), M(H, null, z(e.vsVisibleItems, (l, h) => (I(), F(f, {
|
|
1742
1729
|
key: e.vsStartIndex + h + (l.field || l.label),
|
|
@@ -1751,12 +1738,12 @@ function vn(e, t, o, n, d, c) {
|
|
|
1751
1738
|
title: l.label
|
|
1752
1739
|
}, [
|
|
1753
1740
|
(I(!0), M(H, null, z(l.match, (g, T) => (I(), M("span", { key: T }, [
|
|
1754
|
-
g.toLowerCase() === l.hightlighStr ? (I(), M("span",
|
|
1741
|
+
g.toLowerCase() === l.hightlighStr ? (I(), M("span", Un, w(g), 1)) : (I(), M("span", jn, w(g), 1))
|
|
1755
1742
|
]))), 128))
|
|
1756
|
-
], 8,
|
|
1743
|
+
], 8, zn)) : (I(), M("span", {
|
|
1757
1744
|
key: 1,
|
|
1758
1745
|
title: l.label
|
|
1759
|
-
}, w(l.label), 9,
|
|
1746
|
+
}, w(l.label), 9, Kn))
|
|
1760
1747
|
]),
|
|
1761
1748
|
_: 2
|
|
1762
1749
|
}, 1032, ["disabled", "item-data", "onItemClick"]))), 128))
|
|
@@ -1771,7 +1758,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
1771
1758
|
e.showCheckBoxList ? (I(), M("div", {
|
|
1772
1759
|
key: 0,
|
|
1773
1760
|
class: "tvp-search-box__checkbox-wrap",
|
|
1774
|
-
style:
|
|
1761
|
+
style: ne({ maxHeight: e.panelMaxHeight })
|
|
1775
1762
|
}, [
|
|
1776
1763
|
S("div", {
|
|
1777
1764
|
ref: "vsScrollEl",
|
|
@@ -1810,11 +1797,11 @@ function vn(e, t, o, n, d, c) {
|
|
|
1810
1797
|
default: E(() => [
|
|
1811
1798
|
S("div", {
|
|
1812
1799
|
class: "tvp-search-box__virtual-phantom",
|
|
1813
|
-
style:
|
|
1800
|
+
style: ne({ height: e.vsTotalHeight + "px" })
|
|
1814
1801
|
}, [
|
|
1815
1802
|
S("div", {
|
|
1816
1803
|
class: "tvp-search-box__virtual-content",
|
|
1817
|
-
style:
|
|
1804
|
+
style: ne({ transform: "translateY(" + e.vsOffsetY + "px)" })
|
|
1818
1805
|
}, [
|
|
1819
1806
|
(I(!0), M(H, null, z(e.vsVisibleItems, (l, h) => (I(), F(f, {
|
|
1820
1807
|
key: (l.field || l.label) + e.vsStartIndex + h,
|
|
@@ -1840,8 +1827,8 @@ function vn(e, t, o, n, d, c) {
|
|
|
1840
1827
|
_: 1
|
|
1841
1828
|
}, 8, ["modelValue"])
|
|
1842
1829
|
], 544),
|
|
1843
|
-
S("div",
|
|
1844
|
-
D(
|
|
1830
|
+
S("div", Gn, [
|
|
1831
|
+
D(s, {
|
|
1845
1832
|
size: "mini",
|
|
1846
1833
|
onClick: t[5] || (t[5] = (l) => e.selectCheckbox(!1))
|
|
1847
1834
|
}, {
|
|
@@ -1850,7 +1837,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
1850
1837
|
]),
|
|
1851
1838
|
_: 1
|
|
1852
1839
|
}),
|
|
1853
|
-
D(
|
|
1840
|
+
D(s, {
|
|
1854
1841
|
size: "mini",
|
|
1855
1842
|
onClick: t[6] || (t[6] = (l) => e.selectCheckbox(!0))
|
|
1856
1843
|
}, {
|
|
@@ -1863,17 +1850,17 @@ function vn(e, t, o, n, d, c) {
|
|
|
1863
1850
|
], 4)) : B("", !0)
|
|
1864
1851
|
], 2)), [
|
|
1865
1852
|
[p, e.isLoading]
|
|
1866
|
-
]) : e.state.prevItem.type === "numRange" ? (I(), M("div",
|
|
1867
|
-
S("div",
|
|
1868
|
-
S("div",
|
|
1869
|
-
S("div",
|
|
1853
|
+
]) : e.state.prevItem.type === "numRange" ? (I(), M("div", Yn, [
|
|
1854
|
+
S("div", qn, [
|
|
1855
|
+
S("div", Zn, w(e.t("tvp.tvpSearchbox.rangeNumberTitle")), 1),
|
|
1856
|
+
S("div", Xn, w(e.t("tvp.tvpSearchbox.minValueText")) + w(e.state.prevItem.unit ? `(${e.state.prevItem.unit})` : ""), 1),
|
|
1870
1857
|
D(u, {
|
|
1871
1858
|
prop: e.state.curMinNumVar,
|
|
1872
1859
|
class: "tvp-search-box__number-item",
|
|
1873
1860
|
"show-message": e.state.numberShowMessage
|
|
1874
1861
|
}, {
|
|
1875
1862
|
default: E(() => [
|
|
1876
|
-
D(
|
|
1863
|
+
D(r, {
|
|
1877
1864
|
modelValue: e.state[e.state.curMinNumVar],
|
|
1878
1865
|
"onUpdate:modelValue": t[7] || (t[7] = (l) => e.state[e.state.curMinNumVar] = l),
|
|
1879
1866
|
type: "number",
|
|
@@ -1882,13 +1869,13 @@ function vn(e, t, o, n, d, c) {
|
|
|
1882
1869
|
]),
|
|
1883
1870
|
_: 1
|
|
1884
1871
|
}, 8, ["prop", "show-message"]),
|
|
1885
|
-
S("div",
|
|
1872
|
+
S("div", Qn, w(e.t("tvp.tvpSearchbox.maxValueText")) + w(e.state.prevItem.unit ? `(${e.state.prevItem.unit})` : ""), 1),
|
|
1886
1873
|
D(u, {
|
|
1887
1874
|
prop: e.state.curMaxNumVar,
|
|
1888
1875
|
class: "tvp-search-box__number-item"
|
|
1889
1876
|
}, {
|
|
1890
1877
|
default: E(() => [
|
|
1891
|
-
D(
|
|
1878
|
+
D(r, {
|
|
1892
1879
|
modelValue: e.state[e.state.curMaxNumVar],
|
|
1893
1880
|
"onUpdate:modelValue": t[8] || (t[8] = (l) => e.state[e.state.curMaxNumVar] = l),
|
|
1894
1881
|
type: "number",
|
|
@@ -1898,8 +1885,8 @@ function vn(e, t, o, n, d, c) {
|
|
|
1898
1885
|
_: 1
|
|
1899
1886
|
}, 8, ["prop"])
|
|
1900
1887
|
]),
|
|
1901
|
-
S("div",
|
|
1902
|
-
D(
|
|
1888
|
+
S("div", Wn, [
|
|
1889
|
+
D(s, {
|
|
1903
1890
|
size: "mini",
|
|
1904
1891
|
onClick: t[9] || (t[9] = (l) => e.sizeChange(!1))
|
|
1905
1892
|
}, {
|
|
@@ -1908,7 +1895,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
1908
1895
|
]),
|
|
1909
1896
|
_: 1
|
|
1910
1897
|
}),
|
|
1911
|
-
D(
|
|
1898
|
+
D(s, {
|
|
1912
1899
|
size: "mini",
|
|
1913
1900
|
onClick: t[10] || (t[10] = Z((l) => e.sizeChange(!0), ["stop"]))
|
|
1914
1901
|
}, {
|
|
@@ -1918,19 +1905,19 @@ function vn(e, t, o, n, d, c) {
|
|
|
1918
1905
|
_: 1
|
|
1919
1906
|
})
|
|
1920
1907
|
])
|
|
1921
|
-
])) : e.state.prevItem.type === "dateRange" ? (I(), M("div",
|
|
1922
|
-
S("div",
|
|
1923
|
-
S("div",
|
|
1908
|
+
])) : e.state.prevItem.type === "dateRange" ? (I(), M("div", Jn, [
|
|
1909
|
+
S("div", eo, [
|
|
1910
|
+
S("div", to, w(e.state.prevItem.maxTimeLength > 0 ? e.t("tvp.tvpSearchbox.timeLengthTitle", {
|
|
1924
1911
|
value: (e.state.prevItem.maxTimeLength / 864e5).toFixed(1)
|
|
1925
1912
|
}) : e.t("tvp.tvpSearchbox.rangeDateTitle")), 1),
|
|
1926
|
-
S("div",
|
|
1913
|
+
S("div", no, w(e.t("tvp.tvpSearchbox.rangeBeginLabel")), 1),
|
|
1927
1914
|
D(u, {
|
|
1928
1915
|
prop: "startDate",
|
|
1929
1916
|
"show-message": !!e.state.prevItem.maxTimeLength,
|
|
1930
1917
|
class: "tvp-search-box__date-item"
|
|
1931
1918
|
}, {
|
|
1932
1919
|
default: E(() => [
|
|
1933
|
-
D(
|
|
1920
|
+
D(i, {
|
|
1934
1921
|
modelValue: e.state.startDate,
|
|
1935
1922
|
"onUpdate:modelValue": t[11] || (t[11] = (l) => e.state.startDate = l),
|
|
1936
1923
|
format: e.state.prevItem.format || e.state.dateRangeFormat,
|
|
@@ -1942,13 +1929,13 @@ function vn(e, t, o, n, d, c) {
|
|
|
1942
1929
|
]),
|
|
1943
1930
|
_: 1
|
|
1944
1931
|
}, 8, ["show-message"]),
|
|
1945
|
-
S("div",
|
|
1932
|
+
S("div", oo, w(e.t("tvp.tvpSearchbox.rangeEndLabel")), 1),
|
|
1946
1933
|
D(u, {
|
|
1947
1934
|
prop: "endDate",
|
|
1948
1935
|
class: "tvp-search-box__date-item"
|
|
1949
1936
|
}, {
|
|
1950
1937
|
default: E(() => [
|
|
1951
|
-
D(
|
|
1938
|
+
D(i, {
|
|
1952
1939
|
modelValue: e.state.endDate,
|
|
1953
1940
|
"onUpdate:modelValue": t[12] || (t[12] = (l) => e.state.endDate = l),
|
|
1954
1941
|
format: e.state.prevItem.format || e.state.dateRangeFormat,
|
|
@@ -1962,8 +1949,8 @@ function vn(e, t, o, n, d, c) {
|
|
|
1962
1949
|
_: 1
|
|
1963
1950
|
})
|
|
1964
1951
|
]),
|
|
1965
|
-
S("div",
|
|
1966
|
-
D(
|
|
1952
|
+
S("div", lo, [
|
|
1953
|
+
D(s, {
|
|
1967
1954
|
size: "mini",
|
|
1968
1955
|
onClick: t[13] || (t[13] = (l) => e.onConfirmDate(!1))
|
|
1969
1956
|
}, {
|
|
@@ -1972,7 +1959,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
1972
1959
|
]),
|
|
1973
1960
|
_: 1
|
|
1974
1961
|
}),
|
|
1975
|
-
D(
|
|
1962
|
+
D(s, {
|
|
1976
1963
|
size: "mini",
|
|
1977
1964
|
onClick: t[14] || (t[14] = (l) => e.onConfirmDate(!0))
|
|
1978
1965
|
}, {
|
|
@@ -1982,19 +1969,19 @@ function vn(e, t, o, n, d, c) {
|
|
|
1982
1969
|
_: 1
|
|
1983
1970
|
})
|
|
1984
1971
|
])
|
|
1985
|
-
])) : e.state.prevItem.type === "datetimeRange" ? (I(), M("div",
|
|
1986
|
-
S("div",
|
|
1987
|
-
S("div",
|
|
1972
|
+
])) : e.state.prevItem.type === "datetimeRange" ? (I(), M("div", ao, [
|
|
1973
|
+
S("div", so, [
|
|
1974
|
+
S("div", ro, w(e.state.prevItem.maxTimeLength > 0 ? e.t("tvp.tvpSearchbox.timeLengthTitle", {
|
|
1988
1975
|
value: (e.state.prevItem.maxTimeLength / 864e5).toFixed(1)
|
|
1989
1976
|
}) : e.t("tvp.tvpSearchbox.rangeDateTitle")), 1),
|
|
1990
|
-
S("div",
|
|
1977
|
+
S("div", io, w(e.t("tvp.tvpSearchbox.rangeBeginLabel")), 1),
|
|
1991
1978
|
D(u, {
|
|
1992
1979
|
prop: "startDateTime",
|
|
1993
1980
|
"show-message": !!e.state.prevItem.maxTimeLength,
|
|
1994
1981
|
class: "tvp-search-box__date-item"
|
|
1995
1982
|
}, {
|
|
1996
1983
|
default: E(() => [
|
|
1997
|
-
D(
|
|
1984
|
+
D(i, {
|
|
1998
1985
|
modelValue: e.state.startDateTime,
|
|
1999
1986
|
"onUpdate:modelValue": t[15] || (t[15] = (l) => e.state.startDateTime = l),
|
|
2000
1987
|
type: "datetime",
|
|
@@ -2009,13 +1996,13 @@ function vn(e, t, o, n, d, c) {
|
|
|
2009
1996
|
]),
|
|
2010
1997
|
_: 1
|
|
2011
1998
|
}, 8, ["show-message"]),
|
|
2012
|
-
S("div",
|
|
1999
|
+
S("div", po, w(e.t("tvp.tvpSearchbox.rangeEndLabel")), 1),
|
|
2013
2000
|
D(u, {
|
|
2014
2001
|
prop: "endDateTime",
|
|
2015
2002
|
class: "tvp-search-box__date-item"
|
|
2016
2003
|
}, {
|
|
2017
2004
|
default: E(() => [
|
|
2018
|
-
D(
|
|
2005
|
+
D(i, {
|
|
2019
2006
|
modelValue: e.state.endDateTime,
|
|
2020
2007
|
"onUpdate:modelValue": t[16] || (t[16] = (l) => e.state.endDateTime = l),
|
|
2021
2008
|
type: "datetime",
|
|
@@ -2031,8 +2018,8 @@ function vn(e, t, o, n, d, c) {
|
|
|
2031
2018
|
_: 1
|
|
2032
2019
|
})
|
|
2033
2020
|
]),
|
|
2034
|
-
S("div",
|
|
2035
|
-
D(
|
|
2021
|
+
S("div", uo, [
|
|
2022
|
+
D(s, {
|
|
2036
2023
|
size: "mini",
|
|
2037
2024
|
onClick: t[17] || (t[17] = (l) => e.onConfirmDate(!1, !0))
|
|
2038
2025
|
}, {
|
|
@@ -2041,7 +2028,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
2041
2028
|
]),
|
|
2042
2029
|
_: 1
|
|
2043
2030
|
}),
|
|
2044
|
-
D(
|
|
2031
|
+
D(s, {
|
|
2045
2032
|
size: "mini",
|
|
2046
2033
|
onClick: t[18] || (t[18] = (l) => e.onConfirmDate(!0, !0))
|
|
2047
2034
|
}, {
|
|
@@ -2051,21 +2038,21 @@ function vn(e, t, o, n, d, c) {
|
|
|
2051
2038
|
_: 1
|
|
2052
2039
|
})
|
|
2053
2040
|
])
|
|
2054
|
-
])) : e.state.prevItem.type === "map" ? Y((I(), M("div",
|
|
2041
|
+
])) : e.state.prevItem.type === "map" ? Y((I(), M("div", co, [
|
|
2055
2042
|
S("div", {
|
|
2056
2043
|
ref: "vsScrollEl",
|
|
2057
2044
|
class: "tvp-search-box__virtual-list",
|
|
2058
|
-
style:
|
|
2045
|
+
style: ne({ maxHeight: e.panelMaxHeight }),
|
|
2059
2046
|
onScroll: t[19] || (t[19] = (...l) => e.vsHandleScroll && e.vsHandleScroll(...l))
|
|
2060
2047
|
}, [
|
|
2061
|
-
e.state.isShowTagKey ? (I(), M("span",
|
|
2048
|
+
e.state.isShowTagKey ? (I(), M("span", mo, w(e.t("tvp.tvpSearchbox.tagKey")), 1)) : (I(), M("span", ho, w(e.t("tvp.tvpSearchbox.tagValue")), 1)),
|
|
2062
2049
|
S("div", {
|
|
2063
2050
|
class: "tvp-search-box__virtual-phantom",
|
|
2064
|
-
style:
|
|
2051
|
+
style: ne({ height: e.vsTotalHeight + "px" })
|
|
2065
2052
|
}, [
|
|
2066
2053
|
S("div", {
|
|
2067
2054
|
class: "tvp-search-box__virtual-content",
|
|
2068
|
-
style:
|
|
2055
|
+
style: ne({ transform: "translateY(" + e.vsOffsetY + "px)" })
|
|
2069
2056
|
}, [
|
|
2070
2057
|
(I(!0), M(H, null, z(e.vsVisibleItems, (l, h) => (I(), F(f, {
|
|
2071
2058
|
key: l.label + l.value + e.vsStartIndex + h,
|
|
@@ -2077,7 +2064,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
2077
2064
|
default: E(() => [
|
|
2078
2065
|
S("span", {
|
|
2079
2066
|
title: l.label
|
|
2080
|
-
}, w(l.label), 9,
|
|
2067
|
+
}, w(l.label), 9, fo)
|
|
2081
2068
|
]),
|
|
2082
2069
|
_: 2
|
|
2083
2070
|
}, 1032, ["disabled", "item-data", "onItemClick"]))), 128))
|
|
@@ -2089,7 +2076,7 @@ function vn(e, t, o, n, d, c) {
|
|
|
2089
2076
|
]) : B("", !0)
|
|
2090
2077
|
]);
|
|
2091
2078
|
}
|
|
2092
|
-
const
|
|
2079
|
+
const bo = /* @__PURE__ */ Fe(Fn, [["render", vo]]), go = ke({
|
|
2093
2080
|
model: {
|
|
2094
2081
|
prop: "modelValue",
|
|
2095
2082
|
event: "update:modelValue"
|
|
@@ -2176,40 +2163,40 @@ const bn = /* @__PURE__ */ Fe(Fo, [["render", vn]]), gn = ke({
|
|
|
2176
2163
|
TinyPopover: dt,
|
|
2177
2164
|
TinySelect: mt,
|
|
2178
2165
|
TinyOption: ht,
|
|
2179
|
-
TinySearchBoxFirstLevelPanel:
|
|
2180
|
-
TinySearchBoxSecondLevelPanel:
|
|
2166
|
+
TinySearchBoxFirstLevelPanel: Nn,
|
|
2167
|
+
TinySearchBoxSecondLevelPanel: bo,
|
|
2181
2168
|
// 图标组件
|
|
2182
2169
|
TinyIconSearch: ft(),
|
|
2183
2170
|
TinyIconClose: vt(),
|
|
2184
2171
|
TinyIconHelpQuery: bt()
|
|
2185
2172
|
},
|
|
2186
2173
|
setup(e, t) {
|
|
2187
|
-
return Pe({ props: e, context: t, renderless:
|
|
2174
|
+
return Pe({ props: e, context: t, renderless: dn, api: un });
|
|
2188
2175
|
}
|
|
2189
|
-
}),
|
|
2176
|
+
}), yo = { class: "tvp-search-box__tag-value" }, Io = {
|
|
2190
2177
|
key: 1,
|
|
2191
2178
|
class: "tvp-search-box__placeholder"
|
|
2192
|
-
},
|
|
2179
|
+
}, Vo = { class: "tvp-search-box__input-wrapper" }, ko = { class: "tvp-search-box__prop" }, wo = { class: "tvp-search-box__input-separator" }, To = { class: "tvp-search-box__date-wrap" }, So = { class: "tvp-search-box__dropdown-start" }, Mo = {
|
|
2193
2180
|
key: 0,
|
|
2194
2181
|
class: "tvp-search-box__dropdown-end"
|
|
2195
|
-
},
|
|
2182
|
+
}, Co = {
|
|
2196
2183
|
key: 2,
|
|
2197
2184
|
class: "tvp-search-box__dropdown-end"
|
|
2198
|
-
},
|
|
2185
|
+
}, Do = {
|
|
2199
2186
|
key: 4,
|
|
2200
2187
|
class: "tvp-search-box__number"
|
|
2201
|
-
},
|
|
2188
|
+
}, Eo = { class: "tvp-search-box__dropdown-start" }, $o = { class: "tvp-search-box__dropdown-end" }, Lo = {
|
|
2202
2189
|
key: 5,
|
|
2203
2190
|
class: "tvp-search-box__date-wrap"
|
|
2204
|
-
},
|
|
2191
|
+
}, _o = { class: "tvp-search-box__dropdown-title" }, Ro = { class: "tvp-search-box__dropdown-start" }, No = { class: "tvp-search-box__dropdown-end" }, Po = {
|
|
2205
2192
|
key: 6,
|
|
2206
2193
|
class: "tvp-search-box__date-wrap"
|
|
2207
|
-
},
|
|
2194
|
+
}, Oo = { class: "tvp-search-box__dropdown-title" }, xo = { class: "tvp-search-box__dropdown-start" }, Fo = { class: "tvp-search-box__dropdown-end" }, Bo = { class: "tvp-search-box__bottom-btn" }, Ho = {
|
|
2208
2195
|
key: 1,
|
|
2209
2196
|
class: "tvp-search-box__panel-box"
|
|
2210
2197
|
};
|
|
2211
|
-
function
|
|
2212
|
-
const f = x("tiny-icon-search"), b = x("tiny-tag"), m = x("tiny-icon-close"),
|
|
2198
|
+
function Ao(e, t, n, o, d, c) {
|
|
2199
|
+
const f = x("tiny-icon-search"), b = x("tiny-tag"), m = x("tiny-icon-close"), s = x("tiny-icon-help-query"), r = x("tiny-tooltip"), u = x("tiny-input"), i = x("TinySearchBoxFirstLevelPanel"), p = x("TinySearchBoxSecondLevelPanel"), v = x("tiny-popover"), l = x("tiny-option"), h = x("tiny-select"), g = x("tiny-form-item"), T = x("tiny-date-picker"), $ = x("tiny-button"), y = x("tiny-form");
|
|
2213
2200
|
return I(), M("div", {
|
|
2214
2201
|
class: ve([
|
|
2215
2202
|
"tvp-search-box",
|
|
@@ -2231,11 +2218,11 @@ function An(e, t, o, n, d, c) {
|
|
|
2231
2218
|
onClick: Z((k) => e.editTag(a, V, k), ["stop"])
|
|
2232
2219
|
}, {
|
|
2233
2220
|
default: E(() => [
|
|
2234
|
-
S("span",
|
|
2221
|
+
S("span", yo, w(a.label) + " " + w(a.operator || ":") + " " + w(a.value), 1)
|
|
2235
2222
|
]),
|
|
2236
2223
|
_: 2
|
|
2237
2224
|
}, 1032, ["class", "title", "onClose", "onClick"]))), 128)),
|
|
2238
|
-
e.modelValue.length ? (I(), M("span",
|
|
2225
|
+
e.modelValue.length ? (I(), M("span", Io)) : B("", !0),
|
|
2239
2226
|
D(y, {
|
|
2240
2227
|
ref: "formRef",
|
|
2241
2228
|
model: e.state,
|
|
@@ -2247,8 +2234,8 @@ function An(e, t, o, n, d, c) {
|
|
|
2247
2234
|
class: "tvp-search-box__form"
|
|
2248
2235
|
}, {
|
|
2249
2236
|
default: E(() => [
|
|
2250
|
-
S("div",
|
|
2251
|
-
S("section",
|
|
2237
|
+
S("div", Vo, [
|
|
2238
|
+
S("section", ko, [
|
|
2252
2239
|
Y(S("span", null, w(e.state.propItem.label) + " " + w(`${e.state.operatorValue ? e.state.operatorValue : ""} `), 513), [
|
|
2253
2240
|
[J, e.state.propItem.label]
|
|
2254
2241
|
]),
|
|
@@ -2291,7 +2278,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2291
2278
|
}, null, 8, ["onClick"]), [
|
|
2292
2279
|
[J, e.isShowClose]
|
|
2293
2280
|
]),
|
|
2294
|
-
Y(S("span",
|
|
2281
|
+
Y(S("span", wo, null, 512), [
|
|
2295
2282
|
[
|
|
2296
2283
|
J,
|
|
2297
2284
|
e.isShowClose && (e.showHelp || ((V = (a = e.state.instance) == null ? void 0 : a.$slots) == null ? void 0 : V["suffix-icon"]) || ((L = (k = e.state.instance) == null ? void 0 : k.slots) == null ? void 0 : L["suffix-icon"]))
|
|
@@ -2303,14 +2290,14 @@ function An(e, t, o, n, d, c) {
|
|
|
2303
2290
|
}, [
|
|
2304
2291
|
fe(e.$slots, "suffix-icon")
|
|
2305
2292
|
], 2)) : B("", !0),
|
|
2306
|
-
e.showHelp ? (I(), F(
|
|
2293
|
+
e.showHelp ? (I(), F(r, {
|
|
2307
2294
|
key: 1,
|
|
2308
2295
|
effect: "light",
|
|
2309
2296
|
content: e.t("tvp.tvpSearchbox.help"),
|
|
2310
2297
|
placement: "top"
|
|
2311
2298
|
}, {
|
|
2312
2299
|
default: E(() => [
|
|
2313
|
-
D(
|
|
2300
|
+
D(s, {
|
|
2314
2301
|
class: "tvp-search-box__input-help",
|
|
2315
2302
|
onClick: Z(e.helpClick, ["stop"])
|
|
2316
2303
|
}, null, 8, ["onClick"])
|
|
@@ -2331,7 +2318,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2331
2318
|
return [
|
|
2332
2319
|
S("div", {
|
|
2333
2320
|
class: "tvp-search-box__dropdown",
|
|
2334
|
-
style:
|
|
2321
|
+
style: ne({ "max-height": e.panelMaxHeight }),
|
|
2335
2322
|
onMouseup: Z(() => {
|
|
2336
2323
|
}, ["stop"])
|
|
2337
2324
|
}, [
|
|
@@ -2342,7 +2329,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2342
2329
|
}, {
|
|
2343
2330
|
onClick: t[1] || (t[1] = Z(() => {
|
|
2344
2331
|
}, ["stop"]))
|
|
2345
|
-
})) : (I(), F(
|
|
2332
|
+
})) : (I(), F(i, {
|
|
2346
2333
|
key: 1,
|
|
2347
2334
|
state: e.state,
|
|
2348
2335
|
handleEvents: e.handleEvents
|
|
@@ -2401,8 +2388,8 @@ function An(e, t, o, n, d, c) {
|
|
|
2401
2388
|
}, {
|
|
2402
2389
|
default: E(() => [
|
|
2403
2390
|
e.state.prevItem.type !== "custom" ? (I(), M(H, { key: 0 }, [
|
|
2404
|
-
S("div",
|
|
2405
|
-
S("div",
|
|
2391
|
+
S("div", To, [
|
|
2392
|
+
S("div", So, w(e.t("tvp.tvpSearchbox.attributeType")), 1),
|
|
2406
2393
|
D(g, { class: "tvp-search-box__number-item" }, {
|
|
2407
2394
|
default: E(() => [
|
|
2408
2395
|
D(h, {
|
|
@@ -2432,7 +2419,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2432
2419
|
]),
|
|
2433
2420
|
_: 1
|
|
2434
2421
|
}),
|
|
2435
|
-
e.state.prevItem.operators ? (I(), M("div",
|
|
2422
|
+
e.state.prevItem.operators ? (I(), M("div", Mo, w(e.t("tvp.tvpSearchbox.operator")), 1)) : B("", !0),
|
|
2436
2423
|
e.state.prevItem.operators ? (I(), F(g, {
|
|
2437
2424
|
key: 1,
|
|
2438
2425
|
class: "tvp-search-box__number-item"
|
|
@@ -2454,7 +2441,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2454
2441
|
]),
|
|
2455
2442
|
_: 1
|
|
2456
2443
|
})) : B("", !0),
|
|
2457
|
-
e.state.prevItem.type !== "numRange" ? (I(), M("div",
|
|
2444
|
+
e.state.prevItem.type !== "numRange" ? (I(), M("div", Co, w(e.t("tvp.tvpSearchbox.tagValue")), 1)) : B("", !0),
|
|
2458
2445
|
["numRange", "dateRange", "datetimeRange", "custom"].includes(e.state.prevItem.type) ? B("", !0) : (I(), F(g, {
|
|
2459
2446
|
key: 3,
|
|
2460
2447
|
prop: "inputEditValue",
|
|
@@ -2492,8 +2479,8 @@ function An(e, t, o, n, d, c) {
|
|
|
2492
2479
|
}),
|
|
2493
2480
|
_: 1
|
|
2494
2481
|
})),
|
|
2495
|
-
e.state.prevItem.type === "numRange" ? (I(), M("div",
|
|
2496
|
-
S("div",
|
|
2482
|
+
e.state.prevItem.type === "numRange" ? (I(), M("div", Do, [
|
|
2483
|
+
S("div", Eo, w(e.t("tvp.tvpSearchbox.minValueText")) + w(e.state.prevItem.unit ? `(${e.state.prevItem.unit})` : ""), 1),
|
|
2497
2484
|
D(g, {
|
|
2498
2485
|
prop: e.state.curMinNumVar,
|
|
2499
2486
|
class: "tvp-search-box__number-item",
|
|
@@ -2509,7 +2496,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2509
2496
|
]),
|
|
2510
2497
|
_: 1
|
|
2511
2498
|
}, 8, ["prop", "show-message"]),
|
|
2512
|
-
S("div", $
|
|
2499
|
+
S("div", $o, w(e.t("tvp.tvpSearchbox.maxValueText")) + w(e.state.prevItem.unit ? `(${e.state.prevItem.unit})` : ""), 1),
|
|
2513
2500
|
D(g, {
|
|
2514
2501
|
prop: e.state.curMaxNumVar,
|
|
2515
2502
|
class: "tvp-search-box__number-item"
|
|
@@ -2525,11 +2512,11 @@ function An(e, t, o, n, d, c) {
|
|
|
2525
2512
|
_: 1
|
|
2526
2513
|
}, 8, ["prop"])
|
|
2527
2514
|
])) : B("", !0),
|
|
2528
|
-
e.state.prevItem.type === "dateRange" ? (I(), M("div",
|
|
2529
|
-
S("div",
|
|
2515
|
+
e.state.prevItem.type === "dateRange" ? (I(), M("div", Lo, [
|
|
2516
|
+
S("div", _o, w(e.state.prevItem.maxTimeLength > 0 ? e.t("tvp.tvpSearchbox.timeLengthTitle", {
|
|
2530
2517
|
value: (e.state.prevItem.maxTimeLength / 864e5).toFixed(1)
|
|
2531
2518
|
}) : e.t("tvp.tvpSearchbox.rangeDateTitle")), 1),
|
|
2532
|
-
S("div",
|
|
2519
|
+
S("div", Ro, w(e.t("tvp.tvpSearchbox.rangeBeginLabel")), 1),
|
|
2533
2520
|
D(g, {
|
|
2534
2521
|
prop: "startDate",
|
|
2535
2522
|
"show-message": !!e.state.prevItem.maxTimeLength,
|
|
@@ -2547,7 +2534,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2547
2534
|
]),
|
|
2548
2535
|
_: 1
|
|
2549
2536
|
}, 8, ["show-message"]),
|
|
2550
|
-
S("div",
|
|
2537
|
+
S("div", No, w(e.t("tvp.tvpSearchbox.rangeEndLabel")), 1),
|
|
2551
2538
|
D(g, {
|
|
2552
2539
|
prop: "endDate",
|
|
2553
2540
|
class: "tvp-search-box__date-item"
|
|
@@ -2565,11 +2552,11 @@ function An(e, t, o, n, d, c) {
|
|
|
2565
2552
|
_: 1
|
|
2566
2553
|
})
|
|
2567
2554
|
])) : B("", !0),
|
|
2568
|
-
e.state.prevItem.type === "datetimeRange" ? (I(), M("div",
|
|
2569
|
-
S("div",
|
|
2555
|
+
e.state.prevItem.type === "datetimeRange" ? (I(), M("div", Po, [
|
|
2556
|
+
S("div", Oo, w(e.state.prevItem.maxTimeLength > 0 ? e.t("tvp.tvpSearchbox.timeLengthTitle", {
|
|
2570
2557
|
value: (e.state.prevItem.maxTimeLength / 864e5).toFixed(1)
|
|
2571
2558
|
}) : e.t("tvp.tvpSearchbox.rangeDateTitle")), 1),
|
|
2572
|
-
S("div",
|
|
2559
|
+
S("div", xo, w(e.t("tvp.tvpSearchbox.rangeBeginLabel")), 1),
|
|
2573
2560
|
D(g, {
|
|
2574
2561
|
prop: "startDateTime",
|
|
2575
2562
|
"show-message": !!e.state.prevItem.maxTimeLength,
|
|
@@ -2589,7 +2576,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2589
2576
|
]),
|
|
2590
2577
|
_: 1
|
|
2591
2578
|
}, 8, ["show-message"]),
|
|
2592
|
-
S("div",
|
|
2579
|
+
S("div", Fo, w(e.t("tvp.tvpSearchbox.rangeEndLabel")), 1),
|
|
2593
2580
|
D(g, {
|
|
2594
2581
|
prop: "endDateTime",
|
|
2595
2582
|
class: "tvp-search-box__date-item"
|
|
@@ -2610,7 +2597,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2610
2597
|
})
|
|
2611
2598
|
])) : B("", !0)
|
|
2612
2599
|
]),
|
|
2613
|
-
S("div",
|
|
2600
|
+
S("div", Bo, [
|
|
2614
2601
|
D($, {
|
|
2615
2602
|
size: "mini",
|
|
2616
2603
|
onClick: t[17] || (t[17] = (a) => e.confirmEditTag(!1))
|
|
@@ -2631,7 +2618,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2631
2618
|
_: 1
|
|
2632
2619
|
}, 8, ["disabled"])
|
|
2633
2620
|
])
|
|
2634
|
-
], 64)) : e.state.popoverVisible ? (I(), M("div",
|
|
2621
|
+
], 64)) : e.state.popoverVisible ? (I(), M("div", Ho, [
|
|
2635
2622
|
fe(e.$slots, `${e.state.prevItem.slotName}-edit`, Ie({
|
|
2636
2623
|
showDropdown: () => e.showPopover(e.state),
|
|
2637
2624
|
onConfirm: e.handleEditConfirm
|
|
@@ -2648,7 +2635,7 @@ function An(e, t, o, n, d, c) {
|
|
|
2648
2635
|
}, 8, ["model", "rules", "validate-type", "size"])
|
|
2649
2636
|
], 2);
|
|
2650
2637
|
}
|
|
2651
|
-
const
|
|
2638
|
+
const zo = /* @__PURE__ */ Fe(go, [["render", Ao]]), Uo = {
|
|
2652
2639
|
...we,
|
|
2653
2640
|
tiny_mode: {
|
|
2654
2641
|
type: String,
|
|
@@ -2740,23 +2727,23 @@ const zn = /* @__PURE__ */ Fe(gn, [["render", An]]), Un = {
|
|
|
2740
2727
|
}
|
|
2741
2728
|
}, be = ke({
|
|
2742
2729
|
name: Ne + "SearchBox",
|
|
2743
|
-
props:
|
|
2744
|
-
...
|
|
2745
|
-
}),
|
|
2730
|
+
props: Uo,
|
|
2731
|
+
...zo
|
|
2732
|
+
}), jo = "3.29.1";
|
|
2746
2733
|
be.install = function(e) {
|
|
2747
2734
|
const t = e;
|
|
2748
2735
|
t && t.config && t.config.globalProperties && _e(t), t && t.mixin && !t.__TINY_SEARCH_BOX_I18N_MIXIN__ && (t.__TINY_SEARCH_BOX_I18N_MIXIN__ = !0, t.mixin({
|
|
2749
2736
|
beforeCreate() {
|
|
2750
|
-
const
|
|
2751
|
-
|
|
2737
|
+
const n = this;
|
|
2738
|
+
n && (n.$i18n || n.$t || n.$root && (n.$root.$i18n || n.$root.$t)) && _e(n.$root || n);
|
|
2752
2739
|
}
|
|
2753
2740
|
})), t.component(be.name, be);
|
|
2754
2741
|
};
|
|
2755
|
-
be.version =
|
|
2742
|
+
be.version = jo;
|
|
2756
2743
|
typeof window < "u" && window.Vue && be.install(window.Vue);
|
|
2757
2744
|
export {
|
|
2758
|
-
|
|
2759
|
-
|
|
2745
|
+
Nn as TinySearchBoxFirstLevelPanel,
|
|
2746
|
+
bo as TinySearchBoxSecondLevelPanel,
|
|
2760
2747
|
be as default,
|
|
2761
2748
|
et as enUS,
|
|
2762
2749
|
_e as setGlobalApp,
|