123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // components/Yl_Empty/index.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- text: {
- type: String,
- value: "暂无数据"
- },
- marTop: {
- type: String,
- value: "150rpx"
- },
- sonMarTop: {
- type: String,
- value: "20"
- },
- icon: {
- type: String,
- value: 'icon-zanwushuju'
- }
- },
- options: {
- addGlobalClass: true
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|