29 lines
536 B
QML
29 lines
536 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import "../js/qmldict.js" as JsLib
|
|
|
|
Frame
|
|
{
|
|
property alias contactPerson: oaocontactperson
|
|
Layout.alignment: Qt.AlignTop
|
|
Layout.fillWidth: true
|
|
ColumnLayout
|
|
{
|
|
id: addObjectLayout
|
|
width: parent.width
|
|
ObjectAddOnContactPerson
|
|
{
|
|
id: oaocontactperson
|
|
}
|
|
Item
|
|
{
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
function getForm()
|
|
{
|
|
return oaocontactperson.contacts
|
|
}
|
|
}
|