PC端弹窗能实现移动吗

PC端在FVS中的弹窗能实现移动吗?比如现在点击出现之后,我可以往上往左往右移动这个弹窗;有JS的方案吗?

FineReport 帆软用户ZoNfPvDfNH 发布于 2025-10-30 11:53
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
华莉星宸Lv7专家互助
发布于2025-10-30 11:57(编辑于 2025-10-30 11:58)

参考

"use document";
const iframe = document.createElement("iframe");
iframe.width = "100%";
iframe.height = "100%";
iframe.scrolling = "no";
iframe.style="border: none";
iframe.src = "/webroot/decision/view/report?viewlet=GettingStarted.cpt";
duchamp.showDialog(
        {
                title:"销量弹窗",
                width: 700,
                height: 500,
                innerContent:iframe,
               dialogType:"center",
        }
);

-------------------

全局接口-FR https://help.fanruan.com/finereport/doc-view-4316.html

image.png

  • 2关注人数
  • 37浏览人数
  • 最后回答于:2025-10-30 11:58
    请选择关闭问题的原因
    确定 取消
    返回顶部