22 lines
487 B
Vue
22 lines
487 B
Vue
<script setup>
|
|
|
|
/**
|
|
* 客服聊天界面商品列表
|
|
*/
|
|
|
|
// 商品信息
|
|
import JyCommodityInformation from '@/components/public/jy-commodity-information'
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<view class="appbw">
|
|
<scroll-view scroll-y scroll-with-animation>
|
|
<view v-for="(item, index) in 10">
|
|
<JyCommodityInformation :showType="5"></JyCommodityInformation>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style> |