jiuyiUniapp/jiuyi2/components/public/jy-fund/index.vue

41 lines
1.2 KiB
Vue

<!-- 店家 商品信息 -->
<template>
<view class="jy-balance-index">
<view class="mt20">
<JyShopInformation :showStatus="false"></JyShopInformation>
<!-- 商品信息 -->
<JyCommodityInformation :showType="1"></JyCommodityInformation>
<ClickShowMore>
<uni-section v-for="(item, index) in list2" :key="index" :title="item.title" titleColor="#999999"
titleFontSize="24rpx" />
</ClickShowMore>
</view>
</view>
</template>
<script setup>
import { ref } from 'vue'
// 商品信息
import JyCommodityInformation from '@/components/public/jy-commodity-information'
// 店铺信息
import JyShopInformation from '@/components/public/jy-shop-information'
// 查看更多
import ClickShowMore from '@/components/public/click-show-more'
const list2 = ref([{
title: '订单编号:123123123'
}, {
title: '申请金额:100'
}, {
title: '申请金额:100'
}, {
title: '提现时间:2022-02-02'
}])
</script>
<style scoped lang="scss">
::v-deep .uni-section-header__content {
display: flex;
flex-direction: row;
justify-content: space-between;
}
</style>