This commit is contained in:
ChuXun
2025-10-19 20:28:31 +08:00
parent c81f8a8b03
commit eaab9a762a
100 changed files with 23416 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// components/loading/loading.js
Component({
properties: {
show: {
type: Boolean,
value: false
},
type: {
type: String,
value: 'spinner' // skeleton, spinner, progress
},
text: {
type: String,
value: '加载中...'
},
mask: {
type: Boolean,
value: true
},
progress: {
type: Number,
value: 0
}
}
})