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