<template> <view class="container"> <view class="page"> <view class="refund"> <view class="steps-landscape"> <view class="title">退款流程</view> <uni-steps :options="list2" active-color="#6A59F2" :active="active" direction="column" /> </view> <view class="information"> <view class="title">退款明细</view> <view class="content"> <view class="item"> <view class="name">订单编号</view> <view class="detail">CZ202012261006450001</view> </view> <view class="item"> <view class="name">支付方式</view> <view class="detail">微信支付</view> </view> <view class="item"> <view class="name">退款金额</view> <view class="detail">20</view> </view> <view class="item"> <view class="name">退款去向</view> <view class="detail">原支付账户</view> </view> <view class="item"> <view class="name">退款原因</view> <view class="detail">多退少补</view> </view> <view class="item text"> <view class="name">退款时间</view> <view class="detail"> 2022/4/31 13: 01</view> </view> </view> </view> </view> </view> </view> </template> <script> export default { data() { return { active: 2, list2: [{ title: '提交退款申请', desc: '2022/09/09 10:30' }, { title: '物业审核中', desc: '2022/09/09 10:30' },{ title: '物业同意退款', desc: '很抱歉给您造成了不好的体验,物业已同意您 的退款申请 2022/09/09 10:30' },{ title: '退款中', desc: '平台正在为您退款,将在1-3个工作日退还至您 的支付账户2022/09/09 10:30' },{ title: '退款成功', desc: '成功退款,将原路返回您的支付账户2022/09/09 10:30' }] } }, methods: { }, onLoad() { }, onShow() { } } </script> <style> page { background-color: #F8F6F9; } </style> <style lang="scss" scoped> .page { padding: 30rpx; } .refund { .steps-landscape { background-color: #ffffff; border-radius: 16rpx; padding: 30rpx; margin-bottom: 30rpx; .title { height: 40rpx; line-height: 40rpx; padding-left: 20rpx; border-left: 3px solid #6852F0; font-size: 32rpx; color: #373737; margin-bottom: 20rpx; } } } .information { background-color: #ffffff; border-radius: 16rpx; padding: 30rpx; margin-bottom: 30rpx; .title { height: 40rpx; line-height: 40rpx; padding-left: 20rpx; border-left: 3px solid #6852F0; font-size: 32rpx; color: #373737; } .content { margin-top: 20rpx; .item { display: flex; height: 70rpx; line-height: 70rpx; .name { width: 35%; font-size: 28rpx; color: #CECED3; } .detail { width: 65%; font-size: 28rpx; color: #373737; } } } } .form-submit { height: 80rpx; line-height: 80rpx; background-color: #6A59F2; border-radius: 80rpx; width: 100%; text-align: center; font-size: 28rpx; color: #FFFFFF; margin-bottom: 30rpx; } .form-delete { height: 80rpx; line-height: 80rpx; background-color: #ffffff; border: 1px solid #6A59F2; border-radius: 80rpx; width: 100%; text-align: center; font-size: 28rpx; color: #6A59F2; } </style>