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