1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| @Entry
| @Component
| export struct CourseCollection {
| build() {
| Column() {
| Row() {
| Image($r('app.media.left_icon'))
| .width(20)
| .height(20)
| Text('个人简历')
| .fontSize(18)
| .fontWeight(700)
| Row()
| }
| .width('100%')
| .padding(10)
| .justifyContent(FlexAlign.SpaceBetween)
|
| Divider()
|
| Image($r('app.media.person_vitae'))
| .width('100%')
| }
| }
| }
|
|