doum
13 小时以前 1382e80f33270e77e06414ce8ad3f085fde6142a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<template>
    <view class="box">
        <view class="box_goods">
            <view class="box_goods_label">退款商品</view>
            <view class="box_goods_info">
                <view class="box_goods_info_img">
                    <image src="@/static/uni.png" mode="widthFix"></image>
                </view>
                <view class="box_goods_info_right">
                    <view class="box_goods_info_right_a">
                        <view class="title">清澄白河马克杯-节日版</view>
                        <view class="price">
                            <text>¥</text>
                            <text>79</text>
                            <text>.98</text>
                        </view>
                    </view>
                    <view class="box_goods_info_right_b">
                        <text>白色</text>
                        <text>x1</text>
                    </view>
                </view>
            </view>
        </view>
        <view class="box_lx">
            <view class="box_lx_label">选择售后类型</view>
            <view class="box_lx_list">
                <view class="box_lx_list_item" @click="jump">
                    <view class="left">
                        <image src="@/static/icon/ic_tuikuan@2x.png" mode="widthFix"></image>
                        <view class="left_info">
                            <text>我要退款(无需退货)</text>
                            <text>与卖家协商同意不用退货只退款</text>
                        </view>
                    </view>
                    <uni-icons type="forward" color="#999999" size="20"></uni-icons>
                </view>
                <view class="box_lx_list_item" @click="jump">
                    <view class="left">
                        <image src="@/static/icon/ic_tuihuo@2x.png" mode="widthFix"></image>
                        <view class="left_info">
                            <text>我要退货退款</text>
                            <text>已收到货,需要退还收到的货物</text>
                        </view>
                    </view>
                    <uni-icons type="forward" color="#999999" size="20"></uni-icons>
                </view>
                <view class="box_lx_list_item" @click="jump">
                    <view class="left">
                        <image src="@/static/icon/ic_huanhuo@2x.png" mode="widthFix"></image>
                        <view class="left_info">
                            <text>换货</text>
                            <text>已收到货,需要退还更换</text>
                        </view>
                    </view>
                    <uni-icons type="forward" color="#999999" size="20"></uni-icons>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        },
        methods: {
            jump() {
                uni.navigateTo({
                    url: '/pages/spplyRefund/index'
                });
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        .box_goods {
            width: 100%;
            padding: 28rpx 32rpx;
            box-sizing: border-box;
            background-color: #ffffff;
            .box_goods_label {
                font-size: 32rpx;
                font-family: PingFang SC-Semibold, PingFang SC;
                font-weight: 600;
                color: #333333;
                margin-bottom: 32rpx;
            }
            .box_goods_info {
                display: flex;
                align-items: center;
                .box_goods_info_img {
                    flex-shrink: 0;
                    width: 180rpx;
                    height: 180rpx;
                    background: #FFFFFF;
                    border-radius: 12rpx;
                    border: 2rpx solid #F5F5F5;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 20rpx;
                    image {
                        width: 160rpx;
                        height: 160rpx;
                    }
                }
                .box_goods_info_right {
                    flex: 1;
                    height: 180rpx;
                    display: flex;
                    flex-direction: column;
                    .box_goods_info_right_a {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        .title {
                            width: 320rpx;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            font-size: 28rpx;
                            font-family: PingFang SC-Medium, PingFang SC;
                            font-weight: 500;
                            color: #333333;
                        }
                        .price {
                            display: flex;
                            align-items: center;
                            text {
                                &:nth-child(1) {
                                    font-size: 20rpx;
                                    font-family: PingFang SC-Semibold, PingFang SC;
                                    font-weight: 600;
                                    color: #333333;
                                    margin-top: 6rpx;
                                }
                                &:nth-child(2) {
                                    font-size: 28rpx;
                                    font-family: PingFang SC-Semibold, PingFang SC;
                                    font-weight: 600;
                                    color: #333333;
                                }
                                &:nth-child(3) {
                                    font-size: 20rpx;
                                    font-family: PingFang SC-Semibold, PingFang SC;
                                    font-weight: 600;
                                    color: #333333;
                                    margin-top: 6rpx;
                                }
                            }
                        }
                    }
                    .box_goods_info_right_b {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-top: 16rpx;
                        text {
                            font-size: 28rpx;
                            font-family: PingFang SC-Medium, PingFang SC;
                            font-weight: 500;
                            color: #999999;
                        }
                    }
                }
            }
        }
        .box_lx {
            width: 100%;
            padding: 28rpx 32rpx 0 32rpx;
            box-sizing: border-box;
            background-color: #ffffff;
            margin-top: 16rpx;
            .box_lx_label {
                font-size: 32rpx;
                font-family: PingFang SC-Semibold, PingFang SC;
                font-weight: 600;
                color: #333333;
                margin-bottom: 16rpx;
            }
            .box_lx_list {
                display: flex;
                flex-direction: column;
                .box_lx_list_item {
                    width: 100%;
                    height: 148rpx;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    border-bottom: 2rpx solid #F4F5F4;
                    &:last-child {
                        border: none !important;
                    }
                    .left {
                        display: flex;
                        align-items: center;
                        image {
                            flex-shrink: 0;
                            width: 44rpx;
                            height: 44rpx;
                            margin-right: 24rpx;
                        }
                        .left_info {
                            flex: 1;
                            display: flex;
                            flex-direction: column;
                            text {
                                &:nth-child(1) {
                                    font-size: 32rpx;
                                    font-family: PingFang SC-Semibold, PingFang SC;
                                    font-weight: 600;
                                    color: #333333;
                                }
                                &:nth-child(2) {
                                    font-size: 28rpx;
                                    font-family: PingFang SC-Regular, PingFang SC;
                                    font-weight: 400;
                                    color: #666666;
                                    margin-top: 16rpx;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
</style>