提交漏提交文件

This commit is contained in:
zhaolei 2026-04-01 17:57:13 +08:00
parent fe50ef65d1
commit be04da0bff

View File

@ -1419,7 +1419,13 @@ void FormInfo::contextMenuEvent(QContextMenuEvent *event)
//曲线数据查看 //曲线数据查看
void FormInfo::onShowCurve() void FormInfo::onShowCurve()
{ {
emit CallManage::getInstance()->sig_ShowCurve(m_strSlfName, m_strLineName); QMap<QString,QList<QString>> mapShowObject;
QList<QString> selList;
selList.clear();
mapShowObject.insert(m_strSlfName,selList);
mapShowObject[m_strSlfName].append(m_strLineName);
emit CallManage::getInstance()->sig_ShowCurve(mapShowObject);
// emit CallManage::getInstance()->sig_ShowCurve(m_strSlfName, m_strLineName);
} }
//删除曲线 //删除曲线
void FormInfo::onDeleteCurv() void FormInfo::onDeleteCurv()