弹窗标题修改

弹窗需要修改标题

title由 参数ind_type + "行业-" + 参数cus_type + "客户"

参数ind_type是获取的x轴,参数cus_type是获取的y轴

目前x轴实际值是1-100内的数字,需要根据判断将x轴转化为文本,

请问这个判断在哪写,并且如何拼接到title里面

var url = dest_url + "&cus_type="+cus_type + "&ym="+ym + "&khfw="+khfw + "&ind_type="+ind_type + "&amount_type="+amount_type;

//窗体

var $iframe = $("

//将窗体的src属性设置为模板路径

$iframe.attr("src", url);

//窗体的属性

var o = {

    title: ind_type + "行业-" + cus_type + "客户",    //标题

    destroyOnClose:true,   // 是否在关闭对话框的时候将对话框从dom中移除

    width: "50%",          //宽度

    height: "50%",          //高度

    closable:true,    //是否显示关闭按钮,默认true

    //confirm:true,     //是否添加确认取消按钮,默认false

    draggable:false   //是否可拖动,默认true

};

//弹出窗体

FR.showDialog(o.title, o.width, o.height, $iframe, o);

微信截图_20231124105927.png微信截图_20231124110011.png

FineReport 冰雨咖啡 发布于 2023-11-24 11:03 (编辑于 2023-11-24 11:03)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共3回答
最佳回答
0
ID1208Lv6高级互助
发布于2023-11-24 11:26

image.png

最佳回答
0
杨朝健Lv5中级互助
发布于2023-11-24 11:20

=MAP(X,"你的数据集名称","id列名","名称列名")

最佳回答
0
年年plusLv5中级互助
发布于2023-11-24 11:23

var url = dest_url + "&cus_type="+cus_type + "&ym="+ym + "&khfw="+khfw + "&ind_type="+ind_type + "&amount_type="+amount_type;

//窗体

var $iframe = $("

//将窗体的src属性设置为模板路径

$iframe.attr("src", url);

//窗体的属性

var o = {

   if(ind_type>0 && ind_type<10){ var ind_type="你要转换的名称"}

//把值根据你需要转换一下就行

    title: ind_type + "行业-" + cus_type + "客户",    //标题

    destroyOnClose:true,   // 是否在关闭对话框的时候将对话框从dom中移除

    width: "50%",          //宽度

    height: "50%",          //高度

    closable:true,    //是否显示关闭按钮,默认true

    //confirm:true,     //是否添加确认取消按钮,默认false

    draggable:false   //是否可拖动,默认true

};

//弹出窗体

FR.showDialog(o.title, o.width, o.height, $iframe, o);

  • 4关注人数
  • 342浏览人数
  • 最后回答于:2023-11-24 11:26
    请选择关闭问题的原因
    确定 取消
    返回顶部