wangyujian_wd

fix:1)电子报-读报纸列表UI修改优化;

@@ -110,7 +110,7 @@ export struct ENewspaperListDialog { @@ -110,7 +110,7 @@ export struct ENewspaperListDialog {
110 ListItem() { 110 ListItem() {
111 Column() { 111 Column() {
112 if (itemIndex == 0) { 112 if (itemIndex == 0) {
113 - Text(item.pageNum + item.pageName) 113 + Text(item.pageNum + '版:' + item.pageName)
114 .fontSize($r('app.float.font_size_14')) 114 .fontSize($r('app.float.font_size_14'))
115 .fontColor($r('app.color.color_ED2800')) 115 .fontColor($r('app.color.color_ED2800'))
116 .fontWeight(600) 116 .fontWeight(600)
@@ -130,6 +130,7 @@ export struct ENewspaperListDialog { @@ -130,6 +130,7 @@ export struct ENewspaperListDialog {
130 Text(positionItem.title) 130 Text(positionItem.title)
131 .fontSize($r('app.float.font_size_17')) 131 .fontSize($r('app.float.font_size_17'))
132 .fontColor($r('app.color.color_222222')) 132 .fontColor($r('app.color.color_222222'))
  133 + .fontWeight(600)
133 .margin({ top: 8 }) 134 .margin({ top: 8 })
134 .maxLines(2) 135 .maxLines(2)
135 } 136 }
@@ -172,9 +173,12 @@ export struct ENewspaperListDialog { @@ -172,9 +173,12 @@ export struct ENewspaperListDialog {
172 // } 173 // }
173 }) 174 })
174 } 175 }
175 -  
176 }) 176 })
177 } 177 }
  178 + .divider({
  179 + strokeWidth: 0.5,
  180 + color: '#EDEDED'
  181 + })
178 } 182 }
179 }) 183 })
180 } 184 }