// components/card-btn/index.js Component({ /** * 组件的属性列表 */ properties: { bgImgSrc: { type: String, value: '' }, title: { type: String, value: '' }, subtitle: { type: String, value: '' }, route: { type: String, value: '' }, }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { navTo() { wx.navigateTo({ url: this.data.route, success: (result) => {}, fail: (res) => { wx.showToast({ title: '敬请期待', duration: 1000, icon: 'none', }) }, complete: (res) => {}, }) } } })