天马学航——智慧教务系统(移动端)开发日志二
日志摘要:新增了学生端个人信息、成绩查询模块,优化前端UI等,解决了一些已知的BUG
1、学生个人信息模块
UI部分
前端UI特别简单,只需稍微设计即可
build(){
Column({
space:5}){
Text(" ")
Row({
space:10}){
Text(" ")
Image($r('app.media.back'))
.width(30)
.height(30)
.onClick(function(){
//返回上一页
router.back()//直接返回
})
Text("个人信息")
.fontSize(30)
.fontWeight(FontWeight.Bolder)
}
.width('100%')
Text("----------------------------------------------")
Text(" ")
Image($r('app.media.TX'))
.width(150)
.height(150)
Column({
space:40}){
Text(" ")
Row(){
Text("学号:")
.fontSize(25)
.fontWeight(FontWeight.Bold)
Text(this.students.sid)
.fontSize(25)
}
Row(){
Text("姓名:")
.fontSize(25)
.fontWeight(FontWeight.Bold)
Text(this.students.sname)
.fontSize(25)
}
Row(){
Text("性别:")
.fontSize(25)
.fontWeight(FontWeight.Bold)
Text(this.students.ssex)
.fontSize(25)
}
Row(){
Text("出生日期:")
.fontSize(25)
.fontWeight(FontWeight.Bold)
Text(this.students.birth)
.fontSize(25)
}
Row(){
Text("家庭住址:")
.fontSize(25)
.fontWeight(FontWeight.Bold)
Text(this.students.address)
.fontSize(25)
}
}
.width('90%')
.alignItems(HorizontalAlign.Start)
}
.width('100%')
}
请求部分
import http from