父传子的话是在components中创建一个子组件MyTest.vue,并且在父组件中先导入(import MyTest from "./components/MyTest"),再注册(在expo二default中写上 compnents:{MyTest}),再使用标签(<MyTest>< / MyTest>),子组件要接收,在子组件的export default中(props:['obj']),在子组件中使用obj.goodsList数组中的字段就可以了(obj.id或者obj.name或者obj.price或者obj.info)