lex 7 месяцев назад
Родитель
Сommit
3edb5c9f1f

BIN
src/page-instrument/custom-plugins/guide-driver/images/report/r2.png


+ 21 - 6
src/page-instrument/custom-plugins/guide-driver/index.tsx

@@ -1122,12 +1122,17 @@ export const EvaluatingReportDriver = defineComponent({
               title: "",
               description: "",
               popoverClass: "popoverClass popoverClassReport2",
-              align: "start",
+              align: "end",
               side: "bottom",
               nextBtnText: "下一步 (1/2)",
               showButtons: ["next"],
               onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
-                driverInitialPosition(popover, options);
+                options.config.stageRadius = 12;
+                options.config.stagePadding = 0;
+                try {
+                  const rect = options.state.activeElement?.getBoundingClientRect();
+                  popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 4 + "px";
+                } catch {}
               },
             },
           },
@@ -1167,12 +1172,17 @@ export const EvaluatingReportDriver = defineComponent({
               title: "",
               description: "",
               popoverClass: "popoverClass popoverClassReport2 popoverClose",
-              align: "start",
+              align: "end",
               side: "bottom",
               doneBtnText: "完成",
               showButtons: ["next"],
               onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
-                driverInitialPosition(popover, options);
+                options.config.stageRadius = 12;
+                options.config.stagePadding = 0;
+                try {
+                  const rect = options.state.activeElement?.getBoundingClientRect();
+                  popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 4 + "px";
+                } catch {}
               },
               onPrevClick: () => {
                 driverObj.drive(0);
@@ -1208,12 +1218,17 @@ export const EvaluatingReportDriver = defineComponent({
             title: "",
             description: "",
             popoverClass: "popoverClass popoverClassReport2",
-            align: "start",
+            align: "end",
             side: "bottom",
             nextBtnText: `下一步 (2/${count})`,
             showButtons: ["next"],
             onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
-              driverInitialPosition(popover, options);
+              options.config.stageRadius = 12;
+              options.config.stagePadding = 0;
+              try {
+                const rect = options.state.activeElement?.getBoundingClientRect();
+                popover.wrapper.style.marginLeft = ((rect?.width || 0) / 2) * -1 + 4 + "px";
+              } catch {}
             },
           },
         },

+ 5 - 5
src/page-instrument/view-detail/index.module.less

@@ -12,11 +12,11 @@
 
 :global {
 
-    .headHeight>.driver-active-element,
-    #noticeBarRollDom>.driver-active-element,
-    :not(body):has(>.headHeight),
-    :not(body):has(>#noticeBarRollDom),
-    body .headHeight,
+    // .headHeight>.driver-active-element,
+    // #noticeBarRollDom>.driver-active-element,
+    // :not(body):has(>.headHeight),
+    // :not(body):has(>#noticeBarRollDom),
+    body .headeTopTitleBtn,
     body #noticeBarRollDom {
         overflow: initial !important;
     }