tx-sider 2.3.32 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/TXUI.mjs CHANGED
@@ -54479,7 +54479,18 @@ function useCcflowCall(callBack) {
54479
54479
  newVersionList: []
54480
54480
  });
54481
54481
  const init = () => {
54482
- connection.value = new HubConnectionBuilder().withUrl(`${jumpUrl}/api/basis-management/signalr?Bearer=` + localStorage.getItem("token"), {}).withAutomaticReconnect([1e3, 4e3, 1e3, 4e3]).configureLogging(LogLevel.Error).build();
54482
+ connection.value = new HubConnectionBuilder().withUrl(
54483
+ `${jumpUrl}/api/basis-management/signalr`,
54484
+ {
54485
+ accessTokenFactory: () => {
54486
+ const token = localStorage.getItem("token");
54487
+ if (!token) {
54488
+ throw new Error("No authentication token found");
54489
+ }
54490
+ return token;
54491
+ }
54492
+ }
54493
+ ).withAutomaticReconnect([1e3, 4e3, 1e3, 4e3]).configureLogging(LogLevel.Error).build();
54483
54494
  connection.value.on("GetNum", (res) => {
54484
54495
  ccflowData.todoList = res;
54485
54496
  });
@@ -54593,7 +54604,7 @@ const _sfc_main = {
54593
54604
  ],
54594
54605
  // replace: 路由replace; push:路由push
54595
54606
  setup(props, ctx) {
54596
- var _a2;
54607
+ var _a2, _b2;
54597
54608
  const editorRef = ref(null);
54598
54609
  useRouter();
54599
54610
  const route = useRoute();
@@ -54673,10 +54684,10 @@ const _sfc_main = {
54673
54684
  modeuleInfos.value = await getModeuleInfo();
54674
54685
  console.log(modeuleInfos.value, "modeuleInfos.value");
54675
54686
  return (moduleKey) => {
54676
- var _a3, _b2, _c2, _d2, _e2, _f2;
54687
+ var _a3, _b3, _c2, _d2, _e2, _f2;
54677
54688
  return {
54678
54689
  isSetOfBooks: modeuleInfos.value.setOfBooks.includes(moduleKey),
54679
- isProductionBases: (_b2 = (_a3 = modeuleInfos.value) == null ? void 0 : _a3.productionBases) == null ? void 0 : _b2.includes(moduleKey),
54690
+ isProductionBases: (_b3 = (_a3 = modeuleInfos.value) == null ? void 0 : _a3.productionBases) == null ? void 0 : _b3.includes(moduleKey),
54680
54691
  isProjects: (_d2 = (_c2 = modeuleInfos.value) == null ? void 0 : _c2.projects) == null ? void 0 : _d2.includes(moduleKey),
54681
54692
  isAllProductionBases: (_f2 = (_e2 = modeuleInfos.value) == null ? void 0 : _e2.allProductionBases) == null ? void 0 : _f2.includes(moduleKey)
54682
54693
  };
@@ -54718,7 +54729,7 @@ const _sfc_main = {
54718
54729
  }
54719
54730
  };
54720
54731
  onMounted(async () => {
54721
- var _a3, _b2, _c2, _d2, _e2, _f2;
54732
+ var _a3, _b3, _c2, _d2, _e2, _f2;
54722
54733
  await getUnReadMessage(0);
54723
54734
  await getUserFlowData();
54724
54735
  getModeuleInfoDataHandle = await getModeuleInfoData();
@@ -54745,9 +54756,9 @@ const _sfc_main = {
54745
54756
  }
54746
54757
  }
54747
54758
  if (isSystems.value) {
54748
- moduleTestS.value = ((_b2 = permissionModuleList.value.find(
54759
+ moduleTestS.value = ((_b3 = permissionModuleList.value.find(
54749
54760
  (_x2) => _x2.permissionModuleName === selectedSystems.value
54750
- )) == null ? void 0 : _b2.childGroups) ?? [];
54761
+ )) == null ? void 0 : _b3.childGroups) ?? [];
54751
54762
  }
54752
54763
  if (permissionModuleList.value.length == 1) {
54753
54764
  sysShow.value = false;
@@ -54857,7 +54868,7 @@ const _sfc_main = {
54857
54868
  }
54858
54869
  }
54859
54870
  const changeModule = async (i2) => {
54860
- var _a3, _b2;
54871
+ var _a3, _b3;
54861
54872
  let { permissionModuleName, routerUrl, location: location2, moduleName } = i2;
54862
54873
  if (!getModeuleInfoDataHandle) {
54863
54874
  getModeuleInfoDataHandle = await getModeuleInfoData();
@@ -54909,7 +54920,7 @@ const _sfc_main = {
54909
54920
  }
54910
54921
  if (ModeuleInfo.isProjects) {
54911
54922
  if (gjTest.value.length == 1) {
54912
- window.location.href = goUrl.value + `&gjId=${(_b2 = gjTest.value[0]) == null ? void 0 : _b2.id}`;
54923
+ window.location.href = goUrl.value + `&gjId=${(_b3 = gjTest.value[0]) == null ? void 0 : _b3.id}`;
54913
54924
  return;
54914
54925
  }
54915
54926
  data3.dgVisible = true;
@@ -55270,6 +55281,13 @@ const _sfc_main = {
55270
55281
  data3.systemVisible = true;
55271
55282
  };
55272
55283
  const onFunOpen = async () => {
55284
+ if (moduleManageList.value.length) {
55285
+ onClickManage();
55286
+ } else {
55287
+ await toBusiness();
55288
+ }
55289
+ };
55290
+ const toBusiness = async () => {
55273
55291
  console.log("🚀🚀🚀🚀", permissionModuleList.value);
55274
55292
  if (permissionModuleList.value.length === 0) {
55275
55293
  const res = await getPermissionModuleList();
@@ -55387,8 +55405,48 @@ const _sfc_main = {
55387
55405
  isModuleVersionUpdate.value = false;
55388
55406
  }
55389
55407
  };
55408
+ const moduleManageVisible = ref(false);
55409
+ const moduleManageSelect = ref();
55410
+ const moduleManageHandle = () => {
55411
+ moduleManageVisible.value = false;
55412
+ };
55413
+ const moduleManageList = ref(
55414
+ ((_b2 = JSON.parse(localStorage.getItem("userInfos") ?? "{}")) == null ? void 0 : _b2.manageFunctions) ?? []
55415
+ );
55416
+ const gotoManage = (module2) => {
55417
+ const md2 = localStorage.getItem("loginForm");
55418
+ window.location.href = module2.routeAddress + `?md=${md2}&routerUrl=${module2.routeAddress}`;
55419
+ };
55420
+ const onChangeMangeModule = (module2) => {
55421
+ if (!module2.routeAddress) {
55422
+ return message.warn("当前管理端地址缺失");
55423
+ }
55424
+ moduleManageSelect.value = module2.id;
55425
+ moduleManageVisible.value = false;
55426
+ gotoManage(module2);
55427
+ };
55428
+ const onChangeMangeModuleBusiness = async () => {
55429
+ moduleManageVisible.value = false;
55430
+ await toBusiness();
55431
+ };
55432
+ const onClickManage = () => {
55433
+ if (moduleManageList.value.length === 1) {
55434
+ gotoManage(moduleManageList.value[0]);
55435
+ } else {
55436
+ moduleManageVisible.value = true;
55437
+ }
55438
+ };
55390
55439
  return {
55391
55440
  ...refData,
55441
+ // 管理端
55442
+ moduleManageVisible,
55443
+ moduleManageSelect,
55444
+ moduleManageHandle,
55445
+ moduleManageList,
55446
+ onChangeMangeModule,
55447
+ onClickManage,
55448
+ onChangeMangeModuleBusiness,
55449
+ // 管理端
55392
55450
  beforeUpload,
55393
55451
  customRequest,
55394
55452
  fileList,
@@ -55467,7 +55525,7 @@ const _sfc_main = {
55467
55525
  };
55468
55526
  }
55469
55527
  };
55470
- const _withScopeId = (n10) => (pushScopeId("data-v-128c9be4"), n10 = n10(), popScopeId(), n10);
55528
+ const _withScopeId = (n10) => (pushScopeId("data-v-f0bb3a4c"), n10 = n10(), popScopeId(), n10);
55471
55529
  const _hoisted_1 = {
55472
55530
  class: "bg-white defaultTS funcTC relative",
55473
55531
  style: { "padding-bottom": "10px", "margin-bottom": "10px" }
@@ -55504,6 +55562,22 @@ const _hoisted_10 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55504
55562
  const _hoisted_11 = { class: "flex flex-col mt-1" };
55505
55563
  const _hoisted_12 = { style: { "display": "flex", "justify-content": "space-between" } };
55506
55564
  const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55565
+ t: "1757562009739",
55566
+ class: "icon",
55567
+ viewBox: "0 0 1024 1024",
55568
+ version: "1.1",
55569
+ xmlns: "http://www.w3.org/2000/svg",
55570
+ "p-id": "4641",
55571
+ width: "20",
55572
+ height: "20"
55573
+ }, [
55574
+ /* @__PURE__ */ createElementVNode("path", {
55575
+ d: "M170.7008 713.4208v196.8128h682.7008V713.4208l-183.5008-87.552H354.2016l-183.5008 87.552z m-24.576-51.4048L329.728 574.464c7.68-3.6864 15.9744-5.5296 24.4736-5.5296h315.5968c8.4992 0 16.896 1.8432 24.4736 5.5296l183.5008 87.552c19.7632 9.4208 32.3584 29.3888 32.3584 51.3024v196.8128c0 31.4368-25.4976 56.9344-56.9344 56.9344H170.7008c-31.4368 0-56.9344-25.4976-56.9344-56.9344V713.4208c0-22.016 12.5952-41.984 32.3584-51.4048zM512 455.0656c94.208 0 170.7008-76.3904 170.7008-170.7008 0-94.208-76.3904-170.7008-170.7008-170.7008s-170.7008 76.3904-170.7008 170.7008S417.792 455.0656 512 455.0656z m0 56.9344c-125.6448 0-227.5328-101.888-227.5328-227.5328S386.3552 56.9344 512 56.9344 739.5328 158.72 739.5328 284.4672 637.6448 512 512 512z m85.2992 227.5328h113.7664c15.6672 0 28.4672 12.6976 28.4672 28.4672s-12.6976 28.4672-28.4672 28.4672H597.2992c-15.6672 0-28.4672-12.6976-28.4672-28.4672s12.8-28.4672 28.4672-28.4672z",
55576
+ fill: "#97D2FD",
55577
+ "p-id": "4642"
55578
+ })
55579
+ ], -1));
55580
+ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55507
55581
  version: "1.1",
55508
55582
  xmlns: "http://www.w3.org/2000/svg",
55509
55583
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
@@ -55520,7 +55594,7 @@ const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55520
55594
  })
55521
55595
  ])
55522
55596
  ], -1));
55523
- const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55597
+ const _hoisted_15 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55524
55598
  version: "1.1",
55525
55599
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55526
55600
  width: "20px",
@@ -55537,15 +55611,15 @@ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55537
55611
  })
55538
55612
  ])
55539
55613
  ], -1));
55540
- const _hoisted_15 = /* @__PURE__ */ createStaticVNode('<svg class="inline-block" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="16px" height="14px" data-v-128c9be4><g transform="matrix(1 0 0 1 -221 -57 )" data-v-128c9be4><path d="M 16 6.15014662756593 C 16 3.8592375366569183 14.970833333333333 1.6873900293255113 13.183333333333334 0.19296187683278698 C 13.045833333333333 0.07800586510268624 12.870833333333334 0.01642228739001439 12.691666666666666 0.01642228739001439 C 12.470833333333333 0.01642228739001439 12.258333333333333 0.11085043988271504 12.116666666666667 0.27917888563048043 C 11.983333333333333 0.43108504398823144 11.920833333333333 0.6240469208211363 11.9375 0.8252199413489305 C 11.954166666666667 1.022287390029339 12.05 1.2070381231671186 12.204166666666667 1.3343108504398482 C 13.654166666666667 2.5454545454545885 14.4875 4.30263929618766 14.4875 6.154252199413434 C 14.4875 9.660410557184807 11.579166666666667 12.50967741935478 8.004166666666666 12.50967741935478 C 4.429166666666666 12.50967741935478 1.5208333333333333 9.656304985337185 1.5208333333333333 6.154252199413434 C 1.5208333333333333 4.298533724340157 2.3541666666666665 2.541348973607085 3.8041666666666667 1.3343108504398482 C 3.9583333333333335 1.2070381231671186 4.054166666666666 1.0263929618768426 4.070833333333334 0.8252199413489305 C 4.0875 0.6281524926686399 4.025 0.43108504398823144 3.8916666666666666 0.27917888563048043 C 3.745833333333333 0.11495601173021863 3.5375 0.01642228739001439 3.316666666666667 0.01642228739001439 C 3.1375 0.01642228739001439 2.9625 0.07800586510268624 2.825 0.19296187683278698 C 1.0291666666666666 1.6873900293255113 0 3.8592375366569183 0 6.15014662756593 C 0 10.47741935483873 3.5875 14 8 14 C 12.4125 14 16 10.47741935483873 16 6.15014662756593 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 221 57 )" data-v-128c9be4></path></g></svg><svg class="inline-block absolute top-1 right-[38px]" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="2px" height="9px" data-v-128c9be4><g transform="matrix(1 0 0 1 -228 -55 )" data-v-128c9be4><path d="M 0.021052631578944176 8.18957345971566 C 0.021052631578944176 8.624644549763033 0.4578947368421116 8.978672985781998 0.9947368421051882 8.978672985781998 C 1.5315789473684163 8.978672985781998 1.9684210526315837 8.624644549763033 1.9684210526315837 8.18957345971566 L 1.9684210526315837 0.7890995260663374 C 1.9684210526315837 0.3540284360189645 1.5315789473684163 0 0.9947368421051882 0 C 0.4578947368421116 0 0.021052631578944176 0.3540284360189645 0.021052631578944176 0.7890995260663374 L 0.021052631578944176 8.18957345971566 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 228 55 )" data-v-128c9be4></path></g></svg><span class="ml-[5px] cursor-pointer" data-v-128c9be4>退出</span>', 3);
55541
- const _hoisted_18 = [
55542
- _hoisted_15
55614
+ const _hoisted_16 = /* @__PURE__ */ createStaticVNode('<svg class="inline-block" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="16px" height="14px" data-v-f0bb3a4c><g transform="matrix(1 0 0 1 -221 -57 )" data-v-f0bb3a4c><path d="M 16 6.15014662756593 C 16 3.8592375366569183 14.970833333333333 1.6873900293255113 13.183333333333334 0.19296187683278698 C 13.045833333333333 0.07800586510268624 12.870833333333334 0.01642228739001439 12.691666666666666 0.01642228739001439 C 12.470833333333333 0.01642228739001439 12.258333333333333 0.11085043988271504 12.116666666666667 0.27917888563048043 C 11.983333333333333 0.43108504398823144 11.920833333333333 0.6240469208211363 11.9375 0.8252199413489305 C 11.954166666666667 1.022287390029339 12.05 1.2070381231671186 12.204166666666667 1.3343108504398482 C 13.654166666666667 2.5454545454545885 14.4875 4.30263929618766 14.4875 6.154252199413434 C 14.4875 9.660410557184807 11.579166666666667 12.50967741935478 8.004166666666666 12.50967741935478 C 4.429166666666666 12.50967741935478 1.5208333333333333 9.656304985337185 1.5208333333333333 6.154252199413434 C 1.5208333333333333 4.298533724340157 2.3541666666666665 2.541348973607085 3.8041666666666667 1.3343108504398482 C 3.9583333333333335 1.2070381231671186 4.054166666666666 1.0263929618768426 4.070833333333334 0.8252199413489305 C 4.0875 0.6281524926686399 4.025 0.43108504398823144 3.8916666666666666 0.27917888563048043 C 3.745833333333333 0.11495601173021863 3.5375 0.01642228739001439 3.316666666666667 0.01642228739001439 C 3.1375 0.01642228739001439 2.9625 0.07800586510268624 2.825 0.19296187683278698 C 1.0291666666666666 1.6873900293255113 0 3.8592375366569183 0 6.15014662756593 C 0 10.47741935483873 3.5875 14 8 14 C 12.4125 14 16 10.47741935483873 16 6.15014662756593 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 221 57 )" data-v-f0bb3a4c></path></g></svg><svg class="inline-block absolute top-1 right-[38px]" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="2px" height="9px" data-v-f0bb3a4c><g transform="matrix(1 0 0 1 -228 -55 )" data-v-f0bb3a4c><path d="M 0.021052631578944176 8.18957345971566 C 0.021052631578944176 8.624644549763033 0.4578947368421116 8.978672985781998 0.9947368421051882 8.978672985781998 C 1.5315789473684163 8.978672985781998 1.9684210526315837 8.624644549763033 1.9684210526315837 8.18957345971566 L 1.9684210526315837 0.7890995260663374 C 1.9684210526315837 0.3540284360189645 1.5315789473684163 0 0.9947368421051882 0 C 0.4578947368421116 0 0.021052631578944176 0.3540284360189645 0.021052631578944176 0.7890995260663374 L 0.021052631578944176 8.18957345971566 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 228 55 )" data-v-f0bb3a4c></path></g></svg><span class="ml-[5px] cursor-pointer" data-v-f0bb3a4c>退出</span>', 3);
55615
+ const _hoisted_19 = [
55616
+ _hoisted_16
55543
55617
  ];
55544
- const _hoisted_19 = {
55618
+ const _hoisted_20 = {
55545
55619
  key: 0,
55546
55620
  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]"
55547
55621
  };
55548
- const _hoisted_20 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55622
+ const _hoisted_21 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55549
55623
  class: "inline-block",
55550
55624
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55551
55625
  xmlns: "http://www.w3.org/2000/svg",
@@ -55563,12 +55637,12 @@ const _hoisted_20 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55563
55637
  })
55564
55638
  ])
55565
55639
  ], -1));
55566
- const _hoisted_21 = { class: "focusTC ml-[6px]" };
55567
- const _hoisted_22 = {
55640
+ const _hoisted_22 = { class: "focusTC ml-[6px]" };
55641
+ const _hoisted_23 = {
55568
55642
  key: 1,
55569
55643
  class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
55570
55644
  };
55571
- const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55645
+ const _hoisted_24 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55572
55646
  class: "inline-block",
55573
55647
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55574
55648
  xmlns: "http://www.w3.org/2000/svg",
@@ -55586,12 +55660,12 @@ const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55586
55660
  })
55587
55661
  ])
55588
55662
  ], -1));
55589
- const _hoisted_24 = { class: "ml-[6px] focusTC" };
55590
- const _hoisted_25 = {
55663
+ const _hoisted_25 = { class: "ml-[6px] focusTC" };
55664
+ const _hoisted_26 = {
55591
55665
  key: 2,
55592
55666
  class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
55593
55667
  };
55594
- const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55668
+ const _hoisted_27 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55595
55669
  class: "inline-block",
55596
55670
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55597
55671
  xmlns: "http://www.w3.org/2000/svg",
@@ -55609,8 +55683,8 @@ const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55609
55683
  })
55610
55684
  ])
55611
55685
  ], -1));
55612
- const _hoisted_27 = { class: "ml-[6px] focusTC" };
55613
- const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
55686
+ const _hoisted_28 = { class: "ml-[6px] focusTC" };
55687
+ const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
55614
55688
  /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55615
55689
  /* @__PURE__ */ createElementVNode("img", {
55616
55690
  src: _imports_0,
@@ -55619,29 +55693,29 @@ const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55619
55693
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "修改密码")
55620
55694
  ])
55621
55695
  ], -1));
55622
- const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
55623
- const _hoisted_30 = { class: "h-[300px]" };
55624
- const _hoisted_31 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
55625
- const _hoisted_32 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55626
- const _hoisted_33 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55696
+ const _hoisted_30 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
55697
+ const _hoisted_31 = { class: "h-[300px]" };
55698
+ const _hoisted_32 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
55699
+ const _hoisted_33 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55700
+ const _hoisted_34 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55627
55701
  /* @__PURE__ */ createElementVNode("img", {
55628
55702
  src: _imports_0,
55629
55703
  alt: ""
55630
55704
  }),
55631
55705
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换系统")
55632
55706
  ], -1));
55633
- const _hoisted_34 = {
55707
+ const _hoisted_35 = {
55634
55708
  class: "flex flex-wrap justify-center",
55635
55709
  style: { "padding": "7.7rem" }
55636
55710
  };
55637
- const _hoisted_35 = ["onClick"];
55638
- const _hoisted_36 = {
55711
+ const _hoisted_36 = ["onClick"];
55712
+ const _hoisted_37 = {
55639
55713
  key: 0,
55640
55714
  class: "flex justify-between items-center pl-6 pr-2 w-full h-12 themeBGC"
55641
55715
  };
55642
- const _hoisted_37 = { class: "text-xl focusTC flex items-center" };
55643
- const _hoisted_38 = ["src"];
55644
- const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55716
+ const _hoisted_38 = { class: "text-xl focusTC flex items-center" };
55717
+ const _hoisted_39 = ["src"];
55718
+ const _hoisted_40 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55645
55719
  /* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8 cursor-pointer" }, [
55646
55720
  /* @__PURE__ */ createElementVNode("svg", {
55647
55721
  class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
@@ -55682,13 +55756,13 @@ const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55682
55756
  ]),
55683
55757
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC hover:underline" }, "当前选择")
55684
55758
  ], -1));
55685
- const _hoisted_40 = {
55759
+ const _hoisted_41 = {
55686
55760
  key: 1,
55687
55761
  class: "flex justify-between items-center pl-6 pr-2 w-full h-12 tabHeaderBGC"
55688
55762
  };
55689
- const _hoisted_41 = { class: "text-xl focusTC flex items-center" };
55690
- const _hoisted_42 = ["src"];
55691
- const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55763
+ const _hoisted_42 = { class: "text-xl focusTC flex items-center" };
55764
+ const _hoisted_43 = ["src"];
55765
+ const _hoisted_44 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55692
55766
  /* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8" }, [
55693
55767
  /* @__PURE__ */ createElementVNode("svg", {
55694
55768
  class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
@@ -55711,27 +55785,27 @@ const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55711
55785
  ]),
55712
55786
  /* @__PURE__ */ createElementVNode("span", { class: "defaultTitleTS clickTC hover:underline cursor-pointer" }, "选择")
55713
55787
  ], -1));
55714
- const _hoisted_44 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
55715
- const _hoisted_45 = ["src"];
55716
- const _hoisted_46 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55717
- const _hoisted_47 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55788
+ const _hoisted_45 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
55789
+ const _hoisted_46 = ["src"];
55790
+ const _hoisted_47 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55791
+ const _hoisted_48 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55718
55792
  /* @__PURE__ */ createElementVNode("img", {
55719
55793
  src: _imports_0,
55720
55794
  alt: ""
55721
55795
  }),
55722
- /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换模块")
55796
+ /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换管理端")
55723
55797
  ], -1));
55724
- const _hoisted_48 = {
55798
+ const _hoisted_49 = {
55725
55799
  class: "flex flex-wrap justify-center",
55726
55800
  style: { "padding": "7.7rem" }
55727
55801
  };
55728
- const _hoisted_49 = ["onClick"];
55729
- const _hoisted_50 = { key: 0 };
55730
- const _hoisted_51 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55731
- const _hoisted_52 = ["src"];
55802
+ const _hoisted_50 = ["onClick"];
55803
+ const _hoisted_51 = { key: 0 };
55804
+ const _hoisted_52 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55732
55805
  const _hoisted_53 = ["src"];
55733
- const _hoisted_54 = { class: "w-full text-[22px] leading-loose rb" };
55734
- const _hoisted_55 = {
55806
+ const _hoisted_54 = ["src"];
55807
+ const _hoisted_55 = { class: "w-full text-[22px] leading-loose rb" };
55808
+ const _hoisted_56 = {
55735
55809
  class: /* @__PURE__ */ normalizeClass([
55736
55810
  "flex",
55737
55811
  "justify-center",
@@ -55740,13 +55814,13 @@ const _hoisted_55 = {
55740
55814
  "focusTC"
55741
55815
  ])
55742
55816
  };
55743
- const _hoisted_56 = { class: "focusTC" };
55744
- const _hoisted_57 = { key: 1 };
55745
- const _hoisted_58 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55746
- const _hoisted_59 = ["src"];
55817
+ const _hoisted_57 = { class: "focusTC" };
55818
+ const _hoisted_58 = { key: 1 };
55819
+ const _hoisted_59 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55747
55820
  const _hoisted_60 = ["src"];
55748
- const _hoisted_61 = { class: "w-full text-[22px] leading-loose rb" };
55749
- const _hoisted_62 = {
55821
+ const _hoisted_61 = ["src"];
55822
+ const _hoisted_62 = { class: "w-full text-[22px] leading-loose rb" };
55823
+ const _hoisted_63 = {
55750
55824
  class: /* @__PURE__ */ normalizeClass([
55751
55825
  "flex",
55752
55826
  "justify-center",
@@ -55755,71 +55829,132 @@ const _hoisted_62 = {
55755
55829
  "clickTC weight600"
55756
55830
  ])
55757
55831
  };
55758
- const _hoisted_63 = {
55832
+ const _hoisted_64 = {
55759
55833
  key: 1,
55760
55834
  class: "yuan mr-[10px]"
55761
55835
  };
55762
- const _hoisted_64 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55763
- const _hoisted_65 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55836
+ const _hoisted_65 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55837
+ const _hoisted_66 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55764
55838
  /* @__PURE__ */ createElementVNode("img", {
55765
55839
  src: _imports_0,
55766
55840
  alt: ""
55767
55841
  }),
55768
55842
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换基地")
55769
55843
  ], -1));
55770
- const _hoisted_66 = {
55844
+ const _hoisted_67 = {
55771
55845
  class: "flex flex-wrap justify-center",
55772
55846
  style: { "padding": "7.7rem" }
55773
55847
  };
55774
- const _hoisted_67 = { class: "w-full text-[22px] leading-loose rb" };
55775
- const _hoisted_68 = {
55848
+ const _hoisted_68 = { class: "w-full text-[22px] leading-loose rb" };
55849
+ const _hoisted_69 = {
55776
55850
  key: 1,
55777
55851
  class: "yuan mr-[10px]"
55778
55852
  };
55779
- const _hoisted_69 = ["onClick"];
55780
- const _hoisted_70 = { class: "w-full text-[22px] leading-loose rb" };
55781
- const _hoisted_71 = {
55853
+ const _hoisted_70 = ["onClick"];
55854
+ const _hoisted_71 = { class: "w-full text-[22px] leading-loose rb" };
55855
+ const _hoisted_72 = {
55782
55856
  key: 1,
55783
55857
  class: "yuan mr-[10px]"
55784
55858
  };
55785
- const _hoisted_72 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55786
- const _hoisted_73 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55859
+ const _hoisted_73 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55860
+ const _hoisted_74 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55787
55861
  /* @__PURE__ */ createElementVNode("img", {
55788
55862
  src: _imports_0,
55789
55863
  alt: ""
55790
55864
  }),
55791
55865
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换项目")
55792
55866
  ], -1));
55793
- const _hoisted_74 = {
55867
+ const _hoisted_75 = {
55794
55868
  class: "flex flex-wrap justify-center",
55795
55869
  style: { "padding": "7.7rem" }
55796
55870
  };
55797
- const _hoisted_75 = ["onClick"];
55798
- const _hoisted_76 = { class: "w-full text-[22px] leading-loose rb" };
55799
- const _hoisted_77 = {
55871
+ const _hoisted_76 = ["onClick"];
55872
+ const _hoisted_77 = { class: "w-full text-[22px] leading-loose rb" };
55873
+ const _hoisted_78 = {
55800
55874
  key: 1,
55801
55875
  class: "yuan mr-[10px]"
55802
55876
  };
55803
- const _hoisted_78 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55804
- const _hoisted_79 = { class: "flex" };
55805
- const _hoisted_80 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
55877
+ const _hoisted_79 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55878
+ const _hoisted_80 = { class: "flex" };
55879
+ const _hoisted_81 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
55806
55880
  src: _imports_0,
55807
55881
  alt: ""
55808
55882
  }, null, -1));
55809
- const _hoisted_81 = { class: "mediumTitleTS focusTC pl-2" };
55810
- const _hoisted_82 = {
55883
+ const _hoisted_82 = { class: "mediumTitleTS focusTC pl-2" };
55884
+ const _hoisted_83 = {
55885
+ class: "flex flex-wrap justify-center",
55886
+ style: { "padding": "7.7rem" }
55887
+ };
55888
+ const _hoisted_84 = ["onClick"];
55889
+ const _hoisted_85 = { class: "w-full text-[22px] c606266 leading-loose rb" };
55890
+ const _hoisted_86 = {
55891
+ key: 1,
55892
+ class: "yuan mr-[10px]"
55893
+ };
55894
+ const _hoisted_87 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55895
+ const _hoisted_88 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55896
+ /* @__PURE__ */ createElementVNode("img", {
55897
+ src: _imports_0,
55898
+ alt: ""
55899
+ }),
55900
+ /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换管理端")
55901
+ ], -1));
55902
+ const _hoisted_89 = {
55811
55903
  class: "flex flex-wrap justify-center",
55812
55904
  style: { "padding": "7.7rem" }
55813
55905
  };
55814
- const _hoisted_83 = ["onClick"];
55815
- const _hoisted_84 = { class: "w-full text-[22px] c606266 leading-loose rb" };
55816
- const _hoisted_85 = {
55906
+ const _hoisted_90 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" }, [
55907
+ /* @__PURE__ */ createElementVNode("img", { class: "w-[80px] h-[78px]" }),
55908
+ /* @__PURE__ */ createElementVNode("img", { class: "w-[80px] h-[27px] absolute top-[68px]" })
55909
+ ], -1));
55910
+ const _hoisted_91 = { class: "w-full text-[22px] leading-loose rb" };
55911
+ const _hoisted_92 = {
55912
+ class: /* @__PURE__ */ normalizeClass([
55913
+ "flex",
55914
+ "justify-center",
55915
+ "items-center",
55916
+ "h-[66px]",
55917
+ "focusTC"
55918
+ ])
55919
+ };
55920
+ const _hoisted_93 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "focusTC" }, "进入业务端", -1));
55921
+ const _hoisted_94 = ["onClick"];
55922
+ const _hoisted_95 = { key: 0 };
55923
+ const _hoisted_96 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55924
+ const _hoisted_97 = ["src"];
55925
+ const _hoisted_98 = ["src"];
55926
+ const _hoisted_99 = { class: "w-full text-[22px] leading-loose rb" };
55927
+ const _hoisted_100 = {
55928
+ class: /* @__PURE__ */ normalizeClass([
55929
+ "flex",
55930
+ "justify-center",
55931
+ "items-center",
55932
+ "h-[66px]",
55933
+ "focusTC"
55934
+ ])
55935
+ };
55936
+ const _hoisted_101 = { class: "focusTC" };
55937
+ const _hoisted_102 = { key: 1 };
55938
+ const _hoisted_103 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55939
+ const _hoisted_104 = ["src"];
55940
+ const _hoisted_105 = ["src"];
55941
+ const _hoisted_106 = { class: "w-full text-[22px] leading-loose rb" };
55942
+ const _hoisted_107 = {
55943
+ class: /* @__PURE__ */ normalizeClass([
55944
+ "flex",
55945
+ "justify-center",
55946
+ "items-center",
55947
+ "h-[66px]",
55948
+ "clickTC weight600"
55949
+ ])
55950
+ };
55951
+ const _hoisted_108 = {
55817
55952
  key: 1,
55818
55953
  class: "yuan mr-[10px]"
55819
55954
  };
55820
- const _hoisted_86 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
55821
- const _hoisted_87 = { class: "relative w-[30px] h-[30px]" };
55822
- const _hoisted_88 = {
55955
+ const _hoisted_109 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
55956
+ const _hoisted_110 = { class: "relative w-[30px] h-[30px]" };
55957
+ const _hoisted_111 = {
55823
55958
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55824
55959
  xmlns: "http://www.w3.org/2000/svg",
55825
55960
  version: "1.1",
@@ -55827,7 +55962,7 @@ const _hoisted_88 = {
55827
55962
  height: "23px",
55828
55963
  style: { "position": "absolute", "top": "7px" }
55829
55964
  };
55830
- const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
55965
+ const _hoisted_112 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
55831
55966
  /* @__PURE__ */ createElementVNode("path", {
55832
55967
  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 ",
55833
55968
  "fill-rule": "nonzero",
@@ -55836,10 +55971,10 @@ const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55836
55971
  transform: "matrix(1 0 0 1 256 275 )"
55837
55972
  })
55838
55973
  ], -1));
55839
- const _hoisted_90 = [
55840
- _hoisted_89
55974
+ const _hoisted_113 = [
55975
+ _hoisted_112
55841
55976
  ];
55842
- const _hoisted_91 = {
55977
+ const _hoisted_114 = {
55843
55978
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55844
55979
  xmlns: "http://www.w3.org/2000/svg",
55845
55980
  version: "1.1",
@@ -55847,7 +55982,7 @@ const _hoisted_91 = {
55847
55982
  height: "23px",
55848
55983
  style: { "position": "absolute", "left": "7px" }
55849
55984
  };
55850
- const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
55985
+ const _hoisted_115 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
55851
55986
  /* @__PURE__ */ createElementVNode("path", {
55852
55987
  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 ",
55853
55988
  "fill-rule": "nonzero",
@@ -55856,15 +55991,15 @@ const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55856
55991
  transform: "matrix(1 0 0 1 263 268 )"
55857
55992
  })
55858
55993
  ], -1));
55859
- const _hoisted_93 = [
55860
- _hoisted_92
55994
+ const _hoisted_116 = [
55995
+ _hoisted_115
55861
55996
  ];
55862
- const _hoisted_94 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
55863
- const _hoisted_95 = { class: "flex flex-col px-5 pr-0 h-full" };
55864
- const _hoisted_96 = ["onClick"];
55865
- const _hoisted_97 = { class: "w-full h-full overflow-y-auto content" };
55866
- const _hoisted_98 = { class: "mb-[20px]" };
55867
- const _hoisted_99 = { class: "h-[10%] flex justify-center items-center" };
55997
+ const _hoisted_117 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
55998
+ const _hoisted_118 = { class: "flex flex-col px-5 pr-0 h-full" };
55999
+ const _hoisted_119 = ["onClick"];
56000
+ const _hoisted_120 = { class: "w-full h-full overflow-y-auto content" };
56001
+ const _hoisted_121 = { class: "mb-[20px]" };
56002
+ const _hoisted_122 = { class: "h-[10%] flex justify-center items-center" };
55868
56003
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55869
56004
  var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2, _r2, _s2, _t2, _u2;
55870
56005
  const _component_a_upload = __unplugin_components_0;
@@ -55944,6 +56079,22 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55944
56079
  ]),
55945
56080
  createElementVNode("div", _hoisted_11, [
55946
56081
  createElementVNode("div", _hoisted_12, [
56082
+ $setup.moduleManageList.length ? (openBlock(), createBlock(_component_a_badge, {
56083
+ key: 0,
56084
+ onClick: $setup.onClickManage,
56085
+ "number-style": {
56086
+ backgroundColor: "#52c41a",
56087
+ fontSize: "12px",
56088
+ padding: "0 4px"
56089
+ },
56090
+ class: "w-[20px] h-[20px] cursor-pointer",
56091
+ offset: [0, 0]
56092
+ }, {
56093
+ default: withCtx(() => [
56094
+ _hoisted_13
56095
+ ]),
56096
+ _: 1
56097
+ }, 8, ["onClick"])) : createCommentVNode("", true),
55947
56098
  createVNode(_component_a_badge, {
55948
56099
  onClick: $setup.onClickMessage,
55949
56100
  count: $setup.unReadCount,
@@ -55956,7 +56107,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55956
56107
  offset: [0, 0]
55957
56108
  }, {
55958
56109
  default: withCtx(() => [
55959
- _hoisted_13
56110
+ _hoisted_14
55960
56111
  ]),
55961
56112
  _: 1
55962
56113
  }, 8, ["onClick", "count"]),
@@ -55972,7 +56123,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55972
56123
  offset: [0, 0]
55973
56124
  }, {
55974
56125
  default: withCtx(() => [
55975
- _hoisted_14
56126
+ _hoisted_15
55976
56127
  ]),
55977
56128
  _: 1
55978
56129
  }, 8, ["onClick", "count"])
@@ -55980,13 +56131,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55980
56131
  createElementVNode("span", {
55981
56132
  class: "mt-[10px] relative",
55982
56133
  onClick: _cache[5] || (_cache[5] = (...args) => $setup.logout && $setup.logout(...args))
55983
- }, _hoisted_18)
56134
+ }, _hoisted_19)
55984
56135
  ])
55985
56136
  ]),
55986
- ((_i2 = (_h2 = $setup.modeuleInfos) == null ? void 0 : _h2.setOfBooks) == null ? void 0 : _i2.includes($setup.modeuleTypeValue)) && $setup.setofbooksTest && $setup.setofbooksTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_19, [
56137
+ ((_i2 = (_h2 = $setup.modeuleInfos) == null ? void 0 : _h2.setOfBooks) == null ? void 0 : _i2.includes($setup.modeuleTypeValue)) && $setup.setofbooksTest && $setup.setofbooksTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_20, [
55987
56138
  createElementVNode("div", null, [
55988
- _hoisted_20,
55989
- createElementVNode("span", _hoisted_21, "当前" + toDisplayString($props.setofbooksName) + ": " + toDisplayString((_k2 = (_j2 = $setup.setofbooksTest) == null ? void 0 : _j2.find((item) => item.id == $setup.setOfBookId)) == null ? void 0 : _k2.shortName), 1)
56139
+ _hoisted_21,
56140
+ createElementVNode("span", _hoisted_22, "当前" + toDisplayString($props.setofbooksName) + ": " + toDisplayString((_k2 = (_j2 = $setup.setofbooksTest) == null ? void 0 : _j2.find((item) => item.id == $setup.setOfBookId)) == null ? void 0 : _k2.shortName), 1)
55990
56141
  ]),
55991
56142
  $setup.setofbooksTest.length > 1 ? (openBlock(), createElementBlock("span", {
55992
56143
  key: 0,
@@ -55994,10 +56145,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55994
56145
  onClick: _cache[6] || (_cache[6] = (...args) => $setup.changeSetofbooks && $setup.changeSetofbooks(...args))
55995
56146
  }, "切换" + toDisplayString($props.setofbooksName), 1)) : createCommentVNode("", true)
55996
56147
  ])) : createCommentVNode("", true),
55997
- ((_m2 = (_l2 = $setup.modeuleInfos) == null ? void 0 : _l2.productionBases) == null ? void 0 : _m2.includes($setup.modeuleTypeValue)) && $setup.baseTest && ($setup.baseTest.length > 0 || $setup.isShowAllProductionBases) ? (openBlock(), createElementBlock("div", _hoisted_22, [
56148
+ ((_m2 = (_l2 = $setup.modeuleInfos) == null ? void 0 : _l2.productionBases) == null ? void 0 : _m2.includes($setup.modeuleTypeValue)) && $setup.baseTest && ($setup.baseTest.length > 0 || $setup.isShowAllProductionBases) ? (openBlock(), createElementBlock("div", _hoisted_23, [
55998
56149
  createElementVNode("div", null, [
55999
- _hoisted_23,
56000
- createElementVNode("span", _hoisted_24, [
56150
+ _hoisted_24,
56151
+ createElementVNode("span", _hoisted_25, [
56001
56152
  createTextVNode(" 当前基地: "),
56002
56153
  $setup.isShowAllProductionBases ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
56003
56154
  createTextVNode(toDisplayString($setup.baseId === $setup.allBaseId ? "全基地" : (_o2 = (_n = $setup.baseTest) == null ? void 0 : _n.find((item) => item.id == $setup.baseId)) == null ? void 0 : _o2.shortName), 1)
@@ -56012,10 +56163,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56012
56163
  onClick: _cache[7] || (_cache[7] = (...args) => $setup.openBaseModal && $setup.openBaseModal(...args))
56013
56164
  }, "切换基地")) : createCommentVNode("", true)
56014
56165
  ])) : createCommentVNode("", true),
56015
- ((_s2 = (_r2 = $setup.modeuleInfos) == null ? void 0 : _r2.projects) == null ? void 0 : _s2.includes($setup.modeuleTypeValue)) && $setup.gjTest && $setup.gjTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_25, [
56166
+ ((_s2 = (_r2 = $setup.modeuleInfos) == null ? void 0 : _r2.projects) == null ? void 0 : _s2.includes($setup.modeuleTypeValue)) && $setup.gjTest && $setup.gjTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_26, [
56016
56167
  createElementVNode("div", null, [
56017
- _hoisted_26,
56018
- createElementVNode("span", _hoisted_27, " 当前项目: " + toDisplayString((_u2 = (_t2 = $setup.gjTest) == null ? void 0 : _t2.find((item) => item.id == $setup.gjId)) == null ? void 0 : _u2.shortName), 1)
56168
+ _hoisted_27,
56169
+ createElementVNode("span", _hoisted_28, " 当前项目: " + toDisplayString((_u2 = (_t2 = $setup.gjTest) == null ? void 0 : _t2.find((item) => item.id == $setup.gjId)) == null ? void 0 : _u2.shortName), 1)
56019
56170
  ]),
56020
56171
  $setup.gjTest.length > 1 ? (openBlock(), createElementBlock("span", {
56021
56172
  key: 0,
@@ -56042,11 +56193,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56042
56193
  onCancel: $setup.cancelPWDVisible
56043
56194
  }, {
56044
56195
  title: withCtx(() => [
56045
- _hoisted_28
56196
+ _hoisted_29
56046
56197
  ]),
56047
56198
  body: withCtx(() => [
56048
- _hoisted_29,
56049
- createElementVNode("div", _hoisted_30, [
56199
+ _hoisted_30,
56200
+ createElementVNode("div", _hoisted_31, [
56050
56201
  createVNode(_component_a_form, {
56051
56202
  style: { "width": "380px", "margin": "0 auto" },
56052
56203
  ref: "changePWDref",
@@ -56097,7 +56248,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56097
56248
  ]),
56098
56249
  _: 1
56099
56250
  }, 8, ["model"]),
56100
- createElementVNode("div", _hoisted_31, [
56251
+ createElementVNode("div", _hoisted_32, [
56101
56252
  createElementVNode("div", {
56102
56253
  class: "submit_btn",
56103
56254
  onClick: _cache[11] || (_cache[11] = (...args) => $setup.changePWDOKHandle && $setup.changePWDOKHandle(...args))
@@ -56117,8 +56268,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56117
56268
  "remove-padding": false
56118
56269
  }, {
56119
56270
  title: withCtx(() => [
56120
- createElementVNode("div", _hoisted_32, [
56121
- _hoisted_33,
56271
+ createElementVNode("div", _hoisted_33, [
56272
+ _hoisted_34,
56122
56273
  createElementVNode("div", {
56123
56274
  class: "h-[60px] w-[80px] zIndex",
56124
56275
  onClick: _cache[14] || (_cache[14] = ($event) => $setup.closeSysetmModal())
@@ -56126,7 +56277,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56126
56277
  ])
56127
56278
  ]),
56128
56279
  body: withCtx(() => [
56129
- createElementVNode("div", _hoisted_34, [
56280
+ createElementVNode("div", _hoisted_35, [
56130
56281
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.permissionModuleList, (i2) => {
56131
56282
  return openBlock(), createElementBlock("div", {
56132
56283
  key: i2.id,
@@ -56134,27 +56285,27 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56134
56285
  style: { "border-radius": "10px" },
56135
56286
  onClick: ($event) => $setup.changesystem(i2)
56136
56287
  }, [
56137
- i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_36, [
56138
- createElementVNode("div", _hoisted_37, [
56288
+ i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_37, [
56289
+ createElementVNode("div", _hoisted_38, [
56139
56290
  createElementVNode("img", {
56140
56291
  class: "mr-4",
56141
56292
  src: i2.icon
56142
- }, null, 8, _hoisted_38),
56293
+ }, null, 8, _hoisted_39),
56143
56294
  createTextVNode(" " + toDisplayString(i2.moduleName), 1)
56144
56295
  ]),
56145
- _hoisted_39
56146
- ])) : (openBlock(), createElementBlock("div", _hoisted_40, [
56147
- createElementVNode("div", _hoisted_41, [
56296
+ _hoisted_40
56297
+ ])) : (openBlock(), createElementBlock("div", _hoisted_41, [
56298
+ createElementVNode("div", _hoisted_42, [
56148
56299
  createElementVNode("img", {
56149
56300
  class: "mr-4",
56150
56301
  src: i2.icon
56151
- }, null, 8, _hoisted_42),
56302
+ }, null, 8, _hoisted_43),
56152
56303
  createTextVNode(toDisplayString(i2.moduleName), 1)
56153
56304
  ]),
56154
- _hoisted_43
56305
+ _hoisted_44
56155
56306
  ])),
56156
56307
  createElementVNode("div", null, [
56157
- createElementVNode("div", _hoisted_44, [
56308
+ createElementVNode("div", _hoisted_45, [
56158
56309
  (openBlock(true), createElementBlock(Fragment, null, renderList(i2.childGroups, (e10) => {
56159
56310
  return openBlock(), createElementBlock("div", {
56160
56311
  key: e10.id,
@@ -56167,13 +56318,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56167
56318
  class: "mr-2",
56168
56319
  style: { "width": "16px", "height": "16px" },
56169
56320
  src: e10.icon
56170
- }, null, 8, _hoisted_45),
56321
+ }, null, 8, _hoisted_46),
56171
56322
  createTextVNode(" " + toDisplayString(e10.moduleName), 1)
56172
56323
  ], 2);
56173
56324
  }), 128))
56174
56325
  ])
56175
56326
  ])
56176
- ], 8, _hoisted_35);
56327
+ ], 8, _hoisted_36);
56177
56328
  }), 128))
56178
56329
  ])
56179
56330
  ]),
@@ -56186,8 +56337,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56186
56337
  "remove-padding": false
56187
56338
  }, {
56188
56339
  title: withCtx(() => [
56189
- createElementVNode("div", _hoisted_46, [
56190
- _hoisted_47,
56340
+ createElementVNode("div", _hoisted_47, [
56341
+ _hoisted_48,
56191
56342
  createElementVNode("div", {
56192
56343
  class: "h-[60px] w-[80px] zIndex",
56193
56344
  onClick: _cache[16] || (_cache[16] = ($event) => $setup.closeModule())
@@ -56195,54 +56346,54 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56195
56346
  ])
56196
56347
  ]),
56197
56348
  body: withCtx(() => [
56198
- createElementVNode("div", _hoisted_48, [
56349
+ createElementVNode("div", _hoisted_49, [
56199
56350
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleTestS, (i2) => {
56200
56351
  return openBlock(), createElementBlock("div", {
56201
56352
  key: i2.id,
56202
56353
  class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56203
56354
  onClick: ($event) => $setup.changeModule(i2)
56204
56355
  }, [
56205
- i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_50, [
56206
- createElementVNode("div", _hoisted_51, [
56356
+ i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_51, [
56357
+ createElementVNode("div", _hoisted_52, [
56207
56358
  createElementVNode("img", {
56208
56359
  class: "w-[80px] h-[78px]",
56209
56360
  src: i2.icon
56210
- }, null, 8, _hoisted_52),
56361
+ }, null, 8, _hoisted_53),
56211
56362
  i2.icon1 ? (openBlock(), createElementBlock("img", {
56212
56363
  key: 0,
56213
56364
  class: "w-[80px] h-[27px] absolute top-[68px]",
56214
56365
  src: i2.icon1
56215
- }, null, 8, _hoisted_53)) : createCommentVNode("", true)
56366
+ }, null, 8, _hoisted_54)) : createCommentVNode("", true)
56216
56367
  ]),
56217
- createElementVNode("div", _hoisted_54, [
56218
- createElementVNode("div", _hoisted_55, [
56368
+ createElementVNode("div", _hoisted_55, [
56369
+ createElementVNode("div", _hoisted_56, [
56219
56370
  createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56220
- createElementVNode("div", _hoisted_56, toDisplayString(i2.moduleName), 1)
56371
+ createElementVNode("div", _hoisted_57, toDisplayString(i2.moduleName), 1)
56221
56372
  ])
56222
56373
  ])
56223
- ])) : (openBlock(), createElementBlock("div", _hoisted_57, [
56224
- createElementVNode("div", _hoisted_58, [
56374
+ ])) : (openBlock(), createElementBlock("div", _hoisted_58, [
56375
+ createElementVNode("div", _hoisted_59, [
56225
56376
  createElementVNode("img", {
56226
56377
  class: "w-[80px] h-[78px]",
56227
56378
  src: i2.icon
56228
- }, null, 8, _hoisted_59),
56379
+ }, null, 8, _hoisted_60),
56229
56380
  i2.icon1 ? (openBlock(), createElementBlock("img", {
56230
56381
  key: 0,
56231
56382
  class: "w-[80px] h-[27px] absolute top-[68px]",
56232
56383
  src: i2.icon1
56233
- }, null, 8, _hoisted_60)) : createCommentVNode("", true)
56384
+ }, null, 8, _hoisted_61)) : createCommentVNode("", true)
56234
56385
  ]),
56235
- createElementVNode("div", _hoisted_61, [
56236
- createElementVNode("div", _hoisted_62, [
56386
+ createElementVNode("div", _hoisted_62, [
56387
+ createElementVNode("div", _hoisted_63, [
56237
56388
  i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56238
56389
  key: 0,
56239
56390
  class: "mediumTitleTS mr-[10px]"
56240
- })) : (openBlock(), createElementBlock("div", _hoisted_63)),
56391
+ })) : (openBlock(), createElementBlock("div", _hoisted_64)),
56241
56392
  createTextVNode(" " + toDisplayString(i2.moduleName), 1)
56242
56393
  ])
56243
56394
  ])
56244
56395
  ]))
56245
- ], 8, _hoisted_49);
56396
+ ], 8, _hoisted_50);
56246
56397
  }), 128))
56247
56398
  ])
56248
56399
  ]),
@@ -56254,8 +56405,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56254
56405
  "remove-padding": false
56255
56406
  }, {
56256
56407
  title: withCtx(() => [
56257
- createElementVNode("div", _hoisted_64, [
56258
- _hoisted_65,
56408
+ createElementVNode("div", _hoisted_65, [
56409
+ _hoisted_66,
56259
56410
  createElementVNode("div", {
56260
56411
  class: "h-[60px] w-[80px] zIndex",
56261
56412
  onClick: _cache[18] || (_cache[18] = (...args) => $setup.cloneBaseModal && $setup.cloneBaseModal(...args))
@@ -56263,7 +56414,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56263
56414
  ])
56264
56415
  ]),
56265
56416
  body: withCtx(() => [
56266
- createElementVNode("div", _hoisted_66, [
56417
+ createElementVNode("div", _hoisted_67, [
56267
56418
  $setup.isShowAllProductionBasesModel ? (openBlock(), createElementBlock("div", {
56268
56419
  key: 0,
56269
56420
  class: "w-[320px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer rt",
@@ -56289,7 +56440,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56289
56440
  ])
56290
56441
  }, " 全部基地 ", 2)
56291
56442
  ], 2),
56292
- createElementVNode("div", _hoisted_67, [
56443
+ createElementVNode("div", _hoisted_68, [
56293
56444
  createElementVNode("div", {
56294
56445
  class: normalizeClass([
56295
56446
  "flex",
@@ -56302,7 +56453,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56302
56453
  $setup.baseId === $setup.allBaseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56303
56454
  key: 0,
56304
56455
  class: "mediumTitleTS mr-[10px]"
56305
- })) : (openBlock(), createElementBlock("div", _hoisted_68)),
56456
+ })) : (openBlock(), createElementBlock("div", _hoisted_69)),
56306
56457
  createTextVNode(" 全部基地 ")
56307
56458
  ], 2)
56308
56459
  ])
@@ -56330,7 +56481,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56330
56481
  class: normalizeClass(["text-xl", `${i2.id == $setup.baseId ? "focusTC" : "clickTC"}`])
56331
56482
  }, toDisplayString(i2.title), 3)
56332
56483
  ], 2),
56333
- createElementVNode("div", _hoisted_70, [
56484
+ createElementVNode("div", _hoisted_71, [
56334
56485
  createElementVNode("div", {
56335
56486
  class: normalizeClass([
56336
56487
  "flex",
@@ -56343,11 +56494,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56343
56494
  i2.id == $setup.baseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56344
56495
  key: 0,
56345
56496
  class: "mediumTitleTS mr-[10px]"
56346
- })) : (openBlock(), createElementBlock("div", _hoisted_71)),
56497
+ })) : (openBlock(), createElementBlock("div", _hoisted_72)),
56347
56498
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56348
56499
  ], 2)
56349
56500
  ])
56350
- ], 8, _hoisted_69);
56501
+ ], 8, _hoisted_70);
56351
56502
  }), 128))
56352
56503
  ])
56353
56504
  ]),
@@ -56359,8 +56510,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56359
56510
  "remove-padding": false
56360
56511
  }, {
56361
56512
  title: withCtx(() => [
56362
- createElementVNode("div", _hoisted_72, [
56363
- _hoisted_73,
56513
+ createElementVNode("div", _hoisted_73, [
56514
+ _hoisted_74,
56364
56515
  createElementVNode("div", {
56365
56516
  class: "h-[60px] w-[80px] zIndex",
56366
56517
  onClick: _cache[21] || (_cache[21] = ($event) => $setup.closeDgVisible())
@@ -56368,7 +56519,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56368
56519
  ])
56369
56520
  ]),
56370
56521
  body: withCtx(() => [
56371
- createElementVNode("div", _hoisted_74, [
56522
+ createElementVNode("div", _hoisted_75, [
56372
56523
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.gjTest, (i2) => {
56373
56524
  return openBlock(), createElementBlock("div", {
56374
56525
  key: i2.id,
@@ -56392,7 +56543,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56392
56543
  class: normalizeClass(["text-xl", `${i2.id == $setup.gjId ? "focusTC" : "clickTC"}`])
56393
56544
  }, toDisplayString(i2.title), 3)
56394
56545
  ], 2),
56395
- createElementVNode("div", _hoisted_76, [
56546
+ createElementVNode("div", _hoisted_77, [
56396
56547
  createElementVNode("div", {
56397
56548
  class: normalizeClass([
56398
56549
  "flex",
@@ -56405,11 +56556,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56405
56556
  i2.id == $setup.gjId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56406
56557
  key: 0,
56407
56558
  class: "mediumTitleTS mr-[10px]"
56408
- })) : (openBlock(), createElementBlock("div", _hoisted_77)),
56559
+ })) : (openBlock(), createElementBlock("div", _hoisted_78)),
56409
56560
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56410
56561
  ], 2)
56411
56562
  ])
56412
- ], 8, _hoisted_75);
56563
+ ], 8, _hoisted_76);
56413
56564
  }), 128))
56414
56565
  ])
56415
56566
  ]),
@@ -56421,10 +56572,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56421
56572
  "remove-padding": false
56422
56573
  }, {
56423
56574
  title: withCtx(() => [
56424
- createElementVNode("div", _hoisted_78, [
56425
- createElementVNode("div", _hoisted_79, [
56426
- _hoisted_80,
56427
- createElementVNode("span", _hoisted_81, "切换" + toDisplayString($props.setofbooksName), 1)
56575
+ createElementVNode("div", _hoisted_79, [
56576
+ createElementVNode("div", _hoisted_80, [
56577
+ _hoisted_81,
56578
+ createElementVNode("span", _hoisted_82, "切换" + toDisplayString($props.setofbooksName), 1)
56428
56579
  ]),
56429
56580
  createElementVNode("div", {
56430
56581
  class: "h-[60px] w-[80px] zIndex",
@@ -56433,7 +56584,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56433
56584
  ])
56434
56585
  ]),
56435
56586
  body: withCtx(() => [
56436
- createElementVNode("div", _hoisted_82, [
56587
+ createElementVNode("div", _hoisted_83, [
56437
56588
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.setofbooksTest, (i2) => {
56438
56589
  return openBlock(), createElementBlock("div", {
56439
56590
  key: i2.id,
@@ -56460,7 +56611,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56460
56611
  ])
56461
56612
  }, toDisplayString(i2.title), 3)
56462
56613
  ], 2),
56463
- createElementVNode("div", _hoisted_84, [
56614
+ createElementVNode("div", _hoisted_85, [
56464
56615
  createElementVNode("div", {
56465
56616
  class: normalizeClass([
56466
56617
  "flex",
@@ -56473,40 +56624,121 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56473
56624
  i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56474
56625
  key: 0,
56475
56626
  class: "mediumTitleTS mr-[10px]"
56476
- })) : (openBlock(), createElementBlock("div", _hoisted_85)),
56627
+ })) : (openBlock(), createElementBlock("div", _hoisted_86)),
56477
56628
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56478
56629
  ], 2)
56479
56630
  ])
56480
- ], 8, _hoisted_83);
56631
+ ], 8, _hoisted_84);
56481
56632
  }), 128))
56482
56633
  ])
56483
56634
  ]),
56484
56635
  _: 1
56485
56636
  }, 8, ["show"]),
56637
+ createVNode(_component_MrpModal, {
56638
+ show: $setup.moduleManageVisible,
56639
+ "onUpdate:show": _cache[27] || (_cache[27] = ($event) => $setup.moduleManageVisible = $event),
56640
+ onCancelHandle: $setup.moduleManageHandle,
56641
+ "remove-padding": false
56642
+ }, {
56643
+ title: withCtx(() => [
56644
+ createElementVNode("div", _hoisted_87, [
56645
+ _hoisted_88,
56646
+ createElementVNode("div", {
56647
+ class: "h-[60px] w-[80px] zIndex",
56648
+ onClick: _cache[25] || (_cache[25] = ($event) => $setup.moduleManageHandle())
56649
+ })
56650
+ ])
56651
+ ]),
56652
+ body: withCtx(() => [
56653
+ createElementVNode("div", _hoisted_89, [
56654
+ createElementVNode("div", {
56655
+ class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56656
+ onClick: _cache[26] || (_cache[26] = ($event) => $setup.onChangeMangeModuleBusiness())
56657
+ }, [
56658
+ _hoisted_90,
56659
+ createElementVNode("div", _hoisted_91, [
56660
+ createElementVNode("div", _hoisted_92, [
56661
+ createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56662
+ _hoisted_93
56663
+ ])
56664
+ ])
56665
+ ]),
56666
+ (openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleManageList, (i2) => {
56667
+ return openBlock(), createElementBlock("div", {
56668
+ key: i2.id,
56669
+ class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56670
+ onClick: ($event) => $setup.onChangeMangeModule(i2)
56671
+ }, [
56672
+ i2.id === $setup.moduleManageSelect ? (openBlock(), createElementBlock("div", _hoisted_95, [
56673
+ createElementVNode("div", _hoisted_96, [
56674
+ createElementVNode("img", {
56675
+ class: "w-[80px] h-[78px]",
56676
+ src: i2.icon
56677
+ }, null, 8, _hoisted_97),
56678
+ i2.icon1 ? (openBlock(), createElementBlock("img", {
56679
+ key: 0,
56680
+ class: "w-[80px] h-[27px] absolute top-[68px]",
56681
+ src: i2.icon1
56682
+ }, null, 8, _hoisted_98)) : createCommentVNode("", true)
56683
+ ]),
56684
+ createElementVNode("div", _hoisted_99, [
56685
+ createElementVNode("div", _hoisted_100, [
56686
+ createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56687
+ createElementVNode("div", _hoisted_101, toDisplayString(i2.name), 1)
56688
+ ])
56689
+ ])
56690
+ ])) : (openBlock(), createElementBlock("div", _hoisted_102, [
56691
+ createElementVNode("div", _hoisted_103, [
56692
+ createElementVNode("img", {
56693
+ class: "w-[80px] h-[78px]",
56694
+ src: i2.icon
56695
+ }, null, 8, _hoisted_104),
56696
+ i2.icon1 ? (openBlock(), createElementBlock("img", {
56697
+ key: 0,
56698
+ class: "w-[80px] h-[27px] absolute top-[68px]",
56699
+ src: i2.icon1
56700
+ }, null, 8, _hoisted_105)) : createCommentVNode("", true)
56701
+ ]),
56702
+ createElementVNode("div", _hoisted_106, [
56703
+ createElementVNode("div", _hoisted_107, [
56704
+ i2.id == $setup.moduleManageSelect ? (openBlock(), createBlock(_component_check_circle_outlined, {
56705
+ key: 0,
56706
+ class: "mediumTitleTS mr-[10px]"
56707
+ })) : (openBlock(), createElementBlock("div", _hoisted_108)),
56708
+ createTextVNode(" " + toDisplayString(i2.name), 1)
56709
+ ])
56710
+ ])
56711
+ ]))
56712
+ ], 8, _hoisted_94);
56713
+ }), 128))
56714
+ ])
56715
+ ]),
56716
+ _: 1
56717
+ }, 8, ["show", "onCancelHandle"]),
56486
56718
  $setup.isModuleModuleVersion ? (openBlock(), createBlock(_component_ModuleVersionModal, {
56487
56719
  key: 0,
56488
56720
  show: $setup.isModuleModuleVersion,
56489
- "onUpdate:show": _cache[25] || (_cache[25] = ($event) => $setup.isModuleModuleVersion = $event),
56721
+ "onUpdate:show": _cache[28] || (_cache[28] = ($event) => $setup.isModuleModuleVersion = $event),
56490
56722
  onGetItem: $setup.getModuleVersion,
56491
56723
  title: "更新记录"
56492
56724
  }, null, 8, ["show", "onGetItem"])) : createCommentVNode("", true),
56493
56725
  createVNode(_component_MrpModal, {
56494
56726
  show: $setup.isModuleVersionUpdate,
56495
- "onUpdate:show": _cache[27] || (_cache[27] = ($event) => $setup.isModuleVersionUpdate = $event),
56727
+ "onUpdate:show": _cache[30] || (_cache[30] = ($event) => $setup.isModuleVersionUpdate = $event),
56496
56728
  "remove-padding": false,
56497
56729
  isScroll: false
56498
56730
  }, {
56499
56731
  title: withCtx(() => [
56500
- createElementVNode("div", _hoisted_86, [
56501
- createElementVNode("div", _hoisted_87, [
56502
- (openBlock(), createElementBlock("svg", _hoisted_88, _hoisted_90)),
56503
- (openBlock(), createElementBlock("svg", _hoisted_91, _hoisted_93))
56732
+ createElementVNode("div", _hoisted_109, [
56733
+ createElementVNode("div", _hoisted_110, [
56734
+ (openBlock(), createElementBlock("svg", _hoisted_111, _hoisted_113)),
56735
+ (openBlock(), createElementBlock("svg", _hoisted_114, _hoisted_116))
56504
56736
  ]),
56505
- _hoisted_94
56737
+ _hoisted_117
56506
56738
  ])
56507
56739
  ]),
56508
56740
  body: withCtx(() => [
56509
- createElementVNode("div", _hoisted_95, [
56741
+ createElementVNode("div", _hoisted_118, [
56510
56742
  createVNode(_component_a_row, {
56511
56743
  gutter: 24,
56512
56744
  style: { "height": "90%", "border-bottom": "1px solid #eadcb9" }
@@ -56521,7 +56753,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56521
56753
  return openBlock(), createElementBlock("div", {
56522
56754
  onClick: ($event) => $setup.changeTab(item, i2),
56523
56755
  class: normalizeClass(["tab-items", $setup.activeKey == i2 ? "tab-items-active" : ""])
56524
- }, toDisplayString(item.version), 11, _hoisted_96);
56756
+ }, toDisplayString(item.version), 11, _hoisted_119);
56525
56757
  }), 256))
56526
56758
  ]),
56527
56759
  _: 1
@@ -56535,8 +56767,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56535
56767
  type: "vertical",
56536
56768
  style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
56537
56769
  }),
56538
- createElementVNode("div", _hoisted_97, [
56539
- createElementVNode("div", _hoisted_98, [
56770
+ createElementVNode("div", _hoisted_120, [
56771
+ createElementVNode("div", _hoisted_121, [
56540
56772
  createVNode(_component_Toolbar, {
56541
56773
  editor: $setup.editorRef,
56542
56774
  defaultConfig: { readOnly: true },
@@ -56544,7 +56776,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56544
56776
  }, null, 8, ["editor"]),
56545
56777
  createVNode(_component_Editor, {
56546
56778
  modelValue: $setup.content.description,
56547
- "onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => $setup.content.description = $event),
56779
+ "onUpdate:modelValue": _cache[29] || (_cache[29] = ($event) => $setup.content.description = $event),
56548
56780
  defaultConfig: { readOnly: true },
56549
56781
  style: { "height": "100%" }
56550
56782
  }, null, 8, ["modelValue"])
@@ -56556,7 +56788,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56556
56788
  ]),
56557
56789
  _: 1
56558
56790
  }),
56559
- createElementVNode("div", _hoisted_99, [
56791
+ createElementVNode("div", _hoisted_122, [
56560
56792
  createVNode(_component_a_button, {
56561
56793
  class: "w-[140px] mr-[50px] btn1",
56562
56794
  style: { "border-radius": "5px" },
@@ -56584,7 +56816,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56584
56816
  }, 8, ["show"])
56585
56817
  ], 64);
56586
56818
  }
56587
- const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-128c9be4"]]);
56819
+ const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f0bb3a4c"]]);
56588
56820
  const style = "";
56589
56821
  const components = [TSider];
56590
56822
  installComponents();