123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <view >
- <view class="top-direction">
- <view class="direction-frist">
- <view class="">
- 卖家拒绝了您的退款申请
- </view>
- </view>
- <view class="time">
- 拒绝理由拒绝理由拒绝理由拒绝理由拒绝理由
- </view>
- <view class="time">
- 2023-12-08 12:45
- </view>
- </view>
- <view class="direction-frist1">
- <view class="">
- 退款成功
- </view>
- <view class="commodity-price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style scoped lang="scss">
- .top-direction {
- padding: 36rpx 24rpx;
- border-radius: 16rpx;
- background-color: #fff;
-
- .direction-frist {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 36rpx;
- font-weight: 500;
- .commodity-price{
- color: #F83224;
- }
- }
-
- .time {
- color: rgba(34, 34, 34, .6);
- font-size: 24rpx;
- margin-top: 20rpx;
- }
-
- .direction-last{
- margin-top: 32rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #333;
- }
- .check{
- margin-top: 44rpx;
- border-radius: 38rpx;
- background-color: #fff;
- padding: 0;
- border: 2rpx solid rgba(151, 151, 151, .2);
- color: #333;
- font-size: 28rpx;
- height: 76rpx;
- }
- }
-
- .direction-frist1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 36rpx;
- font-weight: 500;
- margin-top: 20rpx;
- background-color: #fff;
- height: 100rpx;
- border-radius: 16rpx;
- padding: 0 24rpx;
- .commodity-price{
- color: #F83224;
- }
- }
- </style>
|