会议提交测试

This commit is contained in:
XiuYun CHEN
2025-05-12 15:04:23 +08:00
parent c8184e2b32
commit da5a1b603c
9 changed files with 12985 additions and 4327 deletions
@@ -1,13 +1,26 @@
import { MeetingItemModel,ItemModel } from '../model/ItemModel'
@Preview
@Component
export struct ItemComp {
item: MeetingItemModel = new MeetingItemModel({} as ItemModel)
build() {
Column({ space: 12 }) {
Column() {
if(this.item.count==0)
{
Text(this.item.begin_date.substring(0, 4)
+ "年"
+ this.item.begin_date.substring(5, 7)
+ "月").fontSize(14).fontColor('app.color.333333').height(35)
}
else
{
Text(this.item.count+'')
}
}
}.backgroundColor($r('app.color.e4e4e4')).width('100%')
}
}