1.用户登录页面
1.用户登录页面Entry
Component
struct TextInputDemo {
build() {
Column({ space: 30 }) {
Text(用户登录)
.fontSize(28)
.fontWeight(FontWeight.Bold)TextInput({ placeholder: "请输入学号/手机号码" })
.width(320)
.height(50)
.backgroundColor(0xf5f5f5)
.…
2026/7/2 7:07:41