import { getShopPage } from '../../api/index' Component({ /** * 组件的属性列表 */ properties: { type: { // 属性名 type: String, value: '0', observer(val) { if(val === '1'){ this.getShops() } } }, }, data: { }, methods: { getShops() { getShopPage() }, jumpStore() { wx.navigateTo({ url: '/pages/store/store', }) } } })