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