12345678910111213141516171819202122232425262728 |
- Component({
- properties: {
- text: {
- type: String,
- value: "暂无数据"
- },
- marTop: {
- type: String,
- value: "150rpx"
- },
- sonMarTop: {
- type: String,
- value: "20"
- },
- icon: {
- type: String,
- value: 'icon-zanwushuju'
- }
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- },
- },
- options: {
- addGlobalClass: true
- },
- })
|