tx-sider 2.3.11 → 2.3.12
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/lib/TXUI.mjs +265 -206
- package/lib/TXUI.umd.js +7 -7
- package/lib/style.css +1 -1
- package/package.json +58 -58
package/lib/TXUI.mjs
CHANGED
|
@@ -50822,7 +50822,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
50822
50822
|
}
|
|
50823
50823
|
return target;
|
|
50824
50824
|
};
|
|
50825
|
-
const _withScopeId$2 = (n10) => (pushScopeId("data-v-
|
|
50825
|
+
const _withScopeId$2 = (n10) => (pushScopeId("data-v-8ae1c0f2"), n10 = n10(), popScopeId(), n10);
|
|
50826
50826
|
const _hoisted_1$2 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
|
|
50827
50827
|
const _hoisted_2$2 = { class: "relative w-[30px] h-[30px]" };
|
|
50828
50828
|
const _hoisted_3$2 = {
|
|
@@ -50999,7 +50999,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
50999
50999
|
};
|
|
51000
51000
|
}
|
|
51001
51001
|
});
|
|
51002
|
-
const __unplugin_components_6 = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
51002
|
+
const __unplugin_components_6 = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-8ae1c0f2"]]);
|
|
51003
51003
|
const index$6 = "";
|
|
51004
51004
|
const index$5 = "";
|
|
51005
51005
|
const index$4 = "";
|
|
@@ -54433,6 +54433,7 @@ function useCcflowCall() {
|
|
|
54433
54433
|
const connection = ref(null);
|
|
54434
54434
|
const ccflowData = reactive({
|
|
54435
54435
|
todoList: 0,
|
|
54436
|
+
messageList: 0,
|
|
54436
54437
|
menuNumsList: [],
|
|
54437
54438
|
newVersionList: []
|
|
54438
54439
|
});
|
|
@@ -54441,6 +54442,9 @@ function useCcflowCall() {
|
|
|
54441
54442
|
connection.value.on("GetNum", (res) => {
|
|
54442
54443
|
ccflowData.todoList = res;
|
|
54443
54444
|
});
|
|
54445
|
+
connection.value.on("GetPersonUnReadCount", (res) => {
|
|
54446
|
+
ccflowData.messageList = res;
|
|
54447
|
+
});
|
|
54444
54448
|
connection.value.on("MenuNums", (res) => {
|
|
54445
54449
|
ccflowData.menuNumsList = JSON.parse(res);
|
|
54446
54450
|
});
|
|
@@ -54449,29 +54453,52 @@ function useCcflowCall() {
|
|
|
54449
54453
|
ccflowData.newVersionList = res;
|
|
54450
54454
|
});
|
|
54451
54455
|
connection.value.onreconnected(async (id2) => {
|
|
54452
|
-
var _a2, _b2;
|
|
54456
|
+
var _a2, _b2, _c2;
|
|
54453
54457
|
await connection.value.invoke("Start");
|
|
54454
54458
|
await connection.value.invoke("MenuNums");
|
|
54455
|
-
await connection.value.invoke(
|
|
54459
|
+
await connection.value.invoke(
|
|
54460
|
+
"NewVersion",
|
|
54461
|
+
(_a2 = JSON.parse(localStorage.getItem("selectModule"))) == null ? void 0 : _a2.location,
|
|
54462
|
+
(_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId
|
|
54463
|
+
);
|
|
54464
|
+
await connection.value.invoke(
|
|
54465
|
+
"PersonUnReadCount",
|
|
54466
|
+
(_c2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _c2.userId
|
|
54467
|
+
);
|
|
54456
54468
|
});
|
|
54457
54469
|
if (connection.value.state !== HubConnectionState.Connected) {
|
|
54458
54470
|
connection.value.start().then(async () => {
|
|
54459
|
-
var _a2, _b2;
|
|
54471
|
+
var _a2, _b2, _c2;
|
|
54460
54472
|
console.log("启动即时通信成功");
|
|
54461
54473
|
await connection.value.invoke("Start");
|
|
54462
54474
|
await connection.value.invoke("MenuNums");
|
|
54463
|
-
await connection.value.invoke(
|
|
54475
|
+
await connection.value.invoke(
|
|
54476
|
+
"NewVersion",
|
|
54477
|
+
(_a2 = JSON.parse(localStorage.getItem("selectModule"))) == null ? void 0 : _a2.location,
|
|
54478
|
+
(_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId
|
|
54479
|
+
);
|
|
54480
|
+
await connection.value.invoke(
|
|
54481
|
+
"PersonUnReadCount",
|
|
54482
|
+
(_c2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _c2.userId
|
|
54483
|
+
);
|
|
54464
54484
|
});
|
|
54465
54485
|
}
|
|
54466
54486
|
};
|
|
54467
54487
|
const onClickTodo = () => {
|
|
54468
54488
|
const md2 = localStorage.getItem("loginForm");
|
|
54469
54489
|
window.open(
|
|
54470
|
-
`${jumpUrl}/auth?md=${md2}&key=BasisSystem.
|
|
54490
|
+
`${jumpUrl}/auth?md=${md2}&key=BasisSystem.PersonCenterModule&routerUrl=/workflow/todo&title=审批管理`,
|
|
54491
|
+
"_blank"
|
|
54492
|
+
);
|
|
54493
|
+
};
|
|
54494
|
+
const onClickMessage = () => {
|
|
54495
|
+
const md2 = localStorage.getItem("loginForm");
|
|
54496
|
+
window.open(
|
|
54497
|
+
`${jumpUrl}/auth?md=${md2}&key=BasisSystem.CCFLOWModule&routerUrl=/personCenterManage/MessageInformList`,
|
|
54471
54498
|
"_blank"
|
|
54472
54499
|
);
|
|
54473
54500
|
};
|
|
54474
|
-
return [ccflowData, onClickTodo, init];
|
|
54501
|
+
return [ccflowData, onClickTodo, onClickMessage, init];
|
|
54475
54502
|
}
|
|
54476
54503
|
const _imports_0 = "data:image/svg+xml;base64,77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjMwcHgiIGhlaWdodD0iMjJweCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgPGcgdHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgMSAtMTEwIC0xNjAgKSI+DQogICAgPHBhdGggZD0iTSAyMS44MDQ2ODc1IDQuMTQwNjI1ICBDIDIxLjc5Njg3NSAzLjY3OTY4NzUgIDIxLjYxNzE4NzUgMy4yNSAgMjEuMjk2ODc1IDIuOTI5Njg3NSAgTCAxOC42NzE4NzUgMC4zMjAzMTI1ICBDIDE4LjM5ODQzNzUgMC4wNDY4NzUgIDE4LjAwNzgxMjUgLTAuMDYyNSAgMTcuNjA5Mzc1IDAuMDM5MDYyNSAgQyAxNy41MTU2MjUgMC4wNjI1ICAxNy40MjE4NzUgMC4xMDE1NjI1ICAxNy4zMzU5Mzc1IDAuMTU2MjUgIEMgMTYuOTY4NzUgMC4zODI4MTI0OTk5OTk5OTk5NCAgMTYuNzczNDM3NSAwLjc2NTYyNDk5OTk5OTk5OTkgIDE2LjgwNDY4NzUgMS4xNzk2ODc1ICBDIDE2LjgyMDMxMjUgMS40NDUzMTI0OTk5OTk5OTk4ICAxNi45NTMxMjUgMS42OTUzMTI1ICAxNy4xNDA2MjUgMS44OTA2MjUgIEwgMTguMzkwNjI1IDMuMTMyODEyNSAgTCA2LjA5Mzc1IDMuMTMyODEyNSAgQyA0LjQ2ODc1IDMuMTMyODEyNSAgMi45NDUzMTI1IDMuNzY1NjI1ICAxLjc4OTA2MjUgNC45MjE4NzUgIEMgMC42MzI4MTI1IDYuMDcwMzEyNSAgMCA3LjU5Mzc1ICAwIDkuMjE4NzUgIEwgMCAxMC40Njg3NSAgQyAwIDExLjA3MDMxMjUgIDAuNDkyMTg3NSAxMS41NjI0OTk5OTk5OTk5OTggIDEuMDkzNzUgMTEuNTYyNDk5OTk5OTk5OTk4ICBDIDEuNjk1MzEyNSAxMS41NjI0OTk5OTk5OTk5OTggIDIuMTg3NSAxMS4wNzAzMTI1ICAyLjE4NzUgMTAuNDY4NzUgIEwgMi4xODc1IDkuMjE4NzUgIEMgMi4xODc1IDguMTc5Njg3NSAgMi41OTM3NSA3LjIwMzEyNSAgMy4zMzU5Mzc1IDYuNDYwOTM3NSAgQyA0LjA3ODEyNSA1LjcxODc1ICA1LjA1NDY4NzUgNS4zMTI1ICA2LjA5Mzc1IDUuMzEyNSAgTCAxOC4yMzQzNzUgNS4zMTI1ICBMIDE2Ljk4NDM3NSA2LjU1NDY4NzQ5OTk5OTk5OSAgQyAxNi43OTY4NzUgNi43NDIxODc1ICAxNi42NzE4NzUgNi45NzY1NjI1ICAxNi42NDg0Mzc1IDcuMjM0Mzc1ICBDIDE2LjYxNzE4NzUgNy41NjI1ICAxNi43MzQzNzUgNy44ODI4MTI1MDAwMDAwMDEgIDE2Ljk2ODc1IDguMTE3MTg3NSAgQyAxNy4xNzE4NzUgOC4zMjAzMTI1ICAxNy40NTMxMjUgOC40Mzc1ICAxNy43NDIxODc1IDguNDM3NSAgQyAxOC4wMzEyNSA4LjQzNzUgIDE4LjMwNDY4NzUgOC4zMjgxMjUgIDE4LjUxNTYyNSA4LjExNzE4NzUgIEwgMjEuMjk2ODc1IDUuMzUxNTYyNSAgQyAyMS42MjUgNS4wMzEyNSAgMjEuODA0Njg3NSA0LjU5Mzc1ICAyMS44MDQ2ODc1IDQuMTQwNjI1ICBaIE0gMzAgMTAuNzY1NjI1ICBDIDMwIDEwLjE3OTY4NzUgIDI5LjUwNzgxMjUgOS42ODc1ICAyOC45MDYyNSA5LjY4NzUgIEMgMjguMzA0Njg3NSA5LjY4NzUgIDI3LjgxMjUgMTAuMTc5Njg3NSAgMjcuODEyNSAxMC43ODEyNSAgTCAyNy44MTI1IDEyLjAzMTI1ICBDIDI3LjgxMjUgMTMuMDcwMzEyNSAgMjcuNDA2MjUgMTQuMDQ2ODc1MDAwMDAwMDAyICAyNi42NjQwNjI1IDE0Ljc4OTA2MjUgIEMgMjUuOTIxODc1IDE1LjUzMTI1ICAyNC45NDUzMTI1IDE1LjkzNzUwMDAwMDAwMDAwMiAgMjMuOTA2MjUgMTYgIEwgMTEuNzY1NjI1IDE2ICBMIDEzLjAxNTYyNSAxNC42OTUzMTI1ICBDIDEzLjIwMzEyNSAxNC41MDc4MTI1ICAxMy4zMjgxMjUgMTQuMjczNDM3NSAgMTMuMzUxNTYyNSAxNC4wMDc4MTI1ICBDIDEzLjM4MjgxMjUgMTMuNjc5Njg3NSAgMTMuMjY1NjI1IDEzLjM1OTM3NTAwMDAwMDAwMiAgMTMuMDMxMjUgMTMuMTI1ICBDIDEyLjgyODEyNSAxMi45MjE4NzUgIDEyLjU0Njg3NSAxMi44MDQ2ODc1ICAxMi4yNTc4MTI1IDEyLjgwNDY4NzUgIEMgMTEuOTY4NzUgMTIuODA0Njg3NSAgMTEuNjk1MzEyNSAxMi45MTQwNjI1ICAxMS40ODQzNzUgMTMuMTI1ICBMIDguNzAzMTI1IDE1Ljg5MDYyNSAgQyA4LjM3NSAxNi4yMTA5Mzc1ICA4LjE5NTMxMjUgMTYuNjQ4NDM3NSAgOC4xOTUzMTI1IDE3LjEwMTU2MjUgIEMgOC4xOTUzMTI1IDE3LjU2MjUgIDguMzc1IDE3Ljk5MjE4NzUgIDguNzAzMTI1IDE4LjMxMjUgIEwgMTEuMzI4MTI1IDIwLjkyMTg3NSAgQyAxMS42MDE1NjI1IDIxLjE5NTMxMjUgIDExLjk5MjE4NzUgMjEuMzA0Njg3NSAgMTIuMzkwNjI1IDIxLjIwMzEyNSAgQyAxMi40ODQzNzUgMjEuMTc5Njg3NSAgMTIuNTc4MTI1IDIxLjE0MDYyNSAgMTIuNjY0MDYyNSAyMS4wODU5Mzc1ICBDIDEzLjAzMTI1IDIwLjg1OTM3NSAgMTMuMjI2NTYyNSAyMC40NzY1NjI1ICAxMy4xOTUzMTI1IDIwLjA2MjUgIEMgMTMuMTc5Njg3NSAxOS43OTY4NzUgIDEzLjA0Njg3NSAxOS41NDY4NzUgIDEyLjg1OTM3NSAxOS4zNTE1NjI1ICBMIDExLjYwOTM3NSAxOCAgTCAyMy45MDYyNSAxOCAgQyAyNy4yNjU2MjUgMTguMTA5Mzc1ICAzMCAxNS4zNzUgIDMwIDEyLjAxNTYyNSAgTCAzMCAxMC43NjU2MjUgIFogIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiNiZDllNTUiIHN0cm9rZT0ibm9uZSIgdHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgMSAxMTAgMTYwICkiIC8+DQogIDwvZz4NCjwvc3ZnPg==";
|
|
54477
54504
|
const TSider_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
@@ -54556,7 +54583,7 @@ const _sfc_main = {
|
|
|
54556
54583
|
});
|
|
54557
54584
|
const refData = toRefs(data3);
|
|
54558
54585
|
const iconUrl = process.env.NODE_ENV == "development" ? "https://basis.nacho.cn" : "https://basis.nacho.cn";
|
|
54559
|
-
const [ccflowData, onClickTodo, init] = useCcflowCall();
|
|
54586
|
+
const [ccflowData, onClickTodo, onClickMessage, init] = useCcflowCall();
|
|
54560
54587
|
watch(
|
|
54561
54588
|
() => props.isSystems,
|
|
54562
54589
|
() => {
|
|
@@ -54875,9 +54902,7 @@ const _sfc_main = {
|
|
|
54875
54902
|
const setOfBookId = ref();
|
|
54876
54903
|
const baseId = ref();
|
|
54877
54904
|
const refreshSystemHostname = window.location.hostname.split(".");
|
|
54878
|
-
const refreshSystemDomain = refreshSystemHostname.length === 1 ? "localhost" : "." + [refreshSystemHostname.at(-2), refreshSystemHostname.at(-1)].join(
|
|
54879
|
-
"."
|
|
54880
|
-
);
|
|
54905
|
+
const refreshSystemDomain = refreshSystemHostname.length === 1 ? "localhost" : "." + [refreshSystemHostname.at(-2), refreshSystemHostname.at(-1)].join(".");
|
|
54881
54906
|
const isChangeTokenRefreshFlag = () => location.hash.includes("changeTokenRefreshFlag");
|
|
54882
54907
|
const setCureentSetOfBookId = (res) => {
|
|
54883
54908
|
setSetOfBookIdToLocalAndPage(res);
|
|
@@ -55287,9 +55312,7 @@ const _sfc_main = {
|
|
|
55287
55312
|
var _a3;
|
|
55288
55313
|
console.log("已读");
|
|
55289
55314
|
try {
|
|
55290
|
-
await setUserRead(
|
|
55291
|
-
(_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId
|
|
55292
|
-
);
|
|
55315
|
+
await setUserRead((_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId);
|
|
55293
55316
|
isModuleVersionUpdate.value = false;
|
|
55294
55317
|
} catch (error) {
|
|
55295
55318
|
isModuleVersionUpdate.value = false;
|
|
@@ -55341,6 +55364,7 @@ const _sfc_main = {
|
|
|
55341
55364
|
changeSetofbooks,
|
|
55342
55365
|
ccflowData,
|
|
55343
55366
|
onClickTodo,
|
|
55367
|
+
onClickMessage,
|
|
55344
55368
|
modeuleInfos,
|
|
55345
55369
|
systemVisibleTrue,
|
|
55346
55370
|
passWordPattern,
|
|
@@ -55370,7 +55394,7 @@ const _sfc_main = {
|
|
|
55370
55394
|
};
|
|
55371
55395
|
}
|
|
55372
55396
|
};
|
|
55373
|
-
const _withScopeId = (n10) => (pushScopeId("data-v-
|
|
55397
|
+
const _withScopeId = (n10) => (pushScopeId("data-v-62784c94"), n10 = n10(), popScopeId(), n10);
|
|
55374
55398
|
const _hoisted_1 = {
|
|
55375
55399
|
class: "bg-white defaultTS funcTC relative",
|
|
55376
55400
|
style: { "padding-bottom": "10px", "margin-bottom": "10px" }
|
|
@@ -55406,6 +55430,23 @@ const _hoisted_10 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55406
55430
|
], -1));
|
|
55407
55431
|
const _hoisted_11 = { class: "flex flex-col mt-1" };
|
|
55408
55432
|
const _hoisted_12 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55433
|
+
version: "1.1",
|
|
55434
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
55435
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55436
|
+
width: "20px",
|
|
55437
|
+
height: "20px"
|
|
55438
|
+
}, [
|
|
55439
|
+
/* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -200 -100)" }, [
|
|
55440
|
+
/* @__PURE__ */ createElementVNode("path", {
|
|
55441
|
+
d: "M 2 4 C 1.448 4 1 4.448 1 5 L 1 15 C 1 15.552 1.448 16 2 16 L 18 16 C 18.552 16 19 15.552 19 15 L 19 5 C 19 4.448 18.552 4 18 4 L 2 4 Z M 1 7 L 9.389 11.389 C 9.685 11.56 9.915 11.65 10.1 11.69 C 10.285 11.73 10.485 11.75 10.7 11.75 C 10.96 11.75 11.215 11.69 11.464 11.571 L 18 7.5 L 18 14 L 2 14 L 2 7 Z M 10.7 9.65 C 10.55 9.7 10.4 9.73 10.25 9.75 C 10.1 9.769 9.92 9.75 9.71 9.7 L 2.3 6 L 17.7 6 L 10.7 9.65 Z",
|
|
55442
|
+
fill: "#97d2fd",
|
|
55443
|
+
"fill-rule": "nonzero",
|
|
55444
|
+
stroke: "none",
|
|
55445
|
+
transform: "matrix(1 0 0 1 200 100)"
|
|
55446
|
+
})
|
|
55447
|
+
])
|
|
55448
|
+
], -1));
|
|
55449
|
+
const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55409
55450
|
version: "1.1",
|
|
55410
55451
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55411
55452
|
width: "20px",
|
|
@@ -55422,7 +55463,7 @@ const _hoisted_12 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55422
55463
|
})
|
|
55423
55464
|
])
|
|
55424
55465
|
], -1));
|
|
55425
|
-
const
|
|
55466
|
+
const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55426
55467
|
class: "inline-block",
|
|
55427
55468
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55428
55469
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55440,7 +55481,7 @@ const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55440
55481
|
})
|
|
55441
55482
|
])
|
|
55442
55483
|
], -1));
|
|
55443
|
-
const
|
|
55484
|
+
const _hoisted_15 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55444
55485
|
class: "inline-block absolute top-1 right-[38px]",
|
|
55445
55486
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55446
55487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55458,17 +55499,17 @@ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55458
55499
|
})
|
|
55459
55500
|
])
|
|
55460
55501
|
], -1));
|
|
55461
|
-
const
|
|
55462
|
-
const
|
|
55463
|
-
_hoisted_13,
|
|
55502
|
+
const _hoisted_16 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "ml-[5px] cursor-pointer" }, "退出", -1));
|
|
55503
|
+
const _hoisted_17 = [
|
|
55464
55504
|
_hoisted_14,
|
|
55465
|
-
_hoisted_15
|
|
55505
|
+
_hoisted_15,
|
|
55506
|
+
_hoisted_16
|
|
55466
55507
|
];
|
|
55467
|
-
const
|
|
55508
|
+
const _hoisted_18 = {
|
|
55468
55509
|
key: 0,
|
|
55469
55510
|
class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mt-[5px] mb-0 flexBox border-t-[1px] border-t-[#f5f5f5] border-b-[1px] border-b-[#f5f5f5]"
|
|
55470
55511
|
};
|
|
55471
|
-
const
|
|
55512
|
+
const _hoisted_19 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55472
55513
|
class: "inline-block",
|
|
55473
55514
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55474
55515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55486,12 +55527,12 @@ const _hoisted_18 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55486
55527
|
})
|
|
55487
55528
|
])
|
|
55488
55529
|
], -1));
|
|
55489
|
-
const
|
|
55490
|
-
const
|
|
55530
|
+
const _hoisted_20 = { class: "focusTC ml-[6px]" };
|
|
55531
|
+
const _hoisted_21 = {
|
|
55491
55532
|
key: 1,
|
|
55492
55533
|
class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
|
|
55493
55534
|
};
|
|
55494
|
-
const
|
|
55535
|
+
const _hoisted_22 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55495
55536
|
class: "inline-block",
|
|
55496
55537
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55497
55538
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55509,13 +55550,13 @@ const _hoisted_21 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55509
55550
|
})
|
|
55510
55551
|
])
|
|
55511
55552
|
], -1));
|
|
55512
|
-
const
|
|
55513
|
-
const
|
|
55514
|
-
const
|
|
55553
|
+
const _hoisted_23 = { class: "ml-[6px] focusTC" };
|
|
55554
|
+
const _hoisted_24 = /* @__PURE__ */ createTextVNode(" 当前基地: ");
|
|
55555
|
+
const _hoisted_25 = {
|
|
55515
55556
|
key: 2,
|
|
55516
55557
|
class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
|
|
55517
55558
|
};
|
|
55518
|
-
const
|
|
55559
|
+
const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55519
55560
|
class: "inline-block",
|
|
55520
55561
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55521
55562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55533,8 +55574,8 @@ const _hoisted_25 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55533
55574
|
})
|
|
55534
55575
|
])
|
|
55535
55576
|
], -1));
|
|
55536
|
-
const
|
|
55537
|
-
const
|
|
55577
|
+
const _hoisted_27 = { class: "ml-[6px] focusTC" };
|
|
55578
|
+
const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
|
|
55538
55579
|
/* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55539
55580
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55540
55581
|
src: _imports_0,
|
|
@@ -55543,29 +55584,29 @@ const _hoisted_27 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55543
55584
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "修改密码")
|
|
55544
55585
|
])
|
|
55545
55586
|
], -1));
|
|
55546
|
-
const
|
|
55547
|
-
const
|
|
55548
|
-
const
|
|
55549
|
-
const
|
|
55550
|
-
const
|
|
55587
|
+
const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
|
|
55588
|
+
const _hoisted_30 = { class: "h-[300px]" };
|
|
55589
|
+
const _hoisted_31 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
|
|
55590
|
+
const _hoisted_32 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55591
|
+
const _hoisted_33 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55551
55592
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55552
55593
|
src: _imports_0,
|
|
55553
55594
|
alt: ""
|
|
55554
55595
|
}),
|
|
55555
55596
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换系统")
|
|
55556
55597
|
], -1));
|
|
55557
|
-
const
|
|
55598
|
+
const _hoisted_34 = {
|
|
55558
55599
|
class: "flex flex-wrap justify-center",
|
|
55559
55600
|
style: { "padding": "7.7rem" }
|
|
55560
55601
|
};
|
|
55561
|
-
const
|
|
55562
|
-
const
|
|
55602
|
+
const _hoisted_35 = ["onClick"];
|
|
55603
|
+
const _hoisted_36 = {
|
|
55563
55604
|
key: 0,
|
|
55564
55605
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 themeBGC"
|
|
55565
55606
|
};
|
|
55566
|
-
const
|
|
55567
|
-
const
|
|
55568
|
-
const
|
|
55607
|
+
const _hoisted_37 = { class: "text-xl focusTC flex items-center" };
|
|
55608
|
+
const _hoisted_38 = ["src"];
|
|
55609
|
+
const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
|
|
55569
55610
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8 cursor-pointer" }, [
|
|
55570
55611
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55571
55612
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55606,13 +55647,13 @@ const _hoisted_38 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55606
55647
|
]),
|
|
55607
55648
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC hover:underline" }, "当前选择")
|
|
55608
55649
|
], -1));
|
|
55609
|
-
const
|
|
55650
|
+
const _hoisted_40 = {
|
|
55610
55651
|
key: 1,
|
|
55611
55652
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 tabHeaderBGC"
|
|
55612
55653
|
};
|
|
55613
|
-
const
|
|
55614
|
-
const
|
|
55615
|
-
const
|
|
55654
|
+
const _hoisted_41 = { class: "text-xl focusTC flex items-center" };
|
|
55655
|
+
const _hoisted_42 = ["src"];
|
|
55656
|
+
const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
|
|
55616
55657
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8" }, [
|
|
55617
55658
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55618
55659
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55635,27 +55676,27 @@ const _hoisted_42 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55635
55676
|
]),
|
|
55636
55677
|
/* @__PURE__ */ createElementVNode("span", { class: "defaultTitleTS clickTC hover:underline cursor-pointer" }, "选择")
|
|
55637
55678
|
], -1));
|
|
55638
|
-
const
|
|
55639
|
-
const
|
|
55640
|
-
const
|
|
55641
|
-
const
|
|
55679
|
+
const _hoisted_44 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
|
|
55680
|
+
const _hoisted_45 = ["src"];
|
|
55681
|
+
const _hoisted_46 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55682
|
+
const _hoisted_47 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55642
55683
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55643
55684
|
src: _imports_0,
|
|
55644
55685
|
alt: ""
|
|
55645
55686
|
}),
|
|
55646
55687
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换模块")
|
|
55647
55688
|
], -1));
|
|
55648
|
-
const
|
|
55689
|
+
const _hoisted_48 = {
|
|
55649
55690
|
class: "flex flex-wrap justify-center",
|
|
55650
55691
|
style: { "padding": "7.7rem" }
|
|
55651
55692
|
};
|
|
55652
|
-
const
|
|
55653
|
-
const
|
|
55654
|
-
const
|
|
55655
|
-
const _hoisted_51 = ["src"];
|
|
55693
|
+
const _hoisted_49 = ["onClick"];
|
|
55694
|
+
const _hoisted_50 = { key: 0 };
|
|
55695
|
+
const _hoisted_51 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
|
|
55656
55696
|
const _hoisted_52 = ["src"];
|
|
55657
|
-
const _hoisted_53 =
|
|
55658
|
-
const _hoisted_54 = {
|
|
55697
|
+
const _hoisted_53 = ["src"];
|
|
55698
|
+
const _hoisted_54 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55699
|
+
const _hoisted_55 = {
|
|
55659
55700
|
class: /* @__PURE__ */ normalizeClass([
|
|
55660
55701
|
"flex",
|
|
55661
55702
|
"justify-center",
|
|
@@ -55664,13 +55705,13 @@ const _hoisted_54 = {
|
|
|
55664
55705
|
"focusTC"
|
|
55665
55706
|
])
|
|
55666
55707
|
};
|
|
55667
|
-
const
|
|
55668
|
-
const
|
|
55669
|
-
const
|
|
55670
|
-
const _hoisted_58 = ["src"];
|
|
55708
|
+
const _hoisted_56 = { class: "focusTC" };
|
|
55709
|
+
const _hoisted_57 = { key: 1 };
|
|
55710
|
+
const _hoisted_58 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
|
|
55671
55711
|
const _hoisted_59 = ["src"];
|
|
55672
|
-
const _hoisted_60 =
|
|
55673
|
-
const _hoisted_61 = {
|
|
55712
|
+
const _hoisted_60 = ["src"];
|
|
55713
|
+
const _hoisted_61 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55714
|
+
const _hoisted_62 = {
|
|
55674
55715
|
class: /* @__PURE__ */ normalizeClass([
|
|
55675
55716
|
"flex",
|
|
55676
55717
|
"justify-center",
|
|
@@ -55679,72 +55720,72 @@ const _hoisted_61 = {
|
|
|
55679
55720
|
"clickTC weight600"
|
|
55680
55721
|
])
|
|
55681
55722
|
};
|
|
55682
|
-
const
|
|
55723
|
+
const _hoisted_63 = {
|
|
55683
55724
|
key: 1,
|
|
55684
55725
|
class: "yuan mr-[10px]"
|
|
55685
55726
|
};
|
|
55686
|
-
const
|
|
55687
|
-
const
|
|
55727
|
+
const _hoisted_64 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55728
|
+
const _hoisted_65 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55688
55729
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55689
55730
|
src: _imports_0,
|
|
55690
55731
|
alt: ""
|
|
55691
55732
|
}),
|
|
55692
55733
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换基地")
|
|
55693
55734
|
], -1));
|
|
55694
|
-
const
|
|
55735
|
+
const _hoisted_66 = {
|
|
55695
55736
|
class: "flex flex-wrap justify-center",
|
|
55696
55737
|
style: { "padding": "7.7rem" }
|
|
55697
55738
|
};
|
|
55698
|
-
const
|
|
55699
|
-
const
|
|
55739
|
+
const _hoisted_67 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55740
|
+
const _hoisted_68 = {
|
|
55700
55741
|
key: 1,
|
|
55701
55742
|
class: "yuan mr-[10px]"
|
|
55702
55743
|
};
|
|
55703
|
-
const
|
|
55704
|
-
const
|
|
55705
|
-
const
|
|
55706
|
-
const
|
|
55744
|
+
const _hoisted_69 = /* @__PURE__ */ createTextVNode(" 全部基地 ");
|
|
55745
|
+
const _hoisted_70 = ["onClick"];
|
|
55746
|
+
const _hoisted_71 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55747
|
+
const _hoisted_72 = {
|
|
55707
55748
|
key: 1,
|
|
55708
55749
|
class: "yuan mr-[10px]"
|
|
55709
55750
|
};
|
|
55710
|
-
const
|
|
55711
|
-
const
|
|
55751
|
+
const _hoisted_73 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55752
|
+
const _hoisted_74 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55712
55753
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55713
55754
|
src: _imports_0,
|
|
55714
55755
|
alt: ""
|
|
55715
55756
|
}),
|
|
55716
55757
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换项目")
|
|
55717
55758
|
], -1));
|
|
55718
|
-
const
|
|
55759
|
+
const _hoisted_75 = {
|
|
55719
55760
|
class: "flex flex-wrap justify-center",
|
|
55720
55761
|
style: { "padding": "7.7rem" }
|
|
55721
55762
|
};
|
|
55722
|
-
const
|
|
55723
|
-
const
|
|
55724
|
-
const
|
|
55763
|
+
const _hoisted_76 = ["onClick"];
|
|
55764
|
+
const _hoisted_77 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55765
|
+
const _hoisted_78 = {
|
|
55725
55766
|
key: 1,
|
|
55726
55767
|
class: "yuan mr-[10px]"
|
|
55727
55768
|
};
|
|
55728
|
-
const
|
|
55729
|
-
const
|
|
55730
|
-
const
|
|
55769
|
+
const _hoisted_79 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55770
|
+
const _hoisted_80 = { class: "flex" };
|
|
55771
|
+
const _hoisted_81 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
|
|
55731
55772
|
src: _imports_0,
|
|
55732
55773
|
alt: ""
|
|
55733
55774
|
}, null, -1));
|
|
55734
|
-
const
|
|
55735
|
-
const
|
|
55775
|
+
const _hoisted_82 = { class: "mediumTitleTS focusTC pl-2" };
|
|
55776
|
+
const _hoisted_83 = {
|
|
55736
55777
|
class: "flex flex-wrap justify-center",
|
|
55737
55778
|
style: { "padding": "7.7rem" }
|
|
55738
55779
|
};
|
|
55739
|
-
const
|
|
55740
|
-
const
|
|
55741
|
-
const
|
|
55780
|
+
const _hoisted_84 = ["onClick"];
|
|
55781
|
+
const _hoisted_85 = { class: "w-full text-[22px] c606266 leading-loose rb" };
|
|
55782
|
+
const _hoisted_86 = {
|
|
55742
55783
|
key: 1,
|
|
55743
55784
|
class: "yuan mr-[10px]"
|
|
55744
55785
|
};
|
|
55745
|
-
const
|
|
55746
|
-
const
|
|
55747
|
-
const
|
|
55786
|
+
const _hoisted_87 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
|
|
55787
|
+
const _hoisted_88 = { class: "relative w-[30px] h-[30px]" };
|
|
55788
|
+
const _hoisted_89 = {
|
|
55748
55789
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55749
55790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55750
55791
|
version: "1.1",
|
|
@@ -55752,7 +55793,7 @@ const _hoisted_88 = {
|
|
|
55752
55793
|
height: "23px",
|
|
55753
55794
|
style: { "position": "absolute", "top": "7px" }
|
|
55754
55795
|
};
|
|
55755
|
-
const
|
|
55796
|
+
const _hoisted_90 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
|
|
55756
55797
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55757
55798
|
d: "M 2.8482972136223452 0 C 1.2746130030959648 0.028482972136316675 0 1.3030959752322815 0 2.8767801857584345 L 0 20.151702786377655 C 0 21.725386996904035 1.2746130030959648 23 2.8482972136223452 23 L 20.123219814241565 23 C 21.69690402476772 23 22.971517027863683 21.725386996904035 23 20.151702786377655 L 23 2.8767801857584345 C 22.971517027863683 1.3030959752322815 21.69690402476772 0.028482972136316675 20.123219814241565 0 L 2.8482972136223452 0 Z ",
|
|
55758
55799
|
"fill-rule": "nonzero",
|
|
@@ -55761,10 +55802,10 @@ const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55761
55802
|
transform: "matrix(1 0 0 1 256 275 )"
|
|
55762
55803
|
})
|
|
55763
55804
|
], -1));
|
|
55764
|
-
const
|
|
55765
|
-
|
|
55805
|
+
const _hoisted_91 = [
|
|
55806
|
+
_hoisted_90
|
|
55766
55807
|
];
|
|
55767
|
-
const
|
|
55808
|
+
const _hoisted_92 = {
|
|
55768
55809
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55769
55810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55770
55811
|
version: "1.1",
|
|
@@ -55772,7 +55813,7 @@ const _hoisted_91 = {
|
|
|
55772
55813
|
height: "23px",
|
|
55773
55814
|
style: { "position": "absolute", "left": "7px" }
|
|
55774
55815
|
};
|
|
55775
|
-
const
|
|
55816
|
+
const _hoisted_93 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
|
|
55776
55817
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55777
55818
|
d: "M 2.8767801857584345 0 C 1.3030959752322815 0 0.028482972136316675 1.2746130030959648 0.028482972136316675 2.8482972136223452 L 0.028482972136316675 4.870588235294008 C 0.028482972136316675 5.027244582043295 0.15665634674928697 5.155417956656265 0.31331269349834656 5.155417956656265 L 14.426625386996877 5.155417956656265 C 16.306501547987637 5.155417956656265 17.844582043343735 6.693498452012363 17.844582043343735 8.573374613003125 L 17.844582043343735 22.686687306501653 C 17.844582043343735 22.843343653250713 17.972755417956705 22.971517027863683 18.129411764705992 22.971517027863683 L 20.151702786377655 22.971517027863683 C 21.725386996904035 22.971517027863683 23 21.69690402476772 23 20.123219814241565 L 23 2.8482972136223452 C 23 1.2746130030959648 21.725386996904035 0 20.151702786377655 0 L 2.8767801857584345 0 Z ",
|
|
55778
55819
|
"fill-rule": "nonzero",
|
|
@@ -55781,17 +55822,17 @@ const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55781
55822
|
transform: "matrix(1 0 0 1 263 268 )"
|
|
55782
55823
|
})
|
|
55783
55824
|
], -1));
|
|
55784
|
-
const
|
|
55785
|
-
|
|
55825
|
+
const _hoisted_94 = [
|
|
55826
|
+
_hoisted_93
|
|
55786
55827
|
];
|
|
55787
|
-
const
|
|
55788
|
-
const
|
|
55789
|
-
const
|
|
55790
|
-
const
|
|
55791
|
-
const
|
|
55792
|
-
const
|
|
55793
|
-
const
|
|
55794
|
-
const
|
|
55828
|
+
const _hoisted_95 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
|
|
55829
|
+
const _hoisted_96 = { class: "flex flex-col px-5 pr-0 h-full" };
|
|
55830
|
+
const _hoisted_97 = ["onClick"];
|
|
55831
|
+
const _hoisted_98 = { class: "w-full h-full overflow-y-auto content" };
|
|
55832
|
+
const _hoisted_99 = { class: "mb-[20px]" };
|
|
55833
|
+
const _hoisted_100 = { class: "h-[10%] flex justify-center items-center" };
|
|
55834
|
+
const _hoisted_101 = /* @__PURE__ */ createTextVNode(" 下次再提醒我 ");
|
|
55835
|
+
const _hoisted_102 = /* @__PURE__ */ createTextVNode(" 好的,我知道了 ");
|
|
55795
55836
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
55796
55837
|
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2, _r2, _s2;
|
|
55797
55838
|
const _component_a_upload = __unplugin_components_0;
|
|
@@ -55870,32 +55911,50 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55870
55911
|
])
|
|
55871
55912
|
]),
|
|
55872
55913
|
createElementVNode("div", _hoisted_11, [
|
|
55873
|
-
|
|
55874
|
-
|
|
55875
|
-
|
|
55876
|
-
|
|
55877
|
-
|
|
55878
|
-
|
|
55879
|
-
|
|
55880
|
-
|
|
55881
|
-
|
|
55882
|
-
|
|
55883
|
-
|
|
55884
|
-
|
|
55885
|
-
|
|
55886
|
-
|
|
55887
|
-
|
|
55888
|
-
|
|
55914
|
+
createElementVNode("div", null, [
|
|
55915
|
+
createVNode(_component_a_badge, {
|
|
55916
|
+
onClick: $setup.onClickMessage,
|
|
55917
|
+
count: $setup.ccflowData.messageList,
|
|
55918
|
+
"number-style": {
|
|
55919
|
+
backgroundColor: "#52c41a",
|
|
55920
|
+
fontSize: "12px",
|
|
55921
|
+
padding: "0 4px"
|
|
55922
|
+
},
|
|
55923
|
+
class: "w-[20px] h-[20px] cursor-pointer",
|
|
55924
|
+
offset: [0, 0]
|
|
55925
|
+
}, {
|
|
55926
|
+
default: withCtx(() => [
|
|
55927
|
+
_hoisted_12
|
|
55928
|
+
]),
|
|
55929
|
+
_: 1
|
|
55930
|
+
}, 8, ["onClick", "count"]),
|
|
55931
|
+
createVNode(_component_a_badge, {
|
|
55932
|
+
onClick: $setup.onClickTodo,
|
|
55933
|
+
count: $setup.ccflowData.todoList,
|
|
55934
|
+
"number-style": {
|
|
55935
|
+
backgroundColor: "#52c41a",
|
|
55936
|
+
fontSize: "12px",
|
|
55937
|
+
padding: "0 4px"
|
|
55938
|
+
},
|
|
55939
|
+
class: "w-[20px] h-[20px] cursor-pointer",
|
|
55940
|
+
offset: [0, 0]
|
|
55941
|
+
}, {
|
|
55942
|
+
default: withCtx(() => [
|
|
55943
|
+
_hoisted_13
|
|
55944
|
+
]),
|
|
55945
|
+
_: 1
|
|
55946
|
+
}, 8, ["onClick", "count"])
|
|
55947
|
+
]),
|
|
55889
55948
|
createElementVNode("span", {
|
|
55890
55949
|
class: "mt-[10px] relative",
|
|
55891
55950
|
onClick: _cache[5] || (_cache[5] = (...args) => $setup.logout && $setup.logout(...args))
|
|
55892
|
-
},
|
|
55951
|
+
}, _hoisted_17)
|
|
55893
55952
|
])
|
|
55894
55953
|
]),
|
|
55895
|
-
((_g2 = (_f2 = $setup.modeuleInfos) == null ? void 0 : _f2.setOfBooks) == null ? void 0 : _g2.includes($setup.modeuleTypeValue)) && $setup.setofbooksTest && $setup.setofbooksTest.length > 0 ? (openBlock(), createElementBlock("div",
|
|
55954
|
+
((_g2 = (_f2 = $setup.modeuleInfos) == null ? void 0 : _f2.setOfBooks) == null ? void 0 : _g2.includes($setup.modeuleTypeValue)) && $setup.setofbooksTest && $setup.setofbooksTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_18, [
|
|
55896
55955
|
createElementVNode("div", null, [
|
|
55897
|
-
|
|
55898
|
-
createElementVNode("span",
|
|
55956
|
+
_hoisted_19,
|
|
55957
|
+
createElementVNode("span", _hoisted_20, "当前" + toDisplayString($props.setofbooksName) + ": " + toDisplayString((_i2 = (_h2 = $setup.setofbooksTest) == null ? void 0 : _h2.find((item) => item.id == $setup.setOfBookId)) == null ? void 0 : _i2.shortName), 1)
|
|
55899
55958
|
]),
|
|
55900
55959
|
$setup.setofbooksTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
55901
55960
|
key: 0,
|
|
@@ -55903,11 +55962,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55903
55962
|
onClick: _cache[6] || (_cache[6] = (...args) => $setup.changeSetofbooks && $setup.changeSetofbooks(...args))
|
|
55904
55963
|
}, "切换" + toDisplayString($props.setofbooksName), 1)) : createCommentVNode("", true)
|
|
55905
55964
|
])) : createCommentVNode("", true),
|
|
55906
|
-
((_k2 = (_j2 = $setup.modeuleInfos) == null ? void 0 : _j2.productionBases) == null ? void 0 : _k2.includes($setup.modeuleTypeValue)) && $setup.baseTest && ($setup.baseTest.length > 0 || $setup.isShowAllProductionBases) ? (openBlock(), createElementBlock("div",
|
|
55965
|
+
((_k2 = (_j2 = $setup.modeuleInfos) == null ? void 0 : _j2.productionBases) == null ? void 0 : _k2.includes($setup.modeuleTypeValue)) && $setup.baseTest && ($setup.baseTest.length > 0 || $setup.isShowAllProductionBases) ? (openBlock(), createElementBlock("div", _hoisted_21, [
|
|
55907
55966
|
createElementVNode("div", null, [
|
|
55908
|
-
|
|
55909
|
-
createElementVNode("span",
|
|
55910
|
-
|
|
55967
|
+
_hoisted_22,
|
|
55968
|
+
createElementVNode("span", _hoisted_23, [
|
|
55969
|
+
_hoisted_24,
|
|
55911
55970
|
$setup.isShowAllProductionBases ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
55912
55971
|
createTextVNode(toDisplayString($setup.baseId === $setup.allBaseId ? "全基地" : (_m2 = (_l2 = $setup.baseTest) == null ? void 0 : _l2.find((item) => item.id == $setup.baseId)) == null ? void 0 : _m2.shortName), 1)
|
|
55913
55972
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
@@ -55921,10 +55980,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55921
55980
|
onClick: _cache[7] || (_cache[7] = (...args) => $setup.openBaseModal && $setup.openBaseModal(...args))
|
|
55922
55981
|
}, "切换基地")) : createCommentVNode("", true)
|
|
55923
55982
|
])) : createCommentVNode("", true),
|
|
55924
|
-
((_q2 = (_p2 = $setup.modeuleInfos) == null ? void 0 : _p2.projects) == null ? void 0 : _q2.includes($setup.modeuleTypeValue)) && $setup.gjTest && $setup.gjTest.length > 0 ? (openBlock(), createElementBlock("div",
|
|
55983
|
+
((_q2 = (_p2 = $setup.modeuleInfos) == null ? void 0 : _p2.projects) == null ? void 0 : _q2.includes($setup.modeuleTypeValue)) && $setup.gjTest && $setup.gjTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_25, [
|
|
55925
55984
|
createElementVNode("div", null, [
|
|
55926
|
-
|
|
55927
|
-
createElementVNode("span",
|
|
55985
|
+
_hoisted_26,
|
|
55986
|
+
createElementVNode("span", _hoisted_27, " 当前项目: " + toDisplayString((_s2 = (_r2 = $setup.gjTest) == null ? void 0 : _r2.find((item) => item.id == $setup.gjId)) == null ? void 0 : _s2.shortName), 1)
|
|
55928
55987
|
]),
|
|
55929
55988
|
$setup.gjTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
55930
55989
|
key: 0,
|
|
@@ -55949,11 +56008,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55949
56008
|
onCancel: $setup.cancelPWDVisible
|
|
55950
56009
|
}, {
|
|
55951
56010
|
title: withCtx(() => [
|
|
55952
|
-
|
|
56011
|
+
_hoisted_28
|
|
55953
56012
|
]),
|
|
55954
56013
|
body: withCtx(() => [
|
|
55955
|
-
|
|
55956
|
-
createElementVNode("div",
|
|
56014
|
+
_hoisted_29,
|
|
56015
|
+
createElementVNode("div", _hoisted_30, [
|
|
55957
56016
|
createVNode(_component_a_form, {
|
|
55958
56017
|
style: { "width": "380px", "margin": "0 auto" },
|
|
55959
56018
|
ref: "changePWDref",
|
|
@@ -56004,7 +56063,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56004
56063
|
]),
|
|
56005
56064
|
_: 1
|
|
56006
56065
|
}, 8, ["model"]),
|
|
56007
|
-
createElementVNode("div",
|
|
56066
|
+
createElementVNode("div", _hoisted_31, [
|
|
56008
56067
|
createElementVNode("div", {
|
|
56009
56068
|
class: "submit_btn",
|
|
56010
56069
|
onClick: _cache[11] || (_cache[11] = (...args) => $setup.changePWDOKHandle && $setup.changePWDOKHandle(...args))
|
|
@@ -56024,8 +56083,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56024
56083
|
"remove-padding": false
|
|
56025
56084
|
}, {
|
|
56026
56085
|
title: withCtx(() => [
|
|
56027
|
-
createElementVNode("div",
|
|
56028
|
-
|
|
56086
|
+
createElementVNode("div", _hoisted_32, [
|
|
56087
|
+
_hoisted_33,
|
|
56029
56088
|
createElementVNode("div", {
|
|
56030
56089
|
class: "h-[60px] w-[80px] zIndex",
|
|
56031
56090
|
onClick: _cache[14] || (_cache[14] = ($event) => $setup.closeSysetmModal())
|
|
@@ -56033,7 +56092,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56033
56092
|
])
|
|
56034
56093
|
]),
|
|
56035
56094
|
body: withCtx(() => [
|
|
56036
|
-
createElementVNode("div",
|
|
56095
|
+
createElementVNode("div", _hoisted_34, [
|
|
56037
56096
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.permissionModuleList, (i2) => {
|
|
56038
56097
|
return openBlock(), createElementBlock("div", {
|
|
56039
56098
|
key: i2.id,
|
|
@@ -56041,27 +56100,27 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56041
56100
|
style: { "border-radius": "10px" },
|
|
56042
56101
|
onClick: ($event) => $setup.changesystem(i2)
|
|
56043
56102
|
}, [
|
|
56044
|
-
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div",
|
|
56045
|
-
createElementVNode("div",
|
|
56103
|
+
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_36, [
|
|
56104
|
+
createElementVNode("div", _hoisted_37, [
|
|
56046
56105
|
createElementVNode("img", {
|
|
56047
56106
|
class: "mr-4",
|
|
56048
56107
|
src: i2.icon
|
|
56049
|
-
}, null, 8,
|
|
56108
|
+
}, null, 8, _hoisted_38),
|
|
56050
56109
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56051
56110
|
]),
|
|
56052
|
-
|
|
56053
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56054
|
-
createElementVNode("div",
|
|
56111
|
+
_hoisted_39
|
|
56112
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_40, [
|
|
56113
|
+
createElementVNode("div", _hoisted_41, [
|
|
56055
56114
|
createElementVNode("img", {
|
|
56056
56115
|
class: "mr-4",
|
|
56057
56116
|
src: i2.icon
|
|
56058
|
-
}, null, 8,
|
|
56117
|
+
}, null, 8, _hoisted_42),
|
|
56059
56118
|
createTextVNode(toDisplayString(i2.moduleName), 1)
|
|
56060
56119
|
]),
|
|
56061
|
-
|
|
56120
|
+
_hoisted_43
|
|
56062
56121
|
])),
|
|
56063
56122
|
createElementVNode("div", null, [
|
|
56064
|
-
createElementVNode("div",
|
|
56123
|
+
createElementVNode("div", _hoisted_44, [
|
|
56065
56124
|
(openBlock(true), createElementBlock(Fragment, null, renderList(i2.childGroups, (e10) => {
|
|
56066
56125
|
return openBlock(), createElementBlock("div", {
|
|
56067
56126
|
key: e10.id,
|
|
@@ -56074,13 +56133,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56074
56133
|
class: "mr-2",
|
|
56075
56134
|
style: { "width": "16px", "height": "16px" },
|
|
56076
56135
|
src: e10.icon
|
|
56077
|
-
}, null, 8,
|
|
56136
|
+
}, null, 8, _hoisted_45),
|
|
56078
56137
|
createTextVNode(" " + toDisplayString(e10.moduleName), 1)
|
|
56079
56138
|
], 2);
|
|
56080
56139
|
}), 128))
|
|
56081
56140
|
])
|
|
56082
56141
|
])
|
|
56083
|
-
], 8,
|
|
56142
|
+
], 8, _hoisted_35);
|
|
56084
56143
|
}), 128))
|
|
56085
56144
|
])
|
|
56086
56145
|
]),
|
|
@@ -56093,8 +56152,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56093
56152
|
"remove-padding": false
|
|
56094
56153
|
}, {
|
|
56095
56154
|
title: withCtx(() => [
|
|
56096
|
-
createElementVNode("div",
|
|
56097
|
-
|
|
56155
|
+
createElementVNode("div", _hoisted_46, [
|
|
56156
|
+
_hoisted_47,
|
|
56098
56157
|
createElementVNode("div", {
|
|
56099
56158
|
class: "h-[60px] w-[80px] zIndex",
|
|
56100
56159
|
onClick: _cache[16] || (_cache[16] = ($event) => $setup.closeModule())
|
|
@@ -56102,54 +56161,54 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56102
56161
|
])
|
|
56103
56162
|
]),
|
|
56104
56163
|
body: withCtx(() => [
|
|
56105
|
-
createElementVNode("div",
|
|
56164
|
+
createElementVNode("div", _hoisted_48, [
|
|
56106
56165
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleTestS, (i2) => {
|
|
56107
56166
|
return openBlock(), createElementBlock("div", {
|
|
56108
56167
|
key: i2.id,
|
|
56109
56168
|
class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
|
|
56110
56169
|
onClick: ($event) => $setup.changeModule(i2)
|
|
56111
56170
|
}, [
|
|
56112
|
-
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div",
|
|
56113
|
-
createElementVNode("div",
|
|
56171
|
+
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_50, [
|
|
56172
|
+
createElementVNode("div", _hoisted_51, [
|
|
56114
56173
|
createElementVNode("img", {
|
|
56115
56174
|
class: "w-[80px] h-[78px]",
|
|
56116
56175
|
src: i2.icon
|
|
56117
|
-
}, null, 8,
|
|
56176
|
+
}, null, 8, _hoisted_52),
|
|
56118
56177
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56119
56178
|
key: 0,
|
|
56120
56179
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56121
56180
|
src: i2.icon1
|
|
56122
|
-
}, null, 8,
|
|
56181
|
+
}, null, 8, _hoisted_53)) : createCommentVNode("", true)
|
|
56123
56182
|
]),
|
|
56124
|
-
createElementVNode("div",
|
|
56125
|
-
createElementVNode("div",
|
|
56183
|
+
createElementVNode("div", _hoisted_54, [
|
|
56184
|
+
createElementVNode("div", _hoisted_55, [
|
|
56126
56185
|
createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
|
|
56127
|
-
createElementVNode("div",
|
|
56186
|
+
createElementVNode("div", _hoisted_56, toDisplayString(i2.moduleName), 1)
|
|
56128
56187
|
])
|
|
56129
56188
|
])
|
|
56130
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56131
|
-
createElementVNode("div",
|
|
56189
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_57, [
|
|
56190
|
+
createElementVNode("div", _hoisted_58, [
|
|
56132
56191
|
createElementVNode("img", {
|
|
56133
56192
|
class: "w-[80px] h-[78px]",
|
|
56134
56193
|
src: i2.icon
|
|
56135
|
-
}, null, 8,
|
|
56194
|
+
}, null, 8, _hoisted_59),
|
|
56136
56195
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56137
56196
|
key: 0,
|
|
56138
56197
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56139
56198
|
src: i2.icon1
|
|
56140
|
-
}, null, 8,
|
|
56199
|
+
}, null, 8, _hoisted_60)) : createCommentVNode("", true)
|
|
56141
56200
|
]),
|
|
56142
|
-
createElementVNode("div",
|
|
56143
|
-
createElementVNode("div",
|
|
56201
|
+
createElementVNode("div", _hoisted_61, [
|
|
56202
|
+
createElementVNode("div", _hoisted_62, [
|
|
56144
56203
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56145
56204
|
key: 0,
|
|
56146
56205
|
class: "mediumTitleTS mr-[10px]"
|
|
56147
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56206
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_63)),
|
|
56148
56207
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56149
56208
|
])
|
|
56150
56209
|
])
|
|
56151
56210
|
]))
|
|
56152
|
-
], 8,
|
|
56211
|
+
], 8, _hoisted_49);
|
|
56153
56212
|
}), 128))
|
|
56154
56213
|
])
|
|
56155
56214
|
]),
|
|
@@ -56161,8 +56220,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56161
56220
|
"remove-padding": false
|
|
56162
56221
|
}, {
|
|
56163
56222
|
title: withCtx(() => [
|
|
56164
|
-
createElementVNode("div",
|
|
56165
|
-
|
|
56223
|
+
createElementVNode("div", _hoisted_64, [
|
|
56224
|
+
_hoisted_65,
|
|
56166
56225
|
createElementVNode("div", {
|
|
56167
56226
|
class: "h-[60px] w-[80px] zIndex",
|
|
56168
56227
|
onClick: _cache[18] || (_cache[18] = (...args) => $setup.cloneBaseModal && $setup.cloneBaseModal(...args))
|
|
@@ -56170,7 +56229,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56170
56229
|
])
|
|
56171
56230
|
]),
|
|
56172
56231
|
body: withCtx(() => [
|
|
56173
|
-
createElementVNode("div",
|
|
56232
|
+
createElementVNode("div", _hoisted_66, [
|
|
56174
56233
|
$setup.isShowAllProductionBasesModel ? (openBlock(), createElementBlock("div", {
|
|
56175
56234
|
key: 0,
|
|
56176
56235
|
class: "w-[320px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer rt",
|
|
@@ -56196,7 +56255,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56196
56255
|
])
|
|
56197
56256
|
}, " 全部基地 ", 2)
|
|
56198
56257
|
], 2),
|
|
56199
|
-
createElementVNode("div",
|
|
56258
|
+
createElementVNode("div", _hoisted_67, [
|
|
56200
56259
|
createElementVNode("div", {
|
|
56201
56260
|
class: normalizeClass([
|
|
56202
56261
|
"flex",
|
|
@@ -56209,8 +56268,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56209
56268
|
$setup.baseId === $setup.allBaseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56210
56269
|
key: 0,
|
|
56211
56270
|
class: "mediumTitleTS mr-[10px]"
|
|
56212
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56213
|
-
|
|
56271
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_68)),
|
|
56272
|
+
_hoisted_69
|
|
56214
56273
|
], 2)
|
|
56215
56274
|
])
|
|
56216
56275
|
])) : createCommentVNode("", true),
|
|
@@ -56237,7 +56296,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56237
56296
|
class: normalizeClass(["text-xl", `${i2.id == $setup.baseId ? "focusTC" : "clickTC"}`])
|
|
56238
56297
|
}, toDisplayString(i2.title), 3)
|
|
56239
56298
|
], 2),
|
|
56240
|
-
createElementVNode("div",
|
|
56299
|
+
createElementVNode("div", _hoisted_71, [
|
|
56241
56300
|
createElementVNode("div", {
|
|
56242
56301
|
class: normalizeClass([
|
|
56243
56302
|
"flex",
|
|
@@ -56250,11 +56309,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56250
56309
|
i2.id == $setup.baseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56251
56310
|
key: 0,
|
|
56252
56311
|
class: "mediumTitleTS mr-[10px]"
|
|
56253
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56312
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_72)),
|
|
56254
56313
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56255
56314
|
], 2)
|
|
56256
56315
|
])
|
|
56257
|
-
], 8,
|
|
56316
|
+
], 8, _hoisted_70);
|
|
56258
56317
|
}), 128))
|
|
56259
56318
|
])
|
|
56260
56319
|
]),
|
|
@@ -56266,8 +56325,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56266
56325
|
"remove-padding": false
|
|
56267
56326
|
}, {
|
|
56268
56327
|
title: withCtx(() => [
|
|
56269
|
-
createElementVNode("div",
|
|
56270
|
-
|
|
56328
|
+
createElementVNode("div", _hoisted_73, [
|
|
56329
|
+
_hoisted_74,
|
|
56271
56330
|
createElementVNode("div", {
|
|
56272
56331
|
class: "h-[60px] w-[80px] zIndex",
|
|
56273
56332
|
onClick: _cache[21] || (_cache[21] = ($event) => $setup.closeDgVisible())
|
|
@@ -56275,7 +56334,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56275
56334
|
])
|
|
56276
56335
|
]),
|
|
56277
56336
|
body: withCtx(() => [
|
|
56278
|
-
createElementVNode("div",
|
|
56337
|
+
createElementVNode("div", _hoisted_75, [
|
|
56279
56338
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.gjTest, (i2) => {
|
|
56280
56339
|
return openBlock(), createElementBlock("div", {
|
|
56281
56340
|
key: i2.id,
|
|
@@ -56299,7 +56358,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56299
56358
|
class: normalizeClass(["text-xl", `${i2.id == $setup.gjId ? "focusTC" : "clickTC"}`])
|
|
56300
56359
|
}, toDisplayString(i2.title), 3)
|
|
56301
56360
|
], 2),
|
|
56302
|
-
createElementVNode("div",
|
|
56361
|
+
createElementVNode("div", _hoisted_77, [
|
|
56303
56362
|
createElementVNode("div", {
|
|
56304
56363
|
class: normalizeClass([
|
|
56305
56364
|
"flex",
|
|
@@ -56312,11 +56371,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56312
56371
|
i2.id == $setup.gjId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56313
56372
|
key: 0,
|
|
56314
56373
|
class: "mediumTitleTS mr-[10px]"
|
|
56315
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56374
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_78)),
|
|
56316
56375
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56317
56376
|
], 2)
|
|
56318
56377
|
])
|
|
56319
|
-
], 8,
|
|
56378
|
+
], 8, _hoisted_76);
|
|
56320
56379
|
}), 128))
|
|
56321
56380
|
])
|
|
56322
56381
|
]),
|
|
@@ -56328,10 +56387,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56328
56387
|
"remove-padding": false
|
|
56329
56388
|
}, {
|
|
56330
56389
|
title: withCtx(() => [
|
|
56331
|
-
createElementVNode("div",
|
|
56332
|
-
createElementVNode("div",
|
|
56333
|
-
|
|
56334
|
-
createElementVNode("span",
|
|
56390
|
+
createElementVNode("div", _hoisted_79, [
|
|
56391
|
+
createElementVNode("div", _hoisted_80, [
|
|
56392
|
+
_hoisted_81,
|
|
56393
|
+
createElementVNode("span", _hoisted_82, "切换" + toDisplayString($props.setofbooksName), 1)
|
|
56335
56394
|
]),
|
|
56336
56395
|
createElementVNode("div", {
|
|
56337
56396
|
class: "h-[60px] w-[80px] zIndex",
|
|
@@ -56340,7 +56399,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56340
56399
|
])
|
|
56341
56400
|
]),
|
|
56342
56401
|
body: withCtx(() => [
|
|
56343
|
-
createElementVNode("div",
|
|
56402
|
+
createElementVNode("div", _hoisted_83, [
|
|
56344
56403
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.setofbooksTest, (i2) => {
|
|
56345
56404
|
return openBlock(), createElementBlock("div", {
|
|
56346
56405
|
key: i2.id,
|
|
@@ -56367,7 +56426,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56367
56426
|
])
|
|
56368
56427
|
}, toDisplayString(i2.title), 3)
|
|
56369
56428
|
], 2),
|
|
56370
|
-
createElementVNode("div",
|
|
56429
|
+
createElementVNode("div", _hoisted_85, [
|
|
56371
56430
|
createElementVNode("div", {
|
|
56372
56431
|
class: normalizeClass([
|
|
56373
56432
|
"flex",
|
|
@@ -56380,11 +56439,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56380
56439
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56381
56440
|
key: 0,
|
|
56382
56441
|
class: "mediumTitleTS mr-[10px]"
|
|
56383
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56442
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_86)),
|
|
56384
56443
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56385
56444
|
], 2)
|
|
56386
56445
|
])
|
|
56387
|
-
], 8,
|
|
56446
|
+
], 8, _hoisted_84);
|
|
56388
56447
|
}), 128))
|
|
56389
56448
|
])
|
|
56390
56449
|
]),
|
|
@@ -56404,16 +56463,16 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56404
56463
|
isScroll: false
|
|
56405
56464
|
}, {
|
|
56406
56465
|
title: withCtx(() => [
|
|
56407
|
-
createElementVNode("div",
|
|
56408
|
-
createElementVNode("div",
|
|
56409
|
-
(openBlock(), createElementBlock("svg",
|
|
56410
|
-
(openBlock(), createElementBlock("svg",
|
|
56466
|
+
createElementVNode("div", _hoisted_87, [
|
|
56467
|
+
createElementVNode("div", _hoisted_88, [
|
|
56468
|
+
(openBlock(), createElementBlock("svg", _hoisted_89, _hoisted_91)),
|
|
56469
|
+
(openBlock(), createElementBlock("svg", _hoisted_92, _hoisted_94))
|
|
56411
56470
|
]),
|
|
56412
|
-
|
|
56471
|
+
_hoisted_95
|
|
56413
56472
|
])
|
|
56414
56473
|
]),
|
|
56415
56474
|
body: withCtx(() => [
|
|
56416
|
-
createElementVNode("div",
|
|
56475
|
+
createElementVNode("div", _hoisted_96, [
|
|
56417
56476
|
createVNode(_component_a_row, {
|
|
56418
56477
|
gutter: 24,
|
|
56419
56478
|
style: { "height": "90%", "border-bottom": "1px solid #eadcb9" }
|
|
@@ -56428,7 +56487,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56428
56487
|
return openBlock(), createElementBlock("div", {
|
|
56429
56488
|
onClick: ($event) => $setup.changeTab(item, i2),
|
|
56430
56489
|
class: normalizeClass(["tab-items", $setup.activeKey == i2 ? "tab-items-active" : ""])
|
|
56431
|
-
}, toDisplayString(item.version), 11,
|
|
56490
|
+
}, toDisplayString(item.version), 11, _hoisted_97);
|
|
56432
56491
|
}), 256))
|
|
56433
56492
|
]),
|
|
56434
56493
|
_: 1
|
|
@@ -56442,8 +56501,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56442
56501
|
type: "vertical",
|
|
56443
56502
|
style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
|
|
56444
56503
|
}),
|
|
56445
|
-
createElementVNode("div",
|
|
56446
|
-
createElementVNode("div",
|
|
56504
|
+
createElementVNode("div", _hoisted_98, [
|
|
56505
|
+
createElementVNode("div", _hoisted_99, [
|
|
56447
56506
|
createVNode(_component_Toolbar, {
|
|
56448
56507
|
editor: $setup.editorRef,
|
|
56449
56508
|
defaultConfig: { readOnly: true },
|
|
@@ -56463,14 +56522,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56463
56522
|
]),
|
|
56464
56523
|
_: 1
|
|
56465
56524
|
}),
|
|
56466
|
-
createElementVNode("div",
|
|
56525
|
+
createElementVNode("div", _hoisted_100, [
|
|
56467
56526
|
createVNode(_component_a_button, {
|
|
56468
56527
|
class: "w-[140px] mr-[50px] btn1",
|
|
56469
56528
|
style: { "border-radius": "5px" },
|
|
56470
56529
|
onClick: $setup.onCancel
|
|
56471
56530
|
}, {
|
|
56472
56531
|
default: withCtx(() => [
|
|
56473
|
-
|
|
56532
|
+
_hoisted_101
|
|
56474
56533
|
]),
|
|
56475
56534
|
_: 1
|
|
56476
56535
|
}, 8, ["onClick"]),
|
|
@@ -56480,7 +56539,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56480
56539
|
onClick: $setup.onRead
|
|
56481
56540
|
}, {
|
|
56482
56541
|
default: withCtx(() => [
|
|
56483
|
-
|
|
56542
|
+
_hoisted_102
|
|
56484
56543
|
]),
|
|
56485
56544
|
_: 1
|
|
56486
56545
|
}, 8, ["onClick"])
|
|
@@ -56491,7 +56550,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56491
56550
|
}, 8, ["show"])
|
|
56492
56551
|
], 64);
|
|
56493
56552
|
}
|
|
56494
|
-
const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
56553
|
+
const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-62784c94"]]);
|
|
56495
56554
|
const style = "";
|
|
56496
56555
|
const components = [TSider];
|
|
56497
56556
|
installComponents();
|