| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import QtQuick
- // 可复用物资信息
- Component {
- id: reusematerialinfo
- Item {
- Rectangle{
- width: 250;
- height: 300;
- color: "#00ffffff"
- Rectangle {
- x: 25
- y: 25
- width: 200
- height: 300
- color: "#00ffffff"
- Image {
- x: 50
- y: 50
- width: 150
- height: 150
- visible: true
- source: model.png
- fillMode: Image.PreserveAspectFit
- }
- Text {
- x: 0
- y: 185
- width: parent.width
- height: 50
- visible: true
- text: model.name
- font.pixelSize: 30
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- color: "#ffffff"
- }
- Text {
- x: 0
- y: 250
- width: parent.width
- height: 25
- visible: true
- text: model.rfid
- font.pixelSize: 12
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- color: "#ffffff"
- }
- }
- }
- }
- }
|