💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
##### 首页曲线图 ~~~ $iframe->introduction($param); ~~~ ##### 参数介绍 ~~~ content 【必填】介绍内容 title 【选填】介绍框标题 label 【选填】介绍框图标标识( 后台顶部导航栏->【图标样式参考】-> 选择图标复制 ) button 【选填】介绍框跳转按钮数组 ~~~ ##### button数组介绍 ~~~ url 跳转地址,如果是外部网址请带上http:// label 按钮图标( 后台顶部导航栏->【图标样式参考】-> 选择图标复制 ) name 按钮显示名称 class 按钮样式[1绿色 2浅蓝 3红色 4深蓝 5橙色] blank 默认不填,如需请填写 1 ~~~ ##### 实例 ~~~ $param = []; $param['title'] = '图表问题'; $param['label'] = ''; $sbh_charts_info['content'] = '图标说明'; $obj = []; $obj[] = ['url'=>'http://www.baidu.com','name'=>'baidu','label'=>'glyphicon glyphicon-file','class'=>'1','blank'=>1]; $param['button'] = $obj; $iframe->introduction($param); ~~~