|
@@ -1,6 +1,22 @@
|
|
|
#include "IndexSystemWidget.h"
|
|
|
|
|
|
+#include <CCanvas/CMindView.h>
|
|
|
+
|
|
|
+#include <QLayout>
|
|
|
+
|
|
|
IndexSystemWidget::IndexSystemWidget(QWidget *parent, int type) : EvalWidget(type, parent)
|
|
|
{
|
|
|
setTitle("指标体系设计");
|
|
|
+ initWidgets();
|
|
|
+ initLayout();
|
|
|
+}
|
|
|
+
|
|
|
+void IndexSystemWidget::initWidgets()
|
|
|
+{
|
|
|
+ m_mind = new CMindView(this);
|
|
|
+}
|
|
|
+
|
|
|
+void IndexSystemWidget::initLayout()
|
|
|
+{
|
|
|
+ m_contentLayout->addWidget(m_mind);
|
|
|
}
|