49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<!-- 钱款去向 -->
|
|
<template>
|
|
<view class="jy-payment-destination">
|
|
<JyCommonHead class="bfff" title="钱款去向"></JyCommonHead>
|
|
<view class="jy-balance-index-money bfff">
|
|
<view class="df fdc aic bfff ptb20">
|
|
<p class="f30 c333">退款金额</p>
|
|
<view class="df aic">
|
|
<text class="f48">¥</text>
|
|
<text class="price">2</text>
|
|
</view>
|
|
</view>
|
|
<!-- 账号渠道账户 -->
|
|
<uni-section v-for="(item, index) in list" :key="index" :title="item.title" :subTitle="item.subTitle"
|
|
titleColor="#999999" :subTitleColor="item.subTitleColor" subTitleFontSize="28rpx" />
|
|
</view>
|
|
<JyFund />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import JyFund from '@/components/public/jy-fund'
|
|
import JyCommonHead from '@/components/public/jy-common-head'
|
|
|
|
const list = ref([{
|
|
title: '九亿账号',
|
|
subTitle: '123456789',
|
|
subTitleColor: '#333333'
|
|
|
|
}, {
|
|
title: '支付渠道',
|
|
subTitle: 'wx',
|
|
subTitleColor: '#333333'
|
|
|
|
}, {
|
|
title: '退款账户',
|
|
subTitle: '微信零钱',
|
|
subTitleColor: '#37B111'
|
|
}])
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.jy-balance-index-money {
|
|
.price {
|
|
font-size: 72rpx;
|
|
|
|
}
|
|
}
|
|
</style> |