123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view>
- <goods-list :goods-list="goodsList"></goods-list>
- <home></home>
- </view>
- </template>
- <script>
- import goodsList from '@/components/groupGoodsList/index.vue';
- import home from '@/components/home';
- import {
- getCollagePartake
- } from '@/api/store.js';
- export default {
- components: {
- goodsList,
- home
- },
- data() {
- return {
- goodsList: []
- }
- },
- onLoad(option) {
- this.collage_id = option.collage_id;
- this.getCollagePartake();
- },
- methods: {
- getCollagePartake() {
- getCollagePartake({
- collage_id: this.collage_id
- }).then(res => {
- this.goodsList = res.data;
- });
- }
- },
- };
- </script>
- <style lang="scss" scoped>
- /deep/.goods-list {
- margin: 20rpx 30rpx;
- }
- </style>
|