1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="store_more">
- <proGood v-for="item in 20" :key="item"/>
- </view>
- </template>
- <script>
- import proGood from './components/procurement_good.vue'
- export default {
- components: {
- proGood,
- },
- data() {
- return {}
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .store_more {
- background: #F7F7F7;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- padding: 24rpx;
- }
- </style>
|