// components/dot/dot.js Component({ /** * 组件的属性列表 */ properties: { num:{ type:String||Number, value:0 }, offset:{ type:Array, value:[0,0] }, radius:{ type:String, value:'20rpx' }, width:{ type:String, value:"68rpx" }, height:{ type:String, value:"34rpx" }, color:{ type:String, value:'#FF663D' } }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { } })