anytrek-front-public-component 1.9.6 → 1.9.8
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/anytrek-front-public-component.mjs +61 -58
- package/anytrek-front-public-component.umd.js +10 -10
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -3702,7 +3702,7 @@ const OT = () => {
|
|
|
3702
3702
|
}), Fs = (e) => new CustomEvent(AT, {
|
|
3703
3703
|
...IT,
|
|
3704
3704
|
detail: e
|
|
3705
|
-
}),
|
|
3705
|
+
}), tn = {
|
|
3706
3706
|
tab: "Tab",
|
|
3707
3707
|
enter: "Enter",
|
|
3708
3708
|
space: "Space",
|
|
@@ -3720,7 +3720,7 @@ const OT = () => {
|
|
|
3720
3720
|
};
|
|
3721
3721
|
let Nr = [];
|
|
3722
3722
|
const Hv = (e) => {
|
|
3723
|
-
e.code ===
|
|
3723
|
+
e.code === tn.esc && Nr.forEach((t) => t(e));
|
|
3724
3724
|
}, NT = (e) => {
|
|
3725
3725
|
Vt(() => {
|
|
3726
3726
|
Nr.length === 0 && document.addEventListener("keydown", Hv), $t && Nr.push(e);
|
|
@@ -3765,7 +3765,7 @@ const Hv = (e) => {
|
|
|
3765
3765
|
}, i = (T) => {
|
|
3766
3766
|
if (!e.loop && !e.trapped || r.paused)
|
|
3767
3767
|
return;
|
|
3768
|
-
const { code: p, altKey: h, ctrlKey: b, metaKey: I, currentTarget: y, shiftKey: k } = T, { loop: S } = e, M = p ===
|
|
3768
|
+
const { code: p, altKey: h, ctrlKey: b, metaKey: I, currentTarget: y, shiftKey: k } = T, { loop: S } = e, M = p === tn.tab && !h && !b && !I, A = document.activeElement;
|
|
3769
3769
|
if (M && A) {
|
|
3770
3770
|
const z = y, [L, O] = MT(z);
|
|
3771
3771
|
if (L && O) {
|
|
@@ -4824,7 +4824,7 @@ const tw = wn(pT), Df = Symbol("elTooltip"), Pf = wt({
|
|
|
4824
4824
|
},
|
|
4825
4825
|
triggerKeys: {
|
|
4826
4826
|
type: je(Array),
|
|
4827
|
-
default: () => [
|
|
4827
|
+
default: () => [tn.enter, tn.numpadEnter, tn.space]
|
|
4828
4828
|
},
|
|
4829
4829
|
focusOnTarget: Boolean
|
|
4830
4830
|
}), nw = Vu({
|
|
@@ -8447,10 +8447,10 @@ const $s = wt({
|
|
|
8447
8447
|
triggerKeys: {
|
|
8448
8448
|
type: je(Array),
|
|
8449
8449
|
default: () => [
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8450
|
+
tn.enter,
|
|
8451
|
+
tn.numpadEnter,
|
|
8452
|
+
tn.space,
|
|
8453
|
+
tn.down
|
|
8454
8454
|
]
|
|
8455
8455
|
},
|
|
8456
8456
|
virtualTriggering: Il.virtualTriggering,
|
|
@@ -8536,10 +8536,10 @@ const $s = wt({
|
|
|
8536
8536
|
}), IC = wt({
|
|
8537
8537
|
onKeydown: { type: je(Function) }
|
|
8538
8538
|
}), EC = [
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
], Uh = [
|
|
8539
|
+
tn.down,
|
|
8540
|
+
tn.pageDown,
|
|
8541
|
+
tn.home
|
|
8542
|
+
], Uh = [tn.up, tn.pageUp, tn.end], MC = [...EC, ...Uh], {
|
|
8543
8543
|
ElCollection: LC,
|
|
8544
8544
|
ElCollectionItem: OC,
|
|
8545
8545
|
COLLECTION_INJECTION_KEY: DC,
|
|
@@ -8802,7 +8802,7 @@ const RC = be({
|
|
|
8802
8802
|
t("keydown", f);
|
|
8803
8803
|
}, (f) => {
|
|
8804
8804
|
const { code: T, shiftKey: p, target: h, currentTarget: b } = f;
|
|
8805
|
-
if (T ===
|
|
8805
|
+
if (T === tn.tab && p) {
|
|
8806
8806
|
l();
|
|
8807
8807
|
return;
|
|
8808
8808
|
}
|
|
@@ -8873,7 +8873,7 @@ const zC = be({
|
|
|
8873
8873
|
handleKeydown: c,
|
|
8874
8874
|
handleMousedown: d
|
|
8875
8875
|
} = it(Zh, void 0), g = Vf(o, l, r), m = N(() => a.value === "menu" ? "menuitem" : a.value === "navigation" ? "link" : "button"), f = zn((T) => {
|
|
8876
|
-
if ([
|
|
8876
|
+
if ([tn.enter, tn.numpadEnter, tn.space].includes(T.code))
|
|
8877
8877
|
return T.preventDefault(), T.stopImmediatePropagation(), t("clickimpl", T), !0;
|
|
8878
8878
|
}, c);
|
|
8879
8879
|
return {
|
|
@@ -9016,7 +9016,7 @@ const _C = be({
|
|
|
9016
9016
|
(A = e.onKeydown) == null || A.call(e, M);
|
|
9017
9017
|
}, (M) => {
|
|
9018
9018
|
const { currentTarget: A, code: z, target: L } = M;
|
|
9019
|
-
if (A.contains(L),
|
|
9019
|
+
if (A.contains(L), tn.tab === z && M.stopImmediatePropagation(), M.preventDefault(), L !== u(r) || !MC.includes(z))
|
|
9020
9020
|
return;
|
|
9021
9021
|
const D = d().filter((P) => !P.disabled).map((P) => P.ref);
|
|
9022
9022
|
Uh.includes(z) && D.reverse(), Ff(D);
|
|
@@ -10276,22 +10276,22 @@ const Gu = wn(eS, {
|
|
|
10276
10276
|
function _() {
|
|
10277
10277
|
const X = Ic((Oe) => {
|
|
10278
10278
|
switch (Oe.code) {
|
|
10279
|
-
case
|
|
10279
|
+
case tn.esc:
|
|
10280
10280
|
o.closeOnPressEscape && J();
|
|
10281
10281
|
break;
|
|
10282
|
-
case
|
|
10282
|
+
case tn.space:
|
|
10283
10283
|
le();
|
|
10284
10284
|
break;
|
|
10285
|
-
case
|
|
10285
|
+
case tn.left:
|
|
10286
10286
|
ee();
|
|
10287
10287
|
break;
|
|
10288
|
-
case
|
|
10288
|
+
case tn.up:
|
|
10289
10289
|
me("zoomIn");
|
|
10290
10290
|
break;
|
|
10291
|
-
case
|
|
10291
|
+
case tn.right:
|
|
10292
10292
|
Ee();
|
|
10293
10293
|
break;
|
|
10294
|
-
case
|
|
10294
|
+
case tn.down:
|
|
10295
10295
|
me("zoomOut");
|
|
10296
10296
|
break;
|
|
10297
10297
|
}
|
|
@@ -10919,10 +10919,10 @@ const e2 = wn(GS), KS = wt({
|
|
|
10919
10919
|
return;
|
|
10920
10920
|
}
|
|
10921
10921
|
const Y = {
|
|
10922
|
-
[
|
|
10922
|
+
[tn.up]: () => {
|
|
10923
10923
|
F.preventDefault(), k();
|
|
10924
10924
|
},
|
|
10925
|
-
[
|
|
10925
|
+
[tn.down]: () => {
|
|
10926
10926
|
F.preventDefault(), S();
|
|
10927
10927
|
}
|
|
10928
10928
|
};
|
|
@@ -11445,7 +11445,7 @@ const cA = (e, t) => {
|
|
|
11445
11445
|
const ht = r.cachedOptions.get(Xe);
|
|
11446
11446
|
return ht && !ht.disabled && !ht.states.groupDisabled;
|
|
11447
11447
|
}), ze = (Ae) => {
|
|
11448
|
-
if (e.multiple && Ae.code !==
|
|
11448
|
+
if (e.multiple && Ae.code !== tn.delete && Ae.target.value.length <= 0) {
|
|
11449
11449
|
const Xe = _a(e.modelValue).slice(), ht = At(Xe);
|
|
11450
11450
|
if (ht < 0)
|
|
11451
11451
|
return;
|
|
@@ -11458,14 +11458,14 @@ const cA = (e, t) => {
|
|
|
11458
11458
|
const qe = _a(e.modelValue).slice();
|
|
11459
11459
|
qe.splice(ht, 1), t(mn, qe), ot(qe), t("remove-tag", Xe.value);
|
|
11460
11460
|
}
|
|
11461
|
-
Ae.stopPropagation(),
|
|
11461
|
+
Ae.stopPropagation(), nn();
|
|
11462
11462
|
}, He = (Ae) => {
|
|
11463
11463
|
Ae.stopPropagation();
|
|
11464
11464
|
const Xe = e.multiple ? [] : A.value;
|
|
11465
11465
|
if (e.multiple)
|
|
11466
11466
|
for (const ht of r.selected)
|
|
11467
11467
|
ht.isDisabled && Xe.push(ht.value);
|
|
11468
|
-
t(mn, Xe), ot(Xe), r.hoveringIndex = -1, I.value = !1, t("clear"),
|
|
11468
|
+
t(mn, Xe), ot(Xe), r.hoveringIndex = -1, I.value = !1, t("clear"), nn();
|
|
11469
11469
|
}, Be = (Ae) => {
|
|
11470
11470
|
var Xe;
|
|
11471
11471
|
if (e.multiple) {
|
|
@@ -11473,7 +11473,7 @@ const cA = (e, t) => {
|
|
|
11473
11473
|
qe > -1 ? ht.splice(qe, 1) : (e.multipleLimit <= 0 || ht.length < e.multipleLimit) && ht.push(Ae.value), t(mn, ht), ot(ht), Ae.created && _e(""), e.filterable && !e.reserveKeyword && (r.inputValue = "");
|
|
11474
11474
|
} else
|
|
11475
11475
|
!co(e.modelValue, Ae.value) && t(mn, Ae.value), ot(Ae.value), I.value = !1;
|
|
11476
|
-
|
|
11476
|
+
nn(), !I.value && ct(() => {
|
|
11477
11477
|
_t(Ae);
|
|
11478
11478
|
});
|
|
11479
11479
|
}, Ot = (Ae, Xe) => xa(Xe) ? -1 : On(Xe.value) ? Ae.findIndex((ht) => co(Pa(ht, e.valueKey), Ye(Xe))) : Ae.indexOf(Xe.value), _t = (Ae) => {
|
|
@@ -11501,7 +11501,7 @@ const cA = (e, t) => {
|
|
|
11501
11501
|
var Ae;
|
|
11502
11502
|
(Ae = b.value) == null || Ae.update(), _t(r.selected);
|
|
11503
11503
|
});
|
|
11504
|
-
},
|
|
11504
|
+
}, nn = () => {
|
|
11505
11505
|
var Ae;
|
|
11506
11506
|
(Ae = g.value) == null || Ae.focus();
|
|
11507
11507
|
}, Vn = () => {
|
|
@@ -11602,7 +11602,7 @@ const cA = (e, t) => {
|
|
|
11602
11602
|
onOptionCreate: Ft,
|
|
11603
11603
|
onOptionDestroy: An,
|
|
11604
11604
|
handleMenuEnter: $n,
|
|
11605
|
-
focus:
|
|
11605
|
+
focus: nn,
|
|
11606
11606
|
blur: Vn,
|
|
11607
11607
|
handleClearClick: Cn,
|
|
11608
11608
|
handleClickOutside: Dn,
|
|
@@ -13917,7 +13917,7 @@ const d2 = [
|
|
|
13917
13917
|
});
|
|
13918
13918
|
}
|
|
13919
13919
|
function D({ code: P }) {
|
|
13920
|
-
P ===
|
|
13920
|
+
P === tn.esc && O();
|
|
13921
13921
|
}
|
|
13922
13922
|
return Vt(() => {
|
|
13923
13923
|
z(), c(), g.value = !0;
|
|
@@ -14095,7 +14095,7 @@ const LI = Z8(fr, "$message"), gd = "_trap-focus-children", nr = [], Tm = (e) =>
|
|
|
14095
14095
|
if (nr.length === 0)
|
|
14096
14096
|
return;
|
|
14097
14097
|
const t = nr[nr.length - 1][gd];
|
|
14098
|
-
if (t.length > 0 && e.code ===
|
|
14098
|
+
if (t.length > 0 && e.code === tn.tab) {
|
|
14099
14099
|
if (t.length === 1) {
|
|
14100
14100
|
e.preventDefault(), document.activeElement !== t[0] && t[0].focus();
|
|
14101
14101
|
return;
|
|
@@ -27614,7 +27614,7 @@ function OP(e) {
|
|
|
27614
27614
|
} else
|
|
27615
27615
|
k.timeDiff = Ao(P), k.idleDiff = 0;
|
|
27616
27616
|
}
|
|
27617
|
-
let D =
|
|
27617
|
+
let D = 128;
|
|
27618
27618
|
k.modelId && k.modelId === 54 && k.thumb && (D = 144, (((O = k.content) == null ? void 0 : O.hwVer) >= 11200 || k.hwVer >= 11200) && (D -= 16)), h.push({
|
|
27619
27619
|
...k,
|
|
27620
27620
|
name: (k.userPackageId + "").slice(-5),
|
|
@@ -30183,7 +30183,7 @@ const ns = /* @__PURE__ */ Wt(Ex, [["render", Mx]]), _c = /* @__PURE__ */ be({
|
|
|
30183
30183
|
});
|
|
30184
30184
|
});
|
|
30185
30185
|
}), ke;
|
|
30186
|
-
}), Un = N(() => _t.value.filter((oe) => (oe.itemId + "").includes("tag") && !(oe.itemId + "").includes("vehicle") && !(oe.itemId + "").includes("device")).length), $n = N(() => An.value.filter((oe) => (oe.itemId + "").includes("landmarkList") && !(oe.itemId + "").includes("vehicle") && !(oe.itemId + "").includes("device")).length),
|
|
30186
|
+
}), Un = N(() => _t.value.filter((oe) => (oe.itemId + "").includes("tag") && !(oe.itemId + "").includes("vehicle") && !(oe.itemId + "").includes("device")).length), $n = N(() => An.value.filter((oe) => (oe.itemId + "").includes("landmarkList") && !(oe.itemId + "").includes("vehicle") && !(oe.itemId + "").includes("device")).length), nn = N(() => Be.value.filter((oe) => oe.isNotHiddren).length), Vn = N(() => p.value === 0 ? Ot.value : p.value === 1 ? _t.value : An.value), Cn = C(), Dn = C(), Te = N(() => p.value === 2 ? Dn.value : p.value === 1 ? Cn.value : 0);
|
|
30187
30187
|
function we(oe, ke = !0) {
|
|
30188
30188
|
if (!oe.childrenLength)
|
|
30189
30189
|
return;
|
|
@@ -30550,7 +30550,7 @@ const ns = /* @__PURE__ */ Wt(Ex, [["render", Mx]]), _c = /* @__PURE__ */ be({
|
|
|
30550
30550
|
activeOne: p.value,
|
|
30551
30551
|
"onUpdate:activeOne": ke[4] || (ke[4] = ($e) => p.value = $e),
|
|
30552
30552
|
onChange: b,
|
|
30553
|
-
allLength:
|
|
30553
|
+
allLength: nn.value,
|
|
30554
30554
|
tagLength: Un.value,
|
|
30555
30555
|
landmarkLength: $n.value,
|
|
30556
30556
|
active: me.value
|
|
@@ -31239,7 +31239,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
31239
31239
|
let B = L.value.find(
|
|
31240
31240
|
(de) => de.id === Gt.value.deviceId
|
|
31241
31241
|
);
|
|
31242
|
-
B && (J.value = B.deviceId,
|
|
31242
|
+
B && (J.value = B.deviceId, nn.value = B.modelId, Dn.value = J.value);
|
|
31243
31243
|
}
|
|
31244
31244
|
}, J = C(), _ = (W, B = "deviceId") => l.allVehicleToDevice.find((de) => de[B] === W), V = C(), R = C(!1), U = () => {
|
|
31245
31245
|
if (He.value) {
|
|
@@ -31469,9 +31469,9 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
31469
31469
|
let B = !0;
|
|
31470
31470
|
return Ft.value && Ft.value.trim() && ((W.deviceId + "").toLocaleLowerCase().includes(Ft.value.trim().toLocaleLowerCase()) || (B = !1)), B;
|
|
31471
31471
|
})), Un = () => {
|
|
31472
|
-
c0(), y.value.deviceId = "", J.value = "",
|
|
31473
|
-
}, $n = C(),
|
|
31474
|
-
y.value.deviceId !== W.dId && (c0(), y.value.deviceId = W.dId, J.value = W.deviceId,
|
|
31472
|
+
c0(), y.value.deviceId = "", J.value = "", nn.value = null, Et.value = "";
|
|
31473
|
+
}, $n = C(), nn = C(null), Vn = (W) => {
|
|
31474
|
+
y.value.deviceId !== W.dId && (c0(), y.value.deviceId = W.dId, J.value = W.deviceId, nn.value = W.modelId, Dn.value === J.value ? Et.value = Cn.value : Et.value = se(/* @__PURE__ */ new Date()).utc().format("YYYY-MM-DDTHH:mm:ss[Z]"), z.value = W.deviceStatus), $n.value.handleClose();
|
|
31475
31475
|
};
|
|
31476
31476
|
let Cn = C(), Dn = C();
|
|
31477
31477
|
const Te = N(() => Ve.value.filter((W) => W.isShow).every((W) => W.checkValue)), we = N(() => {
|
|
@@ -32025,7 +32025,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
32025
32025
|
ge(
|
|
32026
32026
|
() => T.value,
|
|
32027
32027
|
(W) => {
|
|
32028
|
-
Cr.value = !1, W || (He.value = !1, Se.value = !1, X.value = !1, cl.value = !1, J.value = "",
|
|
32028
|
+
Cr.value = !1, W || (He.value = !1, Se.value = !1, X.value = !1, cl.value = !1, J.value = "", nn.value = null, Dn.value = "", Et.value = "", y.value = {
|
|
32029
32029
|
id: "",
|
|
32030
32030
|
name: "",
|
|
32031
32031
|
deviceId: "",
|
|
@@ -32081,7 +32081,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
32081
32081
|
}), y.value.tagContent = W;
|
|
32082
32082
|
}
|
|
32083
32083
|
);
|
|
32084
|
-
const u0 = N(() => (
|
|
32084
|
+
const u0 = N(() => (nn.value == 45 || nn.value == 54) && l.needConDetSensor), c0 = () => {
|
|
32085
32085
|
Kt.value = "", Fn.value = [
|
|
32086
32086
|
["", "", "", ""],
|
|
32087
32087
|
["", "", "", ""],
|
|
@@ -32096,7 +32096,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
32096
32096
|
},
|
|
32097
32097
|
{ immediate: !0 }
|
|
32098
32098
|
);
|
|
32099
|
-
const d0 = N(() => l.needConDetSensor &&
|
|
32099
|
+
const d0 = N(() => l.needConDetSensor && nn.value == 45 && y.value.assetType === 1002);
|
|
32100
32100
|
ge(
|
|
32101
32101
|
() => d0.value,
|
|
32102
32102
|
(W) => {
|
|
@@ -32505,7 +32505,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
32505
32505
|
let at = L.value.find(
|
|
32506
32506
|
(fn) => fn.id === l.vehicleData.deviceId
|
|
32507
32507
|
);
|
|
32508
|
-
at && (J.value = at.deviceId,
|
|
32508
|
+
at && (J.value = at.deviceId, nn.value = at.modelId, Dn.value = J.value, Et.value = se(/* @__PURE__ */ new Date()).utc().format("YYYY-MM-DDTHH:mm:ss[Z]"));
|
|
32509
32509
|
}
|
|
32510
32510
|
l.needShowList && Be();
|
|
32511
32511
|
};
|
|
@@ -33628,7 +33628,10 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
33628
33628
|
onClick: (ft) => gy(ue)
|
|
33629
33629
|
}, null, 10, EB)
|
|
33630
33630
|
], 512)), [
|
|
33631
|
-
[
|
|
33631
|
+
[
|
|
33632
|
+
qt,
|
|
33633
|
+
ue.name !== "LightHub" && ue.name !== "ContainerDetection" || nn.value != 54
|
|
33634
|
+
]
|
|
33632
33635
|
])), 128))
|
|
33633
33636
|
])
|
|
33634
33637
|
]),
|
|
@@ -34844,7 +34847,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
34844
34847
|
], 64);
|
|
34845
34848
|
};
|
|
34846
34849
|
}
|
|
34847
|
-
}), uH = /* @__PURE__ */ Wt(sH, [["__scopeId", "data-v-
|
|
34850
|
+
}), uH = /* @__PURE__ */ Wt(sH, [["__scopeId", "data-v-da6f63ab"]]), cH = { class: "sub-title" }, dH = { class: "content-wrapper" }, fH = { class: "title" }, vH = { class: "many-tag" }, mH = ["onMouseenter", "onClick"], pH = { class: "name" }, hH = ["onClick"], gH = { class: "many-tag" }, yH = ["onMouseenter", "onClick"], bH = { class: "name" }, TH = ["onClick"], kH = ["onMouseenter", "onClick"], wH = { class: "name" }, CH = ["onClick"], SH = {
|
|
34848
34851
|
key: 1,
|
|
34849
34852
|
class: "less-tag"
|
|
34850
34853
|
}, AH = ["onMouseenter", "onClick"], IH = { class: "name" }, EH = ["onClick"], MH = { class: "list-item-left" }, LH = { class: "name" }, OH = { class: "num" }, DH = { class: "list-item-left" }, PH = { class: "name" }, xH = { class: "num" }, NH = { class: "list-item-left" }, VH = { class: "name" }, BH = { class: "num" }, RH = { class: "title" }, FH = { class: "title-left" }, HH = { class: "select-num" }, zH = { class: "title-right" }, YH = { style: { "margin-right": "8px" } }, ZH = {
|
|
@@ -35397,10 +35400,10 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
35397
35400
|
description: Te.description
|
|
35398
35401
|
};
|
|
35399
35402
|
}
|
|
35400
|
-
|
|
35403
|
+
nn.value = !0;
|
|
35401
35404
|
} else F.value === "device" || F.value === "landmark" && fe(Te);
|
|
35402
35405
|
}, _e = (Te) => l.allTags.filter((we) => !!(we.vehicle && we.vehicle.findIndex((Le) => Le === Te) !== -1)), st = (Te, we = "deviceId") => l.allVehicleToDevice.find((Le) => Le[we] === Te), G = C(!1), ne = C(), Me = () => {
|
|
35403
|
-
F.value === "tag" ? (G.value = !0, ne.value = f.value.id, ze.value && (Fe.value = f.value.id + ""), Ft.value = null, _t.value = !0) : F.value === "vehicle" ? (Ft.value = {},
|
|
35406
|
+
F.value === "tag" ? (G.value = !0, ne.value = f.value.id, ze.value && (Fe.value = f.value.id + ""), Ft.value = null, _t.value = !0) : F.value === "vehicle" ? (Ft.value = {}, nn.value = !0) : F.value === "device" || F.value === "landmark" && ae(), h.value = !1, _.value = !1;
|
|
35404
35407
|
}, ae = () => {
|
|
35405
35408
|
Ft.value = {}, Vn.value = !0;
|
|
35406
35409
|
}, fe = (Te) => {
|
|
@@ -35456,11 +35459,11 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
35456
35459
|
), t({
|
|
35457
35460
|
showList: Ot
|
|
35458
35461
|
});
|
|
35459
|
-
const
|
|
35462
|
+
const nn = C(!1), Vn = C(!1), Cn = (Te) => {
|
|
35460
35463
|
if (Te.type === "vehicle")
|
|
35461
35464
|
Ft.value = {
|
|
35462
35465
|
id: Te.id
|
|
35463
|
-
},
|
|
35466
|
+
}, nn.value = !0;
|
|
35464
35467
|
else if (Te.type === "tag")
|
|
35465
35468
|
Ft.value = {
|
|
35466
35469
|
id: Te.id
|
|
@@ -36085,10 +36088,10 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
36085
36088
|
]),
|
|
36086
36089
|
_: 1
|
|
36087
36090
|
}, 8, ["visible", "placement", "virtual-ref"]),
|
|
36088
|
-
|
|
36091
|
+
nn.value ? (w(), re(Ra, {
|
|
36089
36092
|
key: 0,
|
|
36090
|
-
modelValue:
|
|
36091
|
-
"onUpdate:modelValue": we[15] || (we[15] = (ht) =>
|
|
36093
|
+
modelValue: nn.value,
|
|
36094
|
+
"onUpdate:modelValue": we[15] || (we[15] = (ht) => nn.value = ht),
|
|
36092
36095
|
loginInfo: e.loginInfo,
|
|
36093
36096
|
customerHabit: e.customerHabit,
|
|
36094
36097
|
vehicleData: Ft.value,
|
|
@@ -36529,7 +36532,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
36529
36532
|
},
|
|
36530
36533
|
{ immediate: !0 }
|
|
36531
36534
|
), (ze, Fe) => {
|
|
36532
|
-
const He = dt("anSvgIcon"), Be = qh, Ot = Qh, _t = Wu, Ft = gn, An = Ku, Un = To, $n = ea,
|
|
36535
|
+
const He = dt("anSvgIcon"), Be = qh, Ot = Qh, _t = Wu, Ft = gn, An = Ku, Un = To, $n = ea, nn = Mh, Vn = Lh, Cn = bo, Dn = bA, Te = yA, we = Gu, Le = Uu;
|
|
36533
36536
|
return w(), re(Le, {
|
|
36534
36537
|
modelValue: X.value,
|
|
36535
36538
|
"onUpdate:modelValue": Fe[17] || (Fe[17] = (Ye) => X.value = Ye),
|
|
@@ -36782,7 +36785,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
36782
36785
|
onChange: R
|
|
36783
36786
|
}, {
|
|
36784
36787
|
default: H(() => [
|
|
36785
|
-
E(
|
|
36788
|
+
E(nn, {
|
|
36786
36789
|
value: "roadmap",
|
|
36787
36790
|
class: "map-type-item"
|
|
36788
36791
|
}, {
|
|
@@ -36791,7 +36794,7 @@ const IN = { class: "assetType-device" }, EN = {
|
|
|
36791
36794
|
])]),
|
|
36792
36795
|
_: 1
|
|
36793
36796
|
}),
|
|
36794
|
-
E(
|
|
36797
|
+
E(nn, {
|
|
36795
36798
|
value: "hybrid",
|
|
36796
36799
|
class: "map-type-item"
|
|
36797
36800
|
}, {
|
|
@@ -39093,7 +39096,7 @@ const NY = /* @__PURE__ */ be({
|
|
|
39093
39096
|
immediate: !0
|
|
39094
39097
|
}
|
|
39095
39098
|
);
|
|
39096
|
-
const
|
|
39099
|
+
const nn = () => {
|
|
39097
39100
|
var Q, Z, he, ce, Ue;
|
|
39098
39101
|
ae.value = { ...st }, R.value = "", V.value = "", rt.value = {
|
|
39099
39102
|
name: `1${L("Month")}`,
|
|
@@ -39263,14 +39266,14 @@ const NY = /* @__PURE__ */ be({
|
|
|
39263
39266
|
const Je = s != null && s.value.logoPicture && (s == null ? void 0 : s.value.logoPicture.indexOf("http")) === 0 ? s == null ? void 0 : s.value.logoPicture : A + (s == null ? void 0 : s.value.logoPicture);
|
|
39264
39267
|
V.value = s != null && s.value.logoPicture ? s == null ? void 0 : s.value.logoPicture : "", R.value = s != null && s.value.logoPicture ? Je : "";
|
|
39265
39268
|
} else
|
|
39266
|
-
|
|
39269
|
+
nn();
|
|
39267
39270
|
} else
|
|
39268
|
-
|
|
39271
|
+
nn();
|
|
39269
39272
|
}
|
|
39270
39273
|
ge(
|
|
39271
39274
|
() => G.value,
|
|
39272
39275
|
(Q) => {
|
|
39273
|
-
ee.value = !1, M(), Q ? Se() :
|
|
39276
|
+
ee.value = !1, M(), Q ? Se() : nn();
|
|
39274
39277
|
},
|
|
39275
39278
|
{
|
|
39276
39279
|
immediate: !0
|