扩展应用结构,接入底部导航;完善个人信息页提交文案与校验代码风格。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
279 B
TypeScript
22 lines
279 B
TypeScript
// emptyData.ts
|
|
Component({
|
|
properties: {
|
|
text: {
|
|
type: String,
|
|
value: '暂无数据'
|
|
},
|
|
iconSrc: {
|
|
type: String,
|
|
value: '/images/emptyData.png'
|
|
},
|
|
containerStyle: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
textStyle: {
|
|
type: String,
|
|
value: ''
|
|
}
|
|
}
|
|
})
|