|
|
@@ -3,12 +3,19 @@
|
|
|
<view class="flex refund-item">
|
|
|
<view class="refund-label">退款方式:</view>
|
|
|
<view class="flex list">
|
|
|
- <view class="flex" @tap="refundType=1" >
|
|
|
- <view class="flex-center radioBtn" :class="refundType==1?'active':''">
|
|
|
- </view>退货并退款</view>
|
|
|
- <view style="margin-left: 30upx" class="flex" @tap="refundType=2">
|
|
|
- <view class="flex-center radioBtn" :class="refundType==1?'':'active'">
|
|
|
- </view>只退款</view>
|
|
|
+ <button
|
|
|
+ class="admin-button-com big"
|
|
|
+ :class="refundType==1?'blue':'default'"
|
|
|
+ @tap="refundType=1">
|
|
|
+ 退货并退款
|
|
|
+ </button>
|
|
|
+ <button
|
|
|
+ class="admin-button-com big"
|
|
|
+ :class="refundType==2?'blue':'default'"
|
|
|
+ @tap="refundType=2"
|
|
|
+ style="margin-left: 30upx;">
|
|
|
+ 只退款
|
|
|
+ </button>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="refund-item-list" v-if="refundType==1">
|
|
|
@@ -68,9 +75,6 @@
|
|
|
<view class="flex-center btn" @tap="cancelRefund">取消</view>
|
|
|
<view class="flex-center btn active" @tap="confirmRefund" style="margin-left: 80upx">确定</view>
|
|
|
</view>
|
|
|
- <view class="flex-center btn-box" style="margin-bottom:50upx;margin-top:50upx;">
|
|
|
- <view class="flex-center btn active" @tap="allRefundFn">全部退货退款</view>
|
|
|
- </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
@@ -237,25 +241,7 @@ export default {
|
|
|
padding: 30upx;
|
|
|
background: #FFFFFF;
|
|
|
font-size: 30upx;
|
|
|
- .radioBtn{
|
|
|
- width: 30upx;
|
|
|
- height: 30upx;
|
|
|
- margin-right: 10upx;
|
|
|
- border: 1upx solid #ddd;
|
|
|
- border-radius: 50%;
|
|
|
- &.active{
|
|
|
- position: relative;
|
|
|
- border: 1upx solid #3385ff;
|
|
|
- &:after{
|
|
|
- content: '';
|
|
|
- position: absolute;
|
|
|
- width: 18upx;
|
|
|
- height: 18upx;
|
|
|
- background: #3385ff;
|
|
|
- border-radius: 50%;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
.refund-item-list{
|
|
|
display: flex;
|
|
|
padding-bottom: 30upx;
|