王士厅

fix: ‘我的’消息 预约消息修改ui

... ... @@ -8,10 +8,10 @@ export struct SubscribeListChildComponent{
Column(){
Row(){
Text(`${this.item.dealTime}`)
.margin({top:"31lpx",bottom:"23lpx"})
.margin({top:16,bottom:12})
.fontWeight(400)
.fontSize("23lpx")
.lineHeight("33lpx")
.fontSize(12)
.lineHeight(17)
.fontColor($r('app.color.color_999999'))
}.width('100%')
.backgroundColor($r('app.color.color_F5F5F5'))
... ... @@ -20,78 +20,78 @@ export struct SubscribeListChildComponent{
Column(){
Column(){
Text(`${this.item.title}`)
.fontSize("31lpx")
.lineHeight("46lpx")
.fontSize(16)
.lineHeight(24)
.fontWeight(500)
.fontColor($r('app.color.color_333333'))
.margin({top:"27lpx",bottom:"25lpx"})
.margin({top:14,bottom:13})
.maxLines(1)
Text().backgroundColor($r('app.color.color_F5F5F5'))
.width('100%')
.height('1lpx')
.height(0.5)
}.alignItems(HorizontalAlign.Start)
.width("100%")
.height("98lpx")
.height(51)
Row(){
Image(`${this.item.imgUrl}`)
.width('204lpx')
.height('115lpx')
.borderRadius("6lpx")
.width(106)
.height(60)
.borderRadius(3)
.objectFit(ImageFit.Auto)
.margin({right:"23lpx"})
.margin({right:12})
Text(`${this.item.desc}`)
.fontSize("27lpx")
.lineHeight("38lpx")
.fontSize(14)
.lineHeight(20)
.fontWeight(400)
.fontColor($r('app.color.color_222222'))
.layoutWeight(1)
}.alignItems(VerticalAlign.Center)
.width("100%")
.height("160lpx")
.height(84)
Text().backgroundColor($r('app.color.color_F5F5F5'))
.width('100%')
.height('1lpx')
.height(0.5)
Row(){
Text(`${this.item.time}开始`)
.fontSize("23lpx")
.fontSize(12)
.fontWeight(600)
.lineHeight("31lpx")
.fontColor($r('app.color.color_222222'))
.lineHeight(16)
Row(){
Text("查看详情")
.fontSize("23lpx")
.lineHeight("38lpx")
.fontSize(12)
.lineHeight(20)
.fontWeight(400)
.fontColor($r('app.color.color_666666'))
.margin({right:"8lpx"})
.margin({right:4})
Image($r('app.media.subscribe_arrow_icon'))
.width('23lpx')
.height('13lpx')
.width(12)
.height(12)
.objectFit(ImageFit.Auto)
.interpolation(ImageInterpolation.High)
.margin({right:"4lpx"})
.margin({right:2})
}
}.alignItems(VerticalAlign.Center)
.justifyContent(FlexAlign.SpaceBetween)
.width("100%")
.height("73lpx")
.height(38)
}.backgroundColor($r('app.color.white'))
.borderRadius("8lpx")
.height("336lpx")
.borderRadius(4)
.height(175)
.width("100%")
.padding({left:"23lpx",right:"23lpx"})
.padding({left:12,right:12})
}
.backgroundColor($r('app.color.color_F5F5F5'))
.width("100%")
.height("423lpx")
.padding({left:"31lpx",right:"31lpx"})
.padding({left:16,right:16})
.alignItems(HorizontalAlign.Center)
}
... ...