12345678910111213141516171819202122232425 |
- // pages/threadedTree/modules/list/list.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- list: {
- type: Array
- },
- tagColor: {
- type: String,
- value: "#FA8C16"
- }
- },
- options: {
- addGlobalClass: true
- },
- methods: {
- callOut(e) {
- wx.makePhoneCall({
- phoneNumber: e.currentTarget.dataset.phonenumber
- })
- },
- }
- })
|