tx-sider 2.3.33 → 2.4.2

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
@@ -54604,7 +54604,7 @@ const _sfc_main = {
54604
54604
  ],
54605
54605
  // replace: 路由replace; push:路由push
54606
54606
  setup(props, ctx) {
54607
- var _a2;
54607
+ var _a2, _b2;
54608
54608
  const editorRef = ref(null);
54609
54609
  useRouter();
54610
54610
  const route = useRoute();
@@ -54684,10 +54684,10 @@ const _sfc_main = {
54684
54684
  modeuleInfos.value = await getModeuleInfo();
54685
54685
  console.log(modeuleInfos.value, "modeuleInfos.value");
54686
54686
  return (moduleKey) => {
54687
- var _a3, _b2, _c2, _d2, _e2, _f2;
54687
+ var _a3, _b3, _c2, _d2, _e2, _f2;
54688
54688
  return {
54689
54689
  isSetOfBooks: modeuleInfos.value.setOfBooks.includes(moduleKey),
54690
- 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),
54691
54691
  isProjects: (_d2 = (_c2 = modeuleInfos.value) == null ? void 0 : _c2.projects) == null ? void 0 : _d2.includes(moduleKey),
54692
54692
  isAllProductionBases: (_f2 = (_e2 = modeuleInfos.value) == null ? void 0 : _e2.allProductionBases) == null ? void 0 : _f2.includes(moduleKey)
54693
54693
  };
@@ -54729,7 +54729,7 @@ const _sfc_main = {
54729
54729
  }
54730
54730
  };
54731
54731
  onMounted(async () => {
54732
- var _a3, _b2, _c2, _d2, _e2, _f2;
54732
+ var _a3, _b3, _c2, _d2, _e2, _f2;
54733
54733
  await getUnReadMessage(0);
54734
54734
  await getUserFlowData();
54735
54735
  getModeuleInfoDataHandle = await getModeuleInfoData();
@@ -54756,9 +54756,9 @@ const _sfc_main = {
54756
54756
  }
54757
54757
  }
54758
54758
  if (isSystems.value) {
54759
- moduleTestS.value = ((_b2 = permissionModuleList.value.find(
54759
+ moduleTestS.value = ((_b3 = permissionModuleList.value.find(
54760
54760
  (_x2) => _x2.permissionModuleName === selectedSystems.value
54761
- )) == null ? void 0 : _b2.childGroups) ?? [];
54761
+ )) == null ? void 0 : _b3.childGroups) ?? [];
54762
54762
  }
54763
54763
  if (permissionModuleList.value.length == 1) {
54764
54764
  sysShow.value = false;
@@ -54868,7 +54868,7 @@ const _sfc_main = {
54868
54868
  }
54869
54869
  }
54870
54870
  const changeModule = async (i2) => {
54871
- var _a3, _b2;
54871
+ var _a3, _b3;
54872
54872
  let { permissionModuleName, routerUrl, location: location2, moduleName } = i2;
54873
54873
  if (!getModeuleInfoDataHandle) {
54874
54874
  getModeuleInfoDataHandle = await getModeuleInfoData();
@@ -54920,7 +54920,7 @@ const _sfc_main = {
54920
54920
  }
54921
54921
  if (ModeuleInfo.isProjects) {
54922
54922
  if (gjTest.value.length == 1) {
54923
- 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}`;
54924
54924
  return;
54925
54925
  }
54926
54926
  data3.dgVisible = true;
@@ -55281,6 +55281,15 @@ const _sfc_main = {
55281
55281
  data3.systemVisible = true;
55282
55282
  };
55283
55283
  const onFunOpen = async () => {
55284
+ var _a3;
55285
+ moduleManageList.value = ((_a3 = JSON.parse(localStorage.getItem("userInfos") ?? "{}")) == null ? void 0 : _a3.manageFunctions) ?? [];
55286
+ if (moduleManageList.value.length) {
55287
+ onClickManage();
55288
+ } else {
55289
+ await toBusiness();
55290
+ }
55291
+ };
55292
+ const toBusiness = async () => {
55284
55293
  console.log("🚀🚀🚀🚀", permissionModuleList.value);
55285
55294
  if (permissionModuleList.value.length === 0) {
55286
55295
  const res = await getPermissionModuleList();
@@ -55398,8 +55407,48 @@ const _sfc_main = {
55398
55407
  isModuleVersionUpdate.value = false;
55399
55408
  }
55400
55409
  };
55410
+ const moduleManageVisible = ref(false);
55411
+ const moduleManageSelect = ref();
55412
+ const moduleManageHandle = () => {
55413
+ moduleManageVisible.value = false;
55414
+ };
55415
+ const moduleManageList = ref(
55416
+ ((_b2 = JSON.parse(localStorage.getItem("userInfos") ?? "{}")) == null ? void 0 : _b2.manageFunctions) ?? []
55417
+ );
55418
+ const gotoManage = (module2) => {
55419
+ const md2 = localStorage.getItem("loginForm");
55420
+ window.location.href = module2.routeAddress + `?md=${md2}&routerUrl=${module2.routeAddress}`;
55421
+ };
55422
+ const onChangeMangeModule = (module2) => {
55423
+ if (!module2.routeAddress) {
55424
+ return message.warn("当前管理端地址缺失");
55425
+ }
55426
+ moduleManageSelect.value = module2.id;
55427
+ moduleManageVisible.value = false;
55428
+ gotoManage(module2);
55429
+ };
55430
+ const onChangeMangeModuleBusiness = async () => {
55431
+ moduleManageVisible.value = false;
55432
+ await toBusiness();
55433
+ };
55434
+ const onClickManage = () => {
55435
+ if (moduleManageList.value.length === 1) {
55436
+ gotoManage(moduleManageList.value[0]);
55437
+ } else {
55438
+ moduleManageVisible.value = true;
55439
+ }
55440
+ };
55401
55441
  return {
55402
55442
  ...refData,
55443
+ // 管理端
55444
+ moduleManageVisible,
55445
+ moduleManageSelect,
55446
+ moduleManageHandle,
55447
+ moduleManageList,
55448
+ onChangeMangeModule,
55449
+ onClickManage,
55450
+ onChangeMangeModuleBusiness,
55451
+ // 管理端
55403
55452
  beforeUpload,
55404
55453
  customRequest,
55405
55454
  fileList,
@@ -55478,7 +55527,7 @@ const _sfc_main = {
55478
55527
  };
55479
55528
  }
55480
55529
  };
55481
- const _withScopeId = (n10) => (pushScopeId("data-v-128c9be4"), n10 = n10(), popScopeId(), n10);
55530
+ const _withScopeId = (n10) => (pushScopeId("data-v-f4c97d4e"), n10 = n10(), popScopeId(), n10);
55482
55531
  const _hoisted_1 = {
55483
55532
  class: "bg-white defaultTS funcTC relative",
55484
55533
  style: { "padding-bottom": "10px", "margin-bottom": "10px" }
@@ -55515,6 +55564,22 @@ const _hoisted_10 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55515
55564
  const _hoisted_11 = { class: "flex flex-col mt-1" };
55516
55565
  const _hoisted_12 = { style: { "display": "flex", "justify-content": "space-between" } };
55517
55566
  const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55567
+ t: "1757562009739",
55568
+ class: "icon",
55569
+ viewBox: "0 0 1024 1024",
55570
+ version: "1.1",
55571
+ xmlns: "http://www.w3.org/2000/svg",
55572
+ "p-id": "4641",
55573
+ width: "20",
55574
+ height: "20"
55575
+ }, [
55576
+ /* @__PURE__ */ createElementVNode("path", {
55577
+ 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",
55578
+ fill: "#97D2FD",
55579
+ "p-id": "4642"
55580
+ })
55581
+ ], -1));
55582
+ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55518
55583
  version: "1.1",
55519
55584
  xmlns: "http://www.w3.org/2000/svg",
55520
55585
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
@@ -55531,7 +55596,7 @@ const _hoisted_13 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55531
55596
  })
55532
55597
  ])
55533
55598
  ], -1));
55534
- const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55599
+ const _hoisted_15 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55535
55600
  version: "1.1",
55536
55601
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55537
55602
  width: "20px",
@@ -55548,15 +55613,15 @@ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55548
55613
  })
55549
55614
  ])
55550
55615
  ], -1));
55551
- 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);
55552
- const _hoisted_18 = [
55553
- _hoisted_15
55616
+ 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-f4c97d4e><g transform="matrix(1 0 0 1 -221 -57 )" data-v-f4c97d4e><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-f4c97d4e></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-f4c97d4e><g transform="matrix(1 0 0 1 -228 -55 )" data-v-f4c97d4e><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-f4c97d4e></path></g></svg><span class="ml-[5px] cursor-pointer" data-v-f4c97d4e>退出</span>', 3);
55617
+ const _hoisted_19 = [
55618
+ _hoisted_16
55554
55619
  ];
55555
- const _hoisted_19 = {
55620
+ const _hoisted_20 = {
55556
55621
  key: 0,
55557
55622
  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]"
55558
55623
  };
55559
- const _hoisted_20 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55624
+ const _hoisted_21 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55560
55625
  class: "inline-block",
55561
55626
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55562
55627
  xmlns: "http://www.w3.org/2000/svg",
@@ -55574,12 +55639,12 @@ const _hoisted_20 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55574
55639
  })
55575
55640
  ])
55576
55641
  ], -1));
55577
- const _hoisted_21 = { class: "focusTC ml-[6px]" };
55578
- const _hoisted_22 = {
55642
+ const _hoisted_22 = { class: "focusTC ml-[6px]" };
55643
+ const _hoisted_23 = {
55579
55644
  key: 1,
55580
55645
  class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
55581
55646
  };
55582
- const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55647
+ const _hoisted_24 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55583
55648
  class: "inline-block",
55584
55649
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55585
55650
  xmlns: "http://www.w3.org/2000/svg",
@@ -55597,12 +55662,12 @@ const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55597
55662
  })
55598
55663
  ])
55599
55664
  ], -1));
55600
- const _hoisted_24 = { class: "ml-[6px] focusTC" };
55601
- const _hoisted_25 = {
55665
+ const _hoisted_25 = { class: "ml-[6px] focusTC" };
55666
+ const _hoisted_26 = {
55602
55667
  key: 2,
55603
55668
  class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
55604
55669
  };
55605
- const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55670
+ const _hoisted_27 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
55606
55671
  class: "inline-block",
55607
55672
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55608
55673
  xmlns: "http://www.w3.org/2000/svg",
@@ -55620,8 +55685,8 @@ const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55620
55685
  })
55621
55686
  ])
55622
55687
  ], -1));
55623
- const _hoisted_27 = { class: "ml-[6px] focusTC" };
55624
- const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
55688
+ const _hoisted_28 = { class: "ml-[6px] focusTC" };
55689
+ const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
55625
55690
  /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55626
55691
  /* @__PURE__ */ createElementVNode("img", {
55627
55692
  src: _imports_0,
@@ -55630,29 +55695,29 @@ const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55630
55695
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "修改密码")
55631
55696
  ])
55632
55697
  ], -1));
55633
- const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
55634
- const _hoisted_30 = { class: "h-[300px]" };
55635
- const _hoisted_31 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
55636
- const _hoisted_32 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55637
- const _hoisted_33 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55698
+ const _hoisted_30 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
55699
+ const _hoisted_31 = { class: "h-[300px]" };
55700
+ const _hoisted_32 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
55701
+ const _hoisted_33 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55702
+ const _hoisted_34 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55638
55703
  /* @__PURE__ */ createElementVNode("img", {
55639
55704
  src: _imports_0,
55640
55705
  alt: ""
55641
55706
  }),
55642
55707
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换系统")
55643
55708
  ], -1));
55644
- const _hoisted_34 = {
55709
+ const _hoisted_35 = {
55645
55710
  class: "flex flex-wrap justify-center",
55646
55711
  style: { "padding": "7.7rem" }
55647
55712
  };
55648
- const _hoisted_35 = ["onClick"];
55649
- const _hoisted_36 = {
55713
+ const _hoisted_36 = ["onClick"];
55714
+ const _hoisted_37 = {
55650
55715
  key: 0,
55651
55716
  class: "flex justify-between items-center pl-6 pr-2 w-full h-12 themeBGC"
55652
55717
  };
55653
- const _hoisted_37 = { class: "text-xl focusTC flex items-center" };
55654
- const _hoisted_38 = ["src"];
55655
- const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55718
+ const _hoisted_38 = { class: "text-xl focusTC flex items-center" };
55719
+ const _hoisted_39 = ["src"];
55720
+ const _hoisted_40 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55656
55721
  /* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8 cursor-pointer" }, [
55657
55722
  /* @__PURE__ */ createElementVNode("svg", {
55658
55723
  class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
@@ -55693,13 +55758,13 @@ const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55693
55758
  ]),
55694
55759
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC hover:underline" }, "当前选择")
55695
55760
  ], -1));
55696
- const _hoisted_40 = {
55761
+ const _hoisted_41 = {
55697
55762
  key: 1,
55698
55763
  class: "flex justify-between items-center pl-6 pr-2 w-full h-12 tabHeaderBGC"
55699
55764
  };
55700
- const _hoisted_41 = { class: "text-xl focusTC flex items-center" };
55701
- const _hoisted_42 = ["src"];
55702
- const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55765
+ const _hoisted_42 = { class: "text-xl focusTC flex items-center" };
55766
+ const _hoisted_43 = ["src"];
55767
+ const _hoisted_44 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
55703
55768
  /* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8" }, [
55704
55769
  /* @__PURE__ */ createElementVNode("svg", {
55705
55770
  class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
@@ -55722,27 +55787,27 @@ const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55722
55787
  ]),
55723
55788
  /* @__PURE__ */ createElementVNode("span", { class: "defaultTitleTS clickTC hover:underline cursor-pointer" }, "选择")
55724
55789
  ], -1));
55725
- const _hoisted_44 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
55726
- const _hoisted_45 = ["src"];
55727
- const _hoisted_46 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55728
- const _hoisted_47 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55790
+ const _hoisted_45 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
55791
+ const _hoisted_46 = ["src"];
55792
+ const _hoisted_47 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55793
+ const _hoisted_48 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55729
55794
  /* @__PURE__ */ createElementVNode("img", {
55730
55795
  src: _imports_0,
55731
55796
  alt: ""
55732
55797
  }),
55733
- /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换模块")
55798
+ /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换管理端")
55734
55799
  ], -1));
55735
- const _hoisted_48 = {
55800
+ const _hoisted_49 = {
55736
55801
  class: "flex flex-wrap justify-center",
55737
55802
  style: { "padding": "7.7rem" }
55738
55803
  };
55739
- const _hoisted_49 = ["onClick"];
55740
- const _hoisted_50 = { key: 0 };
55741
- const _hoisted_51 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55742
- const _hoisted_52 = ["src"];
55804
+ const _hoisted_50 = ["onClick"];
55805
+ const _hoisted_51 = { key: 0 };
55806
+ const _hoisted_52 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55743
55807
  const _hoisted_53 = ["src"];
55744
- const _hoisted_54 = { class: "w-full text-[22px] leading-loose rb" };
55745
- const _hoisted_55 = {
55808
+ const _hoisted_54 = ["src"];
55809
+ const _hoisted_55 = { class: "w-full text-[22px] leading-loose rb" };
55810
+ const _hoisted_56 = {
55746
55811
  class: /* @__PURE__ */ normalizeClass([
55747
55812
  "flex",
55748
55813
  "justify-center",
@@ -55751,13 +55816,13 @@ const _hoisted_55 = {
55751
55816
  "focusTC"
55752
55817
  ])
55753
55818
  };
55754
- const _hoisted_56 = { class: "focusTC" };
55755
- const _hoisted_57 = { key: 1 };
55756
- const _hoisted_58 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55757
- const _hoisted_59 = ["src"];
55819
+ const _hoisted_57 = { class: "focusTC" };
55820
+ const _hoisted_58 = { key: 1 };
55821
+ const _hoisted_59 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55758
55822
  const _hoisted_60 = ["src"];
55759
- const _hoisted_61 = { class: "w-full text-[22px] leading-loose rb" };
55760
- const _hoisted_62 = {
55823
+ const _hoisted_61 = ["src"];
55824
+ const _hoisted_62 = { class: "w-full text-[22px] leading-loose rb" };
55825
+ const _hoisted_63 = {
55761
55826
  class: /* @__PURE__ */ normalizeClass([
55762
55827
  "flex",
55763
55828
  "justify-center",
@@ -55766,71 +55831,132 @@ const _hoisted_62 = {
55766
55831
  "clickTC weight600"
55767
55832
  ])
55768
55833
  };
55769
- const _hoisted_63 = {
55834
+ const _hoisted_64 = {
55770
55835
  key: 1,
55771
55836
  class: "yuan mr-[10px]"
55772
55837
  };
55773
- const _hoisted_64 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55774
- const _hoisted_65 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55838
+ const _hoisted_65 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55839
+ const _hoisted_66 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55775
55840
  /* @__PURE__ */ createElementVNode("img", {
55776
55841
  src: _imports_0,
55777
55842
  alt: ""
55778
55843
  }),
55779
55844
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换基地")
55780
55845
  ], -1));
55781
- const _hoisted_66 = {
55846
+ const _hoisted_67 = {
55782
55847
  class: "flex flex-wrap justify-center",
55783
55848
  style: { "padding": "7.7rem" }
55784
55849
  };
55785
- const _hoisted_67 = { class: "w-full text-[22px] leading-loose rb" };
55786
- const _hoisted_68 = {
55850
+ const _hoisted_68 = { class: "w-full text-[22px] leading-loose rb" };
55851
+ const _hoisted_69 = {
55787
55852
  key: 1,
55788
55853
  class: "yuan mr-[10px]"
55789
55854
  };
55790
- const _hoisted_69 = ["onClick"];
55791
- const _hoisted_70 = { class: "w-full text-[22px] leading-loose rb" };
55792
- const _hoisted_71 = {
55855
+ const _hoisted_70 = ["onClick"];
55856
+ const _hoisted_71 = { class: "w-full text-[22px] leading-loose rb" };
55857
+ const _hoisted_72 = {
55793
55858
  key: 1,
55794
55859
  class: "yuan mr-[10px]"
55795
55860
  };
55796
- const _hoisted_72 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55797
- const _hoisted_73 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55861
+ const _hoisted_73 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55862
+ const _hoisted_74 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55798
55863
  /* @__PURE__ */ createElementVNode("img", {
55799
55864
  src: _imports_0,
55800
55865
  alt: ""
55801
55866
  }),
55802
55867
  /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换项目")
55803
55868
  ], -1));
55804
- const _hoisted_74 = {
55869
+ const _hoisted_75 = {
55805
55870
  class: "flex flex-wrap justify-center",
55806
55871
  style: { "padding": "7.7rem" }
55807
55872
  };
55808
- const _hoisted_75 = ["onClick"];
55809
- const _hoisted_76 = { class: "w-full text-[22px] leading-loose rb" };
55810
- const _hoisted_77 = {
55873
+ const _hoisted_76 = ["onClick"];
55874
+ const _hoisted_77 = { class: "w-full text-[22px] leading-loose rb" };
55875
+ const _hoisted_78 = {
55811
55876
  key: 1,
55812
55877
  class: "yuan mr-[10px]"
55813
55878
  };
55814
- const _hoisted_78 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55815
- const _hoisted_79 = { class: "flex" };
55816
- const _hoisted_80 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
55879
+ const _hoisted_79 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55880
+ const _hoisted_80 = { class: "flex" };
55881
+ const _hoisted_81 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
55817
55882
  src: _imports_0,
55818
55883
  alt: ""
55819
55884
  }, null, -1));
55820
- const _hoisted_81 = { class: "mediumTitleTS focusTC pl-2" };
55821
- const _hoisted_82 = {
55885
+ const _hoisted_82 = { class: "mediumTitleTS focusTC pl-2" };
55886
+ const _hoisted_83 = {
55822
55887
  class: "flex flex-wrap justify-center",
55823
55888
  style: { "padding": "7.7rem" }
55824
55889
  };
55825
- const _hoisted_83 = ["onClick"];
55826
- const _hoisted_84 = { class: "w-full text-[22px] c606266 leading-loose rb" };
55827
- const _hoisted_85 = {
55890
+ const _hoisted_84 = ["onClick"];
55891
+ const _hoisted_85 = { class: "w-full text-[22px] c606266 leading-loose rb" };
55892
+ const _hoisted_86 = {
55828
55893
  key: 1,
55829
55894
  class: "yuan mr-[10px]"
55830
55895
  };
55831
- const _hoisted_86 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
55832
- const _hoisted_87 = { class: "relative w-[30px] h-[30px]" };
55833
- const _hoisted_88 = {
55896
+ const _hoisted_87 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
55897
+ const _hoisted_88 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
55898
+ /* @__PURE__ */ createElementVNode("img", {
55899
+ src: _imports_0,
55900
+ alt: ""
55901
+ }),
55902
+ /* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换管理端")
55903
+ ], -1));
55904
+ const _hoisted_89 = {
55905
+ class: "flex flex-wrap justify-center",
55906
+ style: { "padding": "7.7rem" }
55907
+ };
55908
+ const _hoisted_90 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" }, [
55909
+ /* @__PURE__ */ createElementVNode("img", { class: "w-[80px] h-[78px]" }),
55910
+ /* @__PURE__ */ createElementVNode("img", { class: "w-[80px] h-[27px] absolute top-[68px]" })
55911
+ ], -1));
55912
+ const _hoisted_91 = { class: "w-full text-[22px] leading-loose rb" };
55913
+ const _hoisted_92 = {
55914
+ class: /* @__PURE__ */ normalizeClass([
55915
+ "flex",
55916
+ "justify-center",
55917
+ "items-center",
55918
+ "h-[66px]",
55919
+ "focusTC"
55920
+ ])
55921
+ };
55922
+ const _hoisted_93 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "focusTC" }, "进入业务端", -1));
55923
+ const _hoisted_94 = ["onClick"];
55924
+ const _hoisted_95 = { key: 0 };
55925
+ const _hoisted_96 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55926
+ const _hoisted_97 = ["src"];
55927
+ const _hoisted_98 = ["src"];
55928
+ const _hoisted_99 = { class: "w-full text-[22px] leading-loose rb" };
55929
+ const _hoisted_100 = {
55930
+ class: /* @__PURE__ */ normalizeClass([
55931
+ "flex",
55932
+ "justify-center",
55933
+ "items-center",
55934
+ "h-[66px]",
55935
+ "focusTC"
55936
+ ])
55937
+ };
55938
+ const _hoisted_101 = { class: "focusTC" };
55939
+ const _hoisted_102 = { key: 1 };
55940
+ const _hoisted_103 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
55941
+ const _hoisted_104 = ["src"];
55942
+ const _hoisted_105 = ["src"];
55943
+ const _hoisted_106 = { class: "w-full text-[22px] leading-loose rb" };
55944
+ const _hoisted_107 = {
55945
+ class: /* @__PURE__ */ normalizeClass([
55946
+ "flex",
55947
+ "justify-center",
55948
+ "items-center",
55949
+ "h-[66px]",
55950
+ "clickTC weight600"
55951
+ ])
55952
+ };
55953
+ const _hoisted_108 = {
55954
+ key: 1,
55955
+ class: "yuan mr-[10px]"
55956
+ };
55957
+ const _hoisted_109 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
55958
+ const _hoisted_110 = { class: "relative w-[30px] h-[30px]" };
55959
+ const _hoisted_111 = {
55834
55960
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55835
55961
  xmlns: "http://www.w3.org/2000/svg",
55836
55962
  version: "1.1",
@@ -55838,7 +55964,7 @@ const _hoisted_88 = {
55838
55964
  height: "23px",
55839
55965
  style: { "position": "absolute", "top": "7px" }
55840
55966
  };
55841
- const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
55967
+ const _hoisted_112 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
55842
55968
  /* @__PURE__ */ createElementVNode("path", {
55843
55969
  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 ",
55844
55970
  "fill-rule": "nonzero",
@@ -55847,10 +55973,10 @@ const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55847
55973
  transform: "matrix(1 0 0 1 256 275 )"
55848
55974
  })
55849
55975
  ], -1));
55850
- const _hoisted_90 = [
55851
- _hoisted_89
55976
+ const _hoisted_113 = [
55977
+ _hoisted_112
55852
55978
  ];
55853
- const _hoisted_91 = {
55979
+ const _hoisted_114 = {
55854
55980
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
55855
55981
  xmlns: "http://www.w3.org/2000/svg",
55856
55982
  version: "1.1",
@@ -55858,7 +55984,7 @@ const _hoisted_91 = {
55858
55984
  height: "23px",
55859
55985
  style: { "position": "absolute", "left": "7px" }
55860
55986
  };
55861
- const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
55987
+ const _hoisted_115 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
55862
55988
  /* @__PURE__ */ createElementVNode("path", {
55863
55989
  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 ",
55864
55990
  "fill-rule": "nonzero",
@@ -55867,15 +55993,15 @@ const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
55867
55993
  transform: "matrix(1 0 0 1 263 268 )"
55868
55994
  })
55869
55995
  ], -1));
55870
- const _hoisted_93 = [
55871
- _hoisted_92
55996
+ const _hoisted_116 = [
55997
+ _hoisted_115
55872
55998
  ];
55873
- const _hoisted_94 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
55874
- const _hoisted_95 = { class: "flex flex-col px-5 pr-0 h-full" };
55875
- const _hoisted_96 = ["onClick"];
55876
- const _hoisted_97 = { class: "w-full h-full overflow-y-auto content" };
55877
- const _hoisted_98 = { class: "mb-[20px]" };
55878
- const _hoisted_99 = { class: "h-[10%] flex justify-center items-center" };
55999
+ const _hoisted_117 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
56000
+ const _hoisted_118 = { class: "flex flex-col px-5 pr-0 h-full" };
56001
+ const _hoisted_119 = ["onClick"];
56002
+ const _hoisted_120 = { class: "w-full h-full overflow-y-auto content" };
56003
+ const _hoisted_121 = { class: "mb-[20px]" };
56004
+ const _hoisted_122 = { class: "h-[10%] flex justify-center items-center" };
55879
56005
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55880
56006
  var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2, _r2, _s2, _t2, _u2;
55881
56007
  const _component_a_upload = __unplugin_components_0;
@@ -55955,6 +56081,22 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55955
56081
  ]),
55956
56082
  createElementVNode("div", _hoisted_11, [
55957
56083
  createElementVNode("div", _hoisted_12, [
56084
+ $setup.moduleManageList.length ? (openBlock(), createBlock(_component_a_badge, {
56085
+ key: 0,
56086
+ onClick: $setup.onClickManage,
56087
+ "number-style": {
56088
+ backgroundColor: "#52c41a",
56089
+ fontSize: "12px",
56090
+ padding: "0 4px"
56091
+ },
56092
+ class: "w-[20px] h-[20px] cursor-pointer",
56093
+ offset: [0, 0]
56094
+ }, {
56095
+ default: withCtx(() => [
56096
+ _hoisted_13
56097
+ ]),
56098
+ _: 1
56099
+ }, 8, ["onClick"])) : createCommentVNode("", true),
55958
56100
  createVNode(_component_a_badge, {
55959
56101
  onClick: $setup.onClickMessage,
55960
56102
  count: $setup.unReadCount,
@@ -55967,7 +56109,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55967
56109
  offset: [0, 0]
55968
56110
  }, {
55969
56111
  default: withCtx(() => [
55970
- _hoisted_13
56112
+ _hoisted_14
55971
56113
  ]),
55972
56114
  _: 1
55973
56115
  }, 8, ["onClick", "count"]),
@@ -55983,7 +56125,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55983
56125
  offset: [0, 0]
55984
56126
  }, {
55985
56127
  default: withCtx(() => [
55986
- _hoisted_14
56128
+ _hoisted_15
55987
56129
  ]),
55988
56130
  _: 1
55989
56131
  }, 8, ["onClick", "count"])
@@ -55991,13 +56133,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
55991
56133
  createElementVNode("span", {
55992
56134
  class: "mt-[10px] relative",
55993
56135
  onClick: _cache[5] || (_cache[5] = (...args) => $setup.logout && $setup.logout(...args))
55994
- }, _hoisted_18)
56136
+ }, _hoisted_19)
55995
56137
  ])
55996
56138
  ]),
55997
- ((_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, [
56139
+ ((_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, [
55998
56140
  createElementVNode("div", null, [
55999
- _hoisted_20,
56000
- 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)
56141
+ _hoisted_21,
56142
+ 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)
56001
56143
  ]),
56002
56144
  $setup.setofbooksTest.length > 1 ? (openBlock(), createElementBlock("span", {
56003
56145
  key: 0,
@@ -56005,10 +56147,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56005
56147
  onClick: _cache[6] || (_cache[6] = (...args) => $setup.changeSetofbooks && $setup.changeSetofbooks(...args))
56006
56148
  }, "切换" + toDisplayString($props.setofbooksName), 1)) : createCommentVNode("", true)
56007
56149
  ])) : createCommentVNode("", true),
56008
- ((_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, [
56150
+ ((_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, [
56009
56151
  createElementVNode("div", null, [
56010
- _hoisted_23,
56011
- createElementVNode("span", _hoisted_24, [
56152
+ _hoisted_24,
56153
+ createElementVNode("span", _hoisted_25, [
56012
56154
  createTextVNode(" 当前基地: "),
56013
56155
  $setup.isShowAllProductionBases ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
56014
56156
  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)
@@ -56023,10 +56165,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56023
56165
  onClick: _cache[7] || (_cache[7] = (...args) => $setup.openBaseModal && $setup.openBaseModal(...args))
56024
56166
  }, "切换基地")) : createCommentVNode("", true)
56025
56167
  ])) : createCommentVNode("", true),
56026
- ((_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, [
56168
+ ((_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, [
56027
56169
  createElementVNode("div", null, [
56028
- _hoisted_26,
56029
- 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)
56170
+ _hoisted_27,
56171
+ 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)
56030
56172
  ]),
56031
56173
  $setup.gjTest.length > 1 ? (openBlock(), createElementBlock("span", {
56032
56174
  key: 0,
@@ -56053,11 +56195,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56053
56195
  onCancel: $setup.cancelPWDVisible
56054
56196
  }, {
56055
56197
  title: withCtx(() => [
56056
- _hoisted_28
56198
+ _hoisted_29
56057
56199
  ]),
56058
56200
  body: withCtx(() => [
56059
- _hoisted_29,
56060
- createElementVNode("div", _hoisted_30, [
56201
+ _hoisted_30,
56202
+ createElementVNode("div", _hoisted_31, [
56061
56203
  createVNode(_component_a_form, {
56062
56204
  style: { "width": "380px", "margin": "0 auto" },
56063
56205
  ref: "changePWDref",
@@ -56108,7 +56250,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56108
56250
  ]),
56109
56251
  _: 1
56110
56252
  }, 8, ["model"]),
56111
- createElementVNode("div", _hoisted_31, [
56253
+ createElementVNode("div", _hoisted_32, [
56112
56254
  createElementVNode("div", {
56113
56255
  class: "submit_btn",
56114
56256
  onClick: _cache[11] || (_cache[11] = (...args) => $setup.changePWDOKHandle && $setup.changePWDOKHandle(...args))
@@ -56128,8 +56270,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56128
56270
  "remove-padding": false
56129
56271
  }, {
56130
56272
  title: withCtx(() => [
56131
- createElementVNode("div", _hoisted_32, [
56132
- _hoisted_33,
56273
+ createElementVNode("div", _hoisted_33, [
56274
+ _hoisted_34,
56133
56275
  createElementVNode("div", {
56134
56276
  class: "h-[60px] w-[80px] zIndex",
56135
56277
  onClick: _cache[14] || (_cache[14] = ($event) => $setup.closeSysetmModal())
@@ -56137,7 +56279,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56137
56279
  ])
56138
56280
  ]),
56139
56281
  body: withCtx(() => [
56140
- createElementVNode("div", _hoisted_34, [
56282
+ createElementVNode("div", _hoisted_35, [
56141
56283
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.permissionModuleList, (i2) => {
56142
56284
  return openBlock(), createElementBlock("div", {
56143
56285
  key: i2.id,
@@ -56145,27 +56287,27 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56145
56287
  style: { "border-radius": "10px" },
56146
56288
  onClick: ($event) => $setup.changesystem(i2)
56147
56289
  }, [
56148
- i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_36, [
56149
- createElementVNode("div", _hoisted_37, [
56290
+ i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_37, [
56291
+ createElementVNode("div", _hoisted_38, [
56150
56292
  createElementVNode("img", {
56151
56293
  class: "mr-4",
56152
56294
  src: i2.icon
56153
- }, null, 8, _hoisted_38),
56295
+ }, null, 8, _hoisted_39),
56154
56296
  createTextVNode(" " + toDisplayString(i2.moduleName), 1)
56155
56297
  ]),
56156
- _hoisted_39
56157
- ])) : (openBlock(), createElementBlock("div", _hoisted_40, [
56158
- createElementVNode("div", _hoisted_41, [
56298
+ _hoisted_40
56299
+ ])) : (openBlock(), createElementBlock("div", _hoisted_41, [
56300
+ createElementVNode("div", _hoisted_42, [
56159
56301
  createElementVNode("img", {
56160
56302
  class: "mr-4",
56161
56303
  src: i2.icon
56162
- }, null, 8, _hoisted_42),
56304
+ }, null, 8, _hoisted_43),
56163
56305
  createTextVNode(toDisplayString(i2.moduleName), 1)
56164
56306
  ]),
56165
- _hoisted_43
56307
+ _hoisted_44
56166
56308
  ])),
56167
56309
  createElementVNode("div", null, [
56168
- createElementVNode("div", _hoisted_44, [
56310
+ createElementVNode("div", _hoisted_45, [
56169
56311
  (openBlock(true), createElementBlock(Fragment, null, renderList(i2.childGroups, (e10) => {
56170
56312
  return openBlock(), createElementBlock("div", {
56171
56313
  key: e10.id,
@@ -56178,13 +56320,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56178
56320
  class: "mr-2",
56179
56321
  style: { "width": "16px", "height": "16px" },
56180
56322
  src: e10.icon
56181
- }, null, 8, _hoisted_45),
56323
+ }, null, 8, _hoisted_46),
56182
56324
  createTextVNode(" " + toDisplayString(e10.moduleName), 1)
56183
56325
  ], 2);
56184
56326
  }), 128))
56185
56327
  ])
56186
56328
  ])
56187
- ], 8, _hoisted_35);
56329
+ ], 8, _hoisted_36);
56188
56330
  }), 128))
56189
56331
  ])
56190
56332
  ]),
@@ -56197,8 +56339,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56197
56339
  "remove-padding": false
56198
56340
  }, {
56199
56341
  title: withCtx(() => [
56200
- createElementVNode("div", _hoisted_46, [
56201
- _hoisted_47,
56342
+ createElementVNode("div", _hoisted_47, [
56343
+ _hoisted_48,
56202
56344
  createElementVNode("div", {
56203
56345
  class: "h-[60px] w-[80px] zIndex",
56204
56346
  onClick: _cache[16] || (_cache[16] = ($event) => $setup.closeModule())
@@ -56206,54 +56348,54 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56206
56348
  ])
56207
56349
  ]),
56208
56350
  body: withCtx(() => [
56209
- createElementVNode("div", _hoisted_48, [
56351
+ createElementVNode("div", _hoisted_49, [
56210
56352
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleTestS, (i2) => {
56211
56353
  return openBlock(), createElementBlock("div", {
56212
56354
  key: i2.id,
56213
56355
  class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56214
56356
  onClick: ($event) => $setup.changeModule(i2)
56215
56357
  }, [
56216
- i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_50, [
56217
- createElementVNode("div", _hoisted_51, [
56358
+ i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_51, [
56359
+ createElementVNode("div", _hoisted_52, [
56218
56360
  createElementVNode("img", {
56219
56361
  class: "w-[80px] h-[78px]",
56220
56362
  src: i2.icon
56221
- }, null, 8, _hoisted_52),
56363
+ }, null, 8, _hoisted_53),
56222
56364
  i2.icon1 ? (openBlock(), createElementBlock("img", {
56223
56365
  key: 0,
56224
56366
  class: "w-[80px] h-[27px] absolute top-[68px]",
56225
56367
  src: i2.icon1
56226
- }, null, 8, _hoisted_53)) : createCommentVNode("", true)
56368
+ }, null, 8, _hoisted_54)) : createCommentVNode("", true)
56227
56369
  ]),
56228
- createElementVNode("div", _hoisted_54, [
56229
- createElementVNode("div", _hoisted_55, [
56370
+ createElementVNode("div", _hoisted_55, [
56371
+ createElementVNode("div", _hoisted_56, [
56230
56372
  createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56231
- createElementVNode("div", _hoisted_56, toDisplayString(i2.moduleName), 1)
56373
+ createElementVNode("div", _hoisted_57, toDisplayString(i2.moduleName), 1)
56232
56374
  ])
56233
56375
  ])
56234
- ])) : (openBlock(), createElementBlock("div", _hoisted_57, [
56235
- createElementVNode("div", _hoisted_58, [
56376
+ ])) : (openBlock(), createElementBlock("div", _hoisted_58, [
56377
+ createElementVNode("div", _hoisted_59, [
56236
56378
  createElementVNode("img", {
56237
56379
  class: "w-[80px] h-[78px]",
56238
56380
  src: i2.icon
56239
- }, null, 8, _hoisted_59),
56381
+ }, null, 8, _hoisted_60),
56240
56382
  i2.icon1 ? (openBlock(), createElementBlock("img", {
56241
56383
  key: 0,
56242
56384
  class: "w-[80px] h-[27px] absolute top-[68px]",
56243
56385
  src: i2.icon1
56244
- }, null, 8, _hoisted_60)) : createCommentVNode("", true)
56386
+ }, null, 8, _hoisted_61)) : createCommentVNode("", true)
56245
56387
  ]),
56246
- createElementVNode("div", _hoisted_61, [
56247
- createElementVNode("div", _hoisted_62, [
56388
+ createElementVNode("div", _hoisted_62, [
56389
+ createElementVNode("div", _hoisted_63, [
56248
56390
  i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56249
56391
  key: 0,
56250
56392
  class: "mediumTitleTS mr-[10px]"
56251
- })) : (openBlock(), createElementBlock("div", _hoisted_63)),
56393
+ })) : (openBlock(), createElementBlock("div", _hoisted_64)),
56252
56394
  createTextVNode(" " + toDisplayString(i2.moduleName), 1)
56253
56395
  ])
56254
56396
  ])
56255
56397
  ]))
56256
- ], 8, _hoisted_49);
56398
+ ], 8, _hoisted_50);
56257
56399
  }), 128))
56258
56400
  ])
56259
56401
  ]),
@@ -56265,8 +56407,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56265
56407
  "remove-padding": false
56266
56408
  }, {
56267
56409
  title: withCtx(() => [
56268
- createElementVNode("div", _hoisted_64, [
56269
- _hoisted_65,
56410
+ createElementVNode("div", _hoisted_65, [
56411
+ _hoisted_66,
56270
56412
  createElementVNode("div", {
56271
56413
  class: "h-[60px] w-[80px] zIndex",
56272
56414
  onClick: _cache[18] || (_cache[18] = (...args) => $setup.cloneBaseModal && $setup.cloneBaseModal(...args))
@@ -56274,7 +56416,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56274
56416
  ])
56275
56417
  ]),
56276
56418
  body: withCtx(() => [
56277
- createElementVNode("div", _hoisted_66, [
56419
+ createElementVNode("div", _hoisted_67, [
56278
56420
  $setup.isShowAllProductionBasesModel ? (openBlock(), createElementBlock("div", {
56279
56421
  key: 0,
56280
56422
  class: "w-[320px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer rt",
@@ -56300,7 +56442,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56300
56442
  ])
56301
56443
  }, " 全部基地 ", 2)
56302
56444
  ], 2),
56303
- createElementVNode("div", _hoisted_67, [
56445
+ createElementVNode("div", _hoisted_68, [
56304
56446
  createElementVNode("div", {
56305
56447
  class: normalizeClass([
56306
56448
  "flex",
@@ -56313,7 +56455,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56313
56455
  $setup.baseId === $setup.allBaseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56314
56456
  key: 0,
56315
56457
  class: "mediumTitleTS mr-[10px]"
56316
- })) : (openBlock(), createElementBlock("div", _hoisted_68)),
56458
+ })) : (openBlock(), createElementBlock("div", _hoisted_69)),
56317
56459
  createTextVNode(" 全部基地 ")
56318
56460
  ], 2)
56319
56461
  ])
@@ -56341,7 +56483,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56341
56483
  class: normalizeClass(["text-xl", `${i2.id == $setup.baseId ? "focusTC" : "clickTC"}`])
56342
56484
  }, toDisplayString(i2.title), 3)
56343
56485
  ], 2),
56344
- createElementVNode("div", _hoisted_70, [
56486
+ createElementVNode("div", _hoisted_71, [
56345
56487
  createElementVNode("div", {
56346
56488
  class: normalizeClass([
56347
56489
  "flex",
@@ -56354,11 +56496,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56354
56496
  i2.id == $setup.baseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56355
56497
  key: 0,
56356
56498
  class: "mediumTitleTS mr-[10px]"
56357
- })) : (openBlock(), createElementBlock("div", _hoisted_71)),
56499
+ })) : (openBlock(), createElementBlock("div", _hoisted_72)),
56358
56500
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56359
56501
  ], 2)
56360
56502
  ])
56361
- ], 8, _hoisted_69);
56503
+ ], 8, _hoisted_70);
56362
56504
  }), 128))
56363
56505
  ])
56364
56506
  ]),
@@ -56370,8 +56512,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56370
56512
  "remove-padding": false
56371
56513
  }, {
56372
56514
  title: withCtx(() => [
56373
- createElementVNode("div", _hoisted_72, [
56374
- _hoisted_73,
56515
+ createElementVNode("div", _hoisted_73, [
56516
+ _hoisted_74,
56375
56517
  createElementVNode("div", {
56376
56518
  class: "h-[60px] w-[80px] zIndex",
56377
56519
  onClick: _cache[21] || (_cache[21] = ($event) => $setup.closeDgVisible())
@@ -56379,7 +56521,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56379
56521
  ])
56380
56522
  ]),
56381
56523
  body: withCtx(() => [
56382
- createElementVNode("div", _hoisted_74, [
56524
+ createElementVNode("div", _hoisted_75, [
56383
56525
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.gjTest, (i2) => {
56384
56526
  return openBlock(), createElementBlock("div", {
56385
56527
  key: i2.id,
@@ -56403,7 +56545,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56403
56545
  class: normalizeClass(["text-xl", `${i2.id == $setup.gjId ? "focusTC" : "clickTC"}`])
56404
56546
  }, toDisplayString(i2.title), 3)
56405
56547
  ], 2),
56406
- createElementVNode("div", _hoisted_76, [
56548
+ createElementVNode("div", _hoisted_77, [
56407
56549
  createElementVNode("div", {
56408
56550
  class: normalizeClass([
56409
56551
  "flex",
@@ -56416,11 +56558,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56416
56558
  i2.id == $setup.gjId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56417
56559
  key: 0,
56418
56560
  class: "mediumTitleTS mr-[10px]"
56419
- })) : (openBlock(), createElementBlock("div", _hoisted_77)),
56561
+ })) : (openBlock(), createElementBlock("div", _hoisted_78)),
56420
56562
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56421
56563
  ], 2)
56422
56564
  ])
56423
- ], 8, _hoisted_75);
56565
+ ], 8, _hoisted_76);
56424
56566
  }), 128))
56425
56567
  ])
56426
56568
  ]),
@@ -56432,10 +56574,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56432
56574
  "remove-padding": false
56433
56575
  }, {
56434
56576
  title: withCtx(() => [
56435
- createElementVNode("div", _hoisted_78, [
56436
- createElementVNode("div", _hoisted_79, [
56437
- _hoisted_80,
56438
- createElementVNode("span", _hoisted_81, "切换" + toDisplayString($props.setofbooksName), 1)
56577
+ createElementVNode("div", _hoisted_79, [
56578
+ createElementVNode("div", _hoisted_80, [
56579
+ _hoisted_81,
56580
+ createElementVNode("span", _hoisted_82, "切换" + toDisplayString($props.setofbooksName), 1)
56439
56581
  ]),
56440
56582
  createElementVNode("div", {
56441
56583
  class: "h-[60px] w-[80px] zIndex",
@@ -56444,7 +56586,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56444
56586
  ])
56445
56587
  ]),
56446
56588
  body: withCtx(() => [
56447
- createElementVNode("div", _hoisted_82, [
56589
+ createElementVNode("div", _hoisted_83, [
56448
56590
  (openBlock(true), createElementBlock(Fragment, null, renderList($setup.setofbooksTest, (i2) => {
56449
56591
  return openBlock(), createElementBlock("div", {
56450
56592
  key: i2.id,
@@ -56471,7 +56613,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56471
56613
  ])
56472
56614
  }, toDisplayString(i2.title), 3)
56473
56615
  ], 2),
56474
- createElementVNode("div", _hoisted_84, [
56616
+ createElementVNode("div", _hoisted_85, [
56475
56617
  createElementVNode("div", {
56476
56618
  class: normalizeClass([
56477
56619
  "flex",
@@ -56484,40 +56626,121 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56484
56626
  i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
56485
56627
  key: 0,
56486
56628
  class: "mediumTitleTS mr-[10px]"
56487
- })) : (openBlock(), createElementBlock("div", _hoisted_85)),
56629
+ })) : (openBlock(), createElementBlock("div", _hoisted_86)),
56488
56630
  createTextVNode(" " + toDisplayString(i2.shortName), 1)
56489
56631
  ], 2)
56490
56632
  ])
56491
- ], 8, _hoisted_83);
56633
+ ], 8, _hoisted_84);
56492
56634
  }), 128))
56493
56635
  ])
56494
56636
  ]),
56495
56637
  _: 1
56496
56638
  }, 8, ["show"]),
56639
+ createVNode(_component_MrpModal, {
56640
+ show: $setup.moduleManageVisible,
56641
+ "onUpdate:show": _cache[27] || (_cache[27] = ($event) => $setup.moduleManageVisible = $event),
56642
+ onCancelHandle: $setup.moduleManageHandle,
56643
+ "remove-padding": false
56644
+ }, {
56645
+ title: withCtx(() => [
56646
+ createElementVNode("div", _hoisted_87, [
56647
+ _hoisted_88,
56648
+ createElementVNode("div", {
56649
+ class: "h-[60px] w-[80px] zIndex",
56650
+ onClick: _cache[25] || (_cache[25] = ($event) => $setup.moduleManageHandle())
56651
+ })
56652
+ ])
56653
+ ]),
56654
+ body: withCtx(() => [
56655
+ createElementVNode("div", _hoisted_89, [
56656
+ createElementVNode("div", {
56657
+ class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56658
+ onClick: _cache[26] || (_cache[26] = ($event) => $setup.onChangeMangeModuleBusiness())
56659
+ }, [
56660
+ _hoisted_90,
56661
+ createElementVNode("div", _hoisted_91, [
56662
+ createElementVNode("div", _hoisted_92, [
56663
+ createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56664
+ _hoisted_93
56665
+ ])
56666
+ ])
56667
+ ]),
56668
+ (openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleManageList, (i2) => {
56669
+ return openBlock(), createElementBlock("div", {
56670
+ key: i2.id,
56671
+ class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
56672
+ onClick: ($event) => $setup.onChangeMangeModule(i2)
56673
+ }, [
56674
+ i2.id === $setup.moduleManageSelect ? (openBlock(), createElementBlock("div", _hoisted_95, [
56675
+ createElementVNode("div", _hoisted_96, [
56676
+ createElementVNode("img", {
56677
+ class: "w-[80px] h-[78px]",
56678
+ src: i2.icon
56679
+ }, null, 8, _hoisted_97),
56680
+ i2.icon1 ? (openBlock(), createElementBlock("img", {
56681
+ key: 0,
56682
+ class: "w-[80px] h-[27px] absolute top-[68px]",
56683
+ src: i2.icon1
56684
+ }, null, 8, _hoisted_98)) : createCommentVNode("", true)
56685
+ ]),
56686
+ createElementVNode("div", _hoisted_99, [
56687
+ createElementVNode("div", _hoisted_100, [
56688
+ createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
56689
+ createElementVNode("div", _hoisted_101, toDisplayString(i2.name), 1)
56690
+ ])
56691
+ ])
56692
+ ])) : (openBlock(), createElementBlock("div", _hoisted_102, [
56693
+ createElementVNode("div", _hoisted_103, [
56694
+ createElementVNode("img", {
56695
+ class: "w-[80px] h-[78px]",
56696
+ src: i2.icon
56697
+ }, null, 8, _hoisted_104),
56698
+ i2.icon1 ? (openBlock(), createElementBlock("img", {
56699
+ key: 0,
56700
+ class: "w-[80px] h-[27px] absolute top-[68px]",
56701
+ src: i2.icon1
56702
+ }, null, 8, _hoisted_105)) : createCommentVNode("", true)
56703
+ ]),
56704
+ createElementVNode("div", _hoisted_106, [
56705
+ createElementVNode("div", _hoisted_107, [
56706
+ i2.id == $setup.moduleManageSelect ? (openBlock(), createBlock(_component_check_circle_outlined, {
56707
+ key: 0,
56708
+ class: "mediumTitleTS mr-[10px]"
56709
+ })) : (openBlock(), createElementBlock("div", _hoisted_108)),
56710
+ createTextVNode(" " + toDisplayString(i2.name), 1)
56711
+ ])
56712
+ ])
56713
+ ]))
56714
+ ], 8, _hoisted_94);
56715
+ }), 128))
56716
+ ])
56717
+ ]),
56718
+ _: 1
56719
+ }, 8, ["show", "onCancelHandle"]),
56497
56720
  $setup.isModuleModuleVersion ? (openBlock(), createBlock(_component_ModuleVersionModal, {
56498
56721
  key: 0,
56499
56722
  show: $setup.isModuleModuleVersion,
56500
- "onUpdate:show": _cache[25] || (_cache[25] = ($event) => $setup.isModuleModuleVersion = $event),
56723
+ "onUpdate:show": _cache[28] || (_cache[28] = ($event) => $setup.isModuleModuleVersion = $event),
56501
56724
  onGetItem: $setup.getModuleVersion,
56502
56725
  title: "更新记录"
56503
56726
  }, null, 8, ["show", "onGetItem"])) : createCommentVNode("", true),
56504
56727
  createVNode(_component_MrpModal, {
56505
56728
  show: $setup.isModuleVersionUpdate,
56506
- "onUpdate:show": _cache[27] || (_cache[27] = ($event) => $setup.isModuleVersionUpdate = $event),
56729
+ "onUpdate:show": _cache[30] || (_cache[30] = ($event) => $setup.isModuleVersionUpdate = $event),
56507
56730
  "remove-padding": false,
56508
56731
  isScroll: false
56509
56732
  }, {
56510
56733
  title: withCtx(() => [
56511
- createElementVNode("div", _hoisted_86, [
56512
- createElementVNode("div", _hoisted_87, [
56513
- (openBlock(), createElementBlock("svg", _hoisted_88, _hoisted_90)),
56514
- (openBlock(), createElementBlock("svg", _hoisted_91, _hoisted_93))
56734
+ createElementVNode("div", _hoisted_109, [
56735
+ createElementVNode("div", _hoisted_110, [
56736
+ (openBlock(), createElementBlock("svg", _hoisted_111, _hoisted_113)),
56737
+ (openBlock(), createElementBlock("svg", _hoisted_114, _hoisted_116))
56515
56738
  ]),
56516
- _hoisted_94
56739
+ _hoisted_117
56517
56740
  ])
56518
56741
  ]),
56519
56742
  body: withCtx(() => [
56520
- createElementVNode("div", _hoisted_95, [
56743
+ createElementVNode("div", _hoisted_118, [
56521
56744
  createVNode(_component_a_row, {
56522
56745
  gutter: 24,
56523
56746
  style: { "height": "90%", "border-bottom": "1px solid #eadcb9" }
@@ -56532,7 +56755,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56532
56755
  return openBlock(), createElementBlock("div", {
56533
56756
  onClick: ($event) => $setup.changeTab(item, i2),
56534
56757
  class: normalizeClass(["tab-items", $setup.activeKey == i2 ? "tab-items-active" : ""])
56535
- }, toDisplayString(item.version), 11, _hoisted_96);
56758
+ }, toDisplayString(item.version), 11, _hoisted_119);
56536
56759
  }), 256))
56537
56760
  ]),
56538
56761
  _: 1
@@ -56546,8 +56769,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56546
56769
  type: "vertical",
56547
56770
  style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
56548
56771
  }),
56549
- createElementVNode("div", _hoisted_97, [
56550
- createElementVNode("div", _hoisted_98, [
56772
+ createElementVNode("div", _hoisted_120, [
56773
+ createElementVNode("div", _hoisted_121, [
56551
56774
  createVNode(_component_Toolbar, {
56552
56775
  editor: $setup.editorRef,
56553
56776
  defaultConfig: { readOnly: true },
@@ -56555,7 +56778,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56555
56778
  }, null, 8, ["editor"]),
56556
56779
  createVNode(_component_Editor, {
56557
56780
  modelValue: $setup.content.description,
56558
- "onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => $setup.content.description = $event),
56781
+ "onUpdate:modelValue": _cache[29] || (_cache[29] = ($event) => $setup.content.description = $event),
56559
56782
  defaultConfig: { readOnly: true },
56560
56783
  style: { "height": "100%" }
56561
56784
  }, null, 8, ["modelValue"])
@@ -56567,7 +56790,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56567
56790
  ]),
56568
56791
  _: 1
56569
56792
  }),
56570
- createElementVNode("div", _hoisted_99, [
56793
+ createElementVNode("div", _hoisted_122, [
56571
56794
  createVNode(_component_a_button, {
56572
56795
  class: "w-[140px] mr-[50px] btn1",
56573
56796
  style: { "border-radius": "5px" },
@@ -56595,7 +56818,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
56595
56818
  }, 8, ["show"])
56596
56819
  ], 64);
56597
56820
  }
56598
- const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-128c9be4"]]);
56821
+ const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f4c97d4e"]]);
56599
56822
  const style = "";
56600
56823
  const components = [TSider];
56601
56824
  installComponents();