|
@@ -550,15 +550,36 @@ export struct CompleteSet {
|
|
|
.justifyContent(FlexAlign.Start)
|
|
|
|
|
|
Row() {
|
|
|
- Text('产品型号: ' + item?.materialModel ?? "")
|
|
|
+ Row() {
|
|
|
+ Text('产品名称: ' + item?.materialName ?? "")
|
|
|
+ .fontWeight(FontWeight.Regular)
|
|
|
+ .fontSize($r('app.float.fontSize_20'))
|
|
|
+ .fontColor(this.selectOrder === index ? $r('app.color.general_font_white_color') : $r('app.color.general_font_color'))
|
|
|
+ .maxLines(1)
|
|
|
+ .textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
+ }.width('50%')
|
|
|
+ Row() {
|
|
|
+ Text('产品型号: ' + item?.materialModel ?? "")
|
|
|
+ .fontWeight(FontWeight.Regular)
|
|
|
+ .fontSize($r('app.float.fontSize_20'))
|
|
|
+ .fontColor(this.selectOrder === index ? $r('app.color.general_font_white_color') : $r('app.color.general_font_color'))
|
|
|
+ .maxLines(1)
|
|
|
+ .textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
+ }.width('50%')
|
|
|
+ }
|
|
|
+ .width('100%')
|
|
|
+ .justifyContent(FlexAlign.Start)
|
|
|
+
|
|
|
+ Row() {
|
|
|
+ Text('产品编码: ' + item?.materialCode ?? "")
|
|
|
.fontWeight(FontWeight.Regular)
|
|
|
.fontSize($r('app.float.fontSize_20'))
|
|
|
.fontColor(this.selectOrder === index ? $r('app.color.general_font_white_color') : $r('app.color.general_font_color'))
|
|
|
-
|
|
|
+ .maxLines(1)
|
|
|
+ .textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
}
|
|
|
.width('100%')
|
|
|
.justifyContent(FlexAlign.Start)
|
|
|
-
|
|
|
Row() {
|
|
|
Text('计划编号: ')
|
|
|
.fontWeight(FontWeight.Regular)
|
|
@@ -568,8 +589,9 @@ export struct CompleteSet {
|
|
|
.fontSize($r('app.float.fontSize_20'))
|
|
|
.fontWeight(FontWeight.Medium)
|
|
|
.fontColor(this.selectOrder === index ? $r('app.color.general_font_white_color') : $r('app.color.general_font_color'))
|
|
|
+ .maxLines(1)
|
|
|
+ .textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
}
|
|
|
-
|
|
|
.width('100%')
|
|
|
.justifyContent(FlexAlign.Start)
|
|
|
|