Browse Source

### 退差价

cr 4 years ago
parent
commit
bc51238d7d

+ 3 - 0
releaselog.md

@@ -1,4 +1,7 @@
1 1
 
2
+# 0.3.1 (20.12.3 18:00)
3
+### 退差价
4
+
2 5
 # 0.2.9 (20.11.2273 11:00)
3 6
 ### 退款   视频上传  用户角色判断
4 7
 

+ 1 - 0
src/common/store/common.js

@@ -12,6 +12,7 @@ const module = {
12 12
         specData: null,   // manage/spec-edit 编辑时临时保存
13 13
         skuItem: null,   // manage/spec-item-form 编辑时临时保存
14 14
         curOrder: null,   // index/refund 售后临时保存
15
+        disparityData:null, // index/disparity 售后临时保存
15 16
     },
16 17
 
17 18
     // 同步方法

+ 12 - 0
src/pages.json

@@ -52,6 +52,18 @@
52 52
                 "navigationBarTitleText": "部分退款"
53 53
             }
54 54
         },
55
+        {
56
+            "path": "pages/index/difference",
57
+            "style": {
58
+                "navigationBarTitleText": "退差价"
59
+            }
60
+        },
61
+        {
62
+            "path": "pages/index/disparity",
63
+            "style": {
64
+                "navigationBarTitleText": "退差价"
65
+            }
66
+        },
55 67
         {
56 68
             "path": "pages/manage/index",
57 69
             "style": {

+ 386 - 0
src/pages/index/difference.vue

@@ -0,0 +1,386 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="tips">温馨提示:请优先联系用户协商处理</div>
4
+        <div class="black-tit">请选择退差价商品</div>
5
+        <div v-if="orderData">
6
+            <checkbox-group class="item-list" @change="itemChange">
7
+                <label
8
+                    class="item"
9
+                    v-for="(item, index) of orderData.orderItems"
10
+                    :key="index"
11
+                    :class="{ invalid: item.invalid }"
12
+                >
13
+                    <div class="check">
14
+                        <checkbox
15
+                            v-if="!item.invalid"
16
+                            class="checkbox"
17
+                            :value="item.id"
18
+                        />
19
+                    </div>
20
+                    <div class="main">
21
+                        <div class="info">
22
+                            <my-image
23
+                                :src="item.productImage"
24
+                                class="img"
25
+                            ></my-image>
26
+                            <div class="data">
27
+                                <div class="tit">
28
+                                    {{ item.productName }}
29
+                                </div>
30
+                                <div>
31
+                                    <span class="num"
32
+                                        >数量:x {{ item.count }}</span
33
+                                    >
34
+                                    <span class="num" v-if="item.skuName"
35
+                                        >规格: {{ item.skuName }}</span
36
+                                    >
37
+                                </div>
38
+                                <div class="des">
39
+                                    支付金额:
40
+                                    <span class="price"
41
+                                        >¥{{
42
+                                            item.payAmount | minuteToRmb
43
+                                        }}</span
44
+                                    >
45
+                                </div>
46
+                            </div>
47
+                        </div>
48
+                        <div
49
+                            class="difference"
50
+                            v-if="item.refundAmount && item.actualPickingWeight"
51
+                        >
52
+                            <div class="name">
53
+                                已退差价:¥{{
54
+                                    item.refundAmount | minuteToRmb
55
+                                }}
56
+                            </div>
57
+                            <div class="">已退重量:{{item.actualPickingWeight || '0'}}</div>
58
+                        </div>
59
+                    </div>
60
+                </label>
61
+            </checkbox-group>
62
+        </div>
63
+        <div class="btn-box">
64
+            <span class="btn" @click="disparity">退差价</span>
65
+        </div>
66
+    </div>
67
+</template>
68
+
69
+<script>
70
+import MyImage from "../../components/image/index";
71
+
72
+export default {
73
+    name: "",
74
+    components: { MyImage },
75
+
76
+    // 数据
77
+    data() {
78
+        return {
79
+            orderData: {},
80
+            curReason: "",
81
+            curGoodItemIds: [],
82
+            submitLoading: false,
83
+        };
84
+    },
85
+
86
+    onLoad() {
87
+        let curOrder = this.$store.state.common.curOrder;
88
+        this.orderData = this.initData(curOrder);
89
+        console.log(curOrder);
90
+        this.$store.commit("common/update", {
91
+            curOrder: null,
92
+        });
93
+        if (!curOrder) {
94
+            this.router.back();
95
+        }
96
+    },
97
+    async onShow() {},
98
+    // 函数
99
+    methods: {
100
+        // 初始化订单数据
101
+        initData(data) {
102
+            let d = JSON.parse(JSON.stringify(data));
103
+            console.log(d);
104
+            if (d.afterSaleList) {
105
+                for (let orderItem of d.orderItems) {
106
+                    for (let afterSale of d.afterSaleList) {
107
+                        // 判断订单项是否有退款
108
+                        if (afterSale.orderInfo.orderItemId === orderItem.id) {
109
+                            orderItem.invalid = true;
110
+                        }
111
+                    }
112
+                    // 判断是否有退差价
113
+                    if (
114
+                        orderItem.refundAmount &&
115
+                        orderItem.actualPickingWeight
116
+                    ) {
117
+                        orderItem.invalid = true;
118
+                    }
119
+                }
120
+            }
121
+            d.orderItems.sort((a, b) => (a.invalid ? 1 : -1));
122
+            return d;
123
+        },
124
+
125
+        itemChange(e) {
126
+            this.curGoodItemIds = e.detail.value;
127
+        },
128
+
129
+        // 退差价
130
+        disparity() {
131
+            if (this.submitLoading) {
132
+                return;
133
+            }
134
+            if (this.curGoodItemIds.length === 0) {
135
+                return this.fn.showToast("请选择订单项");
136
+            }
137
+            let arr = [];
138
+            for (id of this.curGoodItemIds) {
139
+                for (let item of this.orderData.orderItems) {
140
+                    if (item.id === id) {
141
+                        arr.push(item);
142
+                    }
143
+                }
144
+            }
145
+            this.$store.commit("common/update", {
146
+                disparityData: arr,
147
+            });
148
+            let id = this.orderData.orderInfo.id;
149
+            console.log(this.orderData, id);
150
+            this.router.push({
151
+                path: "/pages/index/disparity",
152
+                query: {
153
+                    orderId: id,
154
+                },
155
+            });
156
+        },
157
+
158
+        // 取消订单
159
+        cancelOrder(flag) {
160
+            let str = "确认取消该订单,并全部退款";
161
+            if (flag === true) {
162
+                str = "你已选中所有商品,确认后将取消订单全部退款";
163
+            }
164
+            let val = this.orderData;
165
+            this.fn
166
+                .showModal({
167
+                    content: str,
168
+                })
169
+                .then((res) => {
170
+                    if (res.confirm) {
171
+                        if (val.loading) {
172
+                            return;
173
+                        }
174
+                        val.loading = true;
175
+                        uni.showLoading({
176
+                            title: "提交中...",
177
+                            mask: true,
178
+                        });
179
+
180
+                        this.api
181
+                            .post(
182
+                                "/Order/Cancel",
183
+                                {
184
+                                    query: true,
185
+                                    id: val.orderInfo.id,
186
+                                },
187
+                                { pass: true }
188
+                            )
189
+                            .then((res) => {
190
+                                uni.hideLoading();
191
+                                val.loading = false;
192
+                                if (res.success) {
193
+                                    this.fn.showToast("取消成功");
194
+                                    this.router.back();
195
+                                } else {
196
+                                    this.fn.showToast(
197
+                                        "取消失败:" + res.message
198
+                                    );
199
+                                }
200
+                            });
201
+                    }
202
+                });
203
+        },
204
+    },
205
+
206
+    // 数据计算
207
+    computed: {
208
+        user() {
209
+            return this.$store.state.user.user;
210
+        },
211
+        refundNum() {
212
+            let num = 0;
213
+            for (let id of this.curGoodItemIds) {
214
+                for (let item of this.orderData.orderItems) {
215
+                    if (item.id === id) {
216
+                        num += item.payAmount;
217
+                    }
218
+                }
219
+            }
220
+            num = num.toFixed(2);
221
+            return num;
222
+        },
223
+    },
224
+
225
+    // 数据监听
226
+    watch: {},
227
+};
228
+</script>
229
+
230
+<style lang="scss" scoped>
231
+.page {
232
+    padding-bottom: px(180);
233
+}
234
+.tips {
235
+    background-color: #fef9f3;
236
+    font-size: px(40);
237
+    padding: 0 px(40);
238
+    height: px(100);
239
+    line-height: px(100);
240
+    color: #ec883d;
241
+}
242
+.black-tit {
243
+    padding: px(50) px(40) px(30);
244
+    background-color: #f1f0f5;
245
+    font-size: px(42);
246
+}
247
+.btn-box {
248
+    position: fixed;
249
+    bottom: 0;
250
+    left: 0;
251
+    right: 0;
252
+    z-index: 100;
253
+    background-color: #fff;
254
+    padding: px(40);
255
+    display: flex;
256
+    justify-content: space-between;
257
+    align-items: center;
258
+    .btn {
259
+        display: block;
260
+        width: 100%;
261
+        height: px(110);
262
+        border-radius: px(10);
263
+        color: #fff;
264
+        text-align: center;
265
+        line-height: px(110);
266
+        background-color: rgb(0, 188, 38);
267
+    }
268
+    .all-btn {
269
+        background-color: #f3f3f3;
270
+        color: #666;
271
+    }
272
+}
273
+.item-list {
274
+    padding: px(20) px(40);
275
+    .item {
276
+        display: flex;
277
+        justify-content: space-between;
278
+        align-items: center;
279
+        padding: px(40) 0;
280
+        border-bottom: 1px solid #f1f1f1;
281
+        &.invalid {
282
+            background-color: #efefef;
283
+        }
284
+    }
285
+    .check {
286
+        width: px(100);
287
+        flex-shrink: 0;
288
+        margin-right: px(20);
289
+    }
290
+    .checkbox {
291
+        transform: scale(0.8);
292
+    }
293
+    .main {
294
+        width: 100%;
295
+    }
296
+    .info {
297
+        width: 100%;
298
+        display: flex;
299
+        justify-content: space-between;
300
+        align-items: stretch;
301
+    }
302
+    .img {
303
+        width: px(180);
304
+        height: px(180);
305
+        flex-shrink: 0;
306
+        margin-right: px(20);
307
+        /deep/ img {
308
+            width: px(180);
309
+            height: px(180);
310
+            background: #f1f1f1;
311
+        }
312
+    }
313
+    .data {
314
+        width: 100%;
315
+    }
316
+    .tit {
317
+        font-size: px(44);
318
+        @include omits(1);
319
+    }
320
+    .des {
321
+        margin-top: px(10);
322
+        font-size: px(40);
323
+    }
324
+    .price {
325
+        font-size: px(40);
326
+        color: #ff475f;
327
+    }
328
+    .num {
329
+        font-size: px(36);
330
+        color: #666;
331
+        display: inline-block;
332
+        width: px(300);
333
+    }
334
+}
335
+.refund-info {
336
+    padding: px(50) px(40) px(30);
337
+    .head {
338
+        display: flex;
339
+        justify-content: space-between;
340
+        align-items: center;
341
+    }
342
+    .tit {
343
+        font-size: px(44);
344
+        font-weight: 700;
345
+        color: #666;
346
+    }
347
+    .money {
348
+        font-size: px(48);
349
+        color: #ff475f;
350
+        font-weight: 700;
351
+    }
352
+}
353
+.info-list {
354
+    background-color: #fff;
355
+    .item {
356
+        padding: px(30) px(40);
357
+        border-bottom: 1px solid #f1f1f1;
358
+        display: flex;
359
+        justify-content: space-between;
360
+        align-items: center;
361
+    }
362
+    .radio {
363
+        width: px(100);
364
+        flex-shrink: 0;
365
+        .radio-inp {
366
+            transform: scale(0.8);
367
+        }
368
+    }
369
+    .info {
370
+        width: 100%;
371
+        font-size: px(44);
372
+    }
373
+}
374
+.difference {
375
+    display: flex;
376
+    justify-content: space-between;
377
+    align-items: center;
378
+    background-color: #e9e9e9;
379
+    color: #666;
380
+    padding: px(20) px(10);
381
+    font-size: px(38);
382
+    .link {
383
+        text-decoration: underline;
384
+    }
385
+}
386
+</style>

+ 386 - 0
src/pages/index/disparity.vue

@@ -0,0 +1,386 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="black-tit">调整实拣重量退差价</div>
4
+        <ul class="item-list">
5
+            <!-- <li
6
+                class="item"
7
+                v-for="(item, index) of orderItems"
8
+                :key="index"
9
+                :class="{ invalid: item.invalid }"
10
+            >
11
+                <div class="check">
12
+                    <checkbox
13
+                        v-if="!item.invalid"
14
+                        class="checkbox"
15
+                        :value="item.id"
16
+                    />
17
+                </div>
18
+                <div class="info">
19
+                    <my-image :src="item.productImage" class="img"></my-image>
20
+                    <div class="data">
21
+                        <div class="tit">
22
+                            {{ item.productName }}
23
+                        </div>
24
+                        <div>
25
+                            <span class="num">数量:x {{ item.count }}</span>
26
+                            <span class="num" v-if="item.skuName"
27
+                                >规格: {{ item.skuName }}</span
28
+                            >
29
+                        </div>
30
+                        <div class="des">
31
+                            支付金额:
32
+                            <span class="price"
33
+                                >¥{{ item.payAmount | minuteToRmb }}</span
34
+                            >
35
+                        </div>
36
+                    </div>
37
+                </div>
38
+            </li> -->
39
+            <li class="item" v-for="(item, index) of orderItems" :key="index">
40
+                <div class="info">
41
+                    <my-image :src="item.productImage" class="img"></my-image>
42
+                    <div class="data">
43
+                        <div class="tit">{{ item.productName }}</div>
44
+                        <div>
45
+                            <span class="num">数量:x {{ item.count }}</span>
46
+                            <span class="num" v-if="skuName"
47
+                                >规格: {{ item.skuName }}</span
48
+                            >
49
+                        </div>
50
+                        <div class="des">
51
+                            支付金额:
52
+                            <span class="price"
53
+                                >¥{{ item.payAmount | minuteToRmb }}</span
54
+                            >
55
+                        </div>
56
+                    </div>
57
+                </div>
58
+                <div class="tools">
59
+                    <div class="l">应拣重量:{{ item.weight || 0 }} g</div>
60
+                    <div class="r">
61
+                        实拣重量:
62
+                        <input
63
+                            class="input"
64
+                            type="number"
65
+                            v-model="item.reality_weight"
66
+                            @blur="weightChange(item)"
67
+                        />
68
+                        g
69
+                    </div>
70
+                </div>
71
+                <div class="tools money-box">
72
+                    <div class="r">
73
+                        应退金额:
74
+                        <input
75
+                            class="input money"
76
+                            type="digit"
77
+                            v-model="item.refund_price"
78
+                        />
79
+                        元
80
+                    </div>
81
+                </div>
82
+            </li>
83
+        </ul>
84
+        <div class="refund-info">
85
+            <div class="head">
86
+                <div class="tit">退款差价总额</div>
87
+                <div class="money">¥{{ refundNum }}</div>
88
+            </div>
89
+            <!-- <div class="des">
90
+                备注:
91
+            </div> -->
92
+        </div>
93
+        <div class="btn-box">
94
+            <span class="btn" @click="submit">确定</span>
95
+        </div>
96
+    </div>
97
+</template>
98
+
99
+<script>
100
+import MyImage from "../../components/image/index";
101
+
102
+export default {
103
+    name: "",
104
+    components: { MyImage },
105
+
106
+    // 数据
107
+    data() {
108
+        return {
109
+            orderId: "",
110
+            orderItems: [],
111
+            submitLoading: false,
112
+        };
113
+    },
114
+
115
+    onLoad(opts) {
116
+        console.log(opts);
117
+        let orderItems = this.$store.state.common.disparityData;
118
+        this.orderItems = JSON.parse(JSON.stringify(orderItems));
119
+        for (let item of this.orderItems) {
120
+            item.reality_weight = 0;
121
+        }
122
+        this.orderItems = this.orderItems;
123
+        this.orderId = opts.orderId;
124
+    },
125
+    async onShow() {},
126
+    // 函数
127
+    methods: {
128
+        weightChange(val) {
129
+            let b = val.payAmount / val.weight;
130
+            if (val.reality_weight < val.weight) {
131
+                val.reality_price = b * val.reality_weight;
132
+                val.refund_price = (val.payAmount - val.reality_price) / 100;
133
+                console.log(val.refund_price);
134
+                val.refund_price = val.refund_price.toFixed(2);
135
+            }
136
+            this.orderItems = [...this.orderItems];
137
+        },
138
+        submit() {
139
+            for (let item of this.orderItems) {
140
+                if (!item.refund_price) {
141
+                    return this.fn.showToast(`请输入所有退款价格`);
142
+                }
143
+                if (!item.reality_weight) {
144
+                    return this.fn.showToast(`请输入所有退款重量`);
145
+                }
146
+                console.log(item.refund_price, item.payAmount);
147
+                let refundAmount = parseInt(Number(item.refund_price) * 100);
148
+                if (refundAmount > item.payAmount) {
149
+                    return this.fn.showToast(`退款金额不能大于支付金额`);
150
+                }
151
+            }
152
+            let data = {
153
+                orderId: this.orderId,
154
+                refundDifferenceList: [],
155
+            };
156
+            for (let item of this.orderItems) {
157
+                data.refundDifferenceList.push({
158
+                    orderItemId: item.id,
159
+                    actualPickingWeight: Number(item.reality_weight),
160
+                    refundAmount: parseInt(Number(item.refund_price) * 100),
161
+                    refundCount: item.count,
162
+                });
163
+            }
164
+            this.fn
165
+                .showModal({
166
+                    content: "确认退款当前差价",
167
+                })
168
+                .then((res) => {
169
+                    if (res.confirm) {
170
+                        this.submitLoading = true;
171
+                        uni.showLoading({
172
+                            title: "提交中...",
173
+                            mask: true,
174
+                        });
175
+                        this.api
176
+                            .post("/order/refundDifference", data, {
177
+                                pass: true,
178
+                            })
179
+                            .then((res) => {
180
+                                uni.hideLoading();
181
+                                this.submitLoading = false;
182
+                                if (res.success) {
183
+                                    this.fn.showToast("提交成功");
184
+                                    this.router.back(2);
185
+                                }else{
186
+                                    this.fn.showToast(
187
+                                        "提交失败:" + res.message
188
+                                    );
189
+                                }
190
+                            });
191
+                    }
192
+                });
193
+        },
194
+    },
195
+
196
+    // 数据计算
197
+    computed: {
198
+        user() {
199
+            return this.$store.state.user.user;
200
+        },
201
+        refundNum() {
202
+            let num = 0;
203
+            for (let id of this.orderItems) {
204
+                for (let item of this.orderItems) {
205
+                    if (item.refund_price) {
206
+                        num += Number(item.refund_price);
207
+                    }
208
+                }
209
+            }
210
+            num = num.toFixed(2);
211
+            return num;
212
+        },
213
+    },
214
+
215
+    // 数据监听
216
+    watch: {},
217
+};
218
+</script>
219
+
220
+<style lang="scss" scoped>
221
+.page {
222
+    padding-bottom: px(180);
223
+}
224
+.tips {
225
+    background-color: #fef9f3;
226
+    font-size: px(40);
227
+    padding: 0 px(40);
228
+    height: px(100);
229
+    line-height: px(100);
230
+    color: #ec883d;
231
+}
232
+.black-tit {
233
+    padding: px(50) px(40) px(30);
234
+    background-color: #f1f0f5;
235
+    font-size: px(42);
236
+}
237
+.btn-box {
238
+    position: fixed;
239
+    bottom: 0;
240
+    left: 0;
241
+    right: 0;
242
+    z-index: 100;
243
+    background-color: #fff;
244
+    padding: px(40);
245
+    display: flex;
246
+    justify-content: space-between;
247
+    align-items: center;
248
+    .btn {
249
+        display: block;
250
+        width: 100%;
251
+        height: px(110);
252
+        border-radius: px(10);
253
+        color: #fff;
254
+        text-align: center;
255
+        line-height: px(110);
256
+        background-color: rgb(0, 188, 38);
257
+    }
258
+    .all-btn {
259
+        background-color: #f3f3f3;
260
+        color: #666;
261
+    }
262
+}
263
+.item-list {
264
+    padding: px(20) px(40);
265
+    .item {
266
+        padding: px(40) 0;
267
+        border-bottom: 1px solid #f1f1f1;
268
+        &.invalid {
269
+            background-color: #efefef;
270
+        }
271
+    }
272
+    .check {
273
+        width: px(100);
274
+        flex-shrink: 0;
275
+        margin-right: px(20);
276
+    }
277
+    .checkbox {
278
+        transform: scale(0.8);
279
+    }
280
+    .info {
281
+        width: 100%;
282
+        display: flex;
283
+        justify-content: space-between;
284
+        align-items: stretch;
285
+    }
286
+    .img {
287
+        width: px(180);
288
+        height: px(180);
289
+        flex-shrink: 0;
290
+        margin-right: px(20);
291
+        /deep/ img {
292
+            width: px(180);
293
+            height: px(180);
294
+            background: #f1f1f1;
295
+        }
296
+    }
297
+    .data {
298
+        width: 100%;
299
+    }
300
+    .tit {
301
+        font-size: px(44);
302
+        @include omits(1);
303
+    }
304
+    .des {
305
+        margin-top: px(10);
306
+        font-size: px(40);
307
+    }
308
+    .price {
309
+        font-size: px(40);
310
+        color: #ff475f;
311
+    }
312
+    .num {
313
+        font-size: px(36);
314
+        color: #666;
315
+        display: inline-block;
316
+        width: px(300);
317
+    }
318
+    .tools {
319
+        display: flex;
320
+        align-items: center;
321
+        justify-content: space-between;
322
+        font-size: px(40);
323
+        padding-top: px(10);
324
+        border-top: 1px dashed #f1f1f1;
325
+        margin-top: px(10);
326
+        .r {
327
+            display: flex;
328
+            justify-content: space-between;
329
+            align-items: center;
330
+            .input {
331
+                border: 1px solid #efefef;
332
+                display: inline-block;
333
+                width: px(150);
334
+                height: px(50);
335
+                padding: px(5);
336
+                margin: 0 px(20) 0 px(10);
337
+            }
338
+        }
339
+    }
340
+    .money-box {
341
+        // .money {
342
+        //     display: inline-block;
343
+        //     width: 100%;
344
+        // }
345
+    }
346
+}
347
+.refund-info {
348
+    padding: px(50) px(40) px(30);
349
+    .head {
350
+        display: flex;
351
+        justify-content: space-between;
352
+        align-items: center;
353
+    }
354
+    .tit {
355
+        font-size: px(44);
356
+        font-weight: 700;
357
+        color: #666;
358
+    }
359
+    .money {
360
+        font-size: px(48);
361
+        color: #ff475f;
362
+        font-weight: 700;
363
+    }
364
+}
365
+.info-list {
366
+    background-color: #fff;
367
+    .item {
368
+        padding: px(30) px(40);
369
+        border-bottom: 1px solid #f1f1f1;
370
+        display: flex;
371
+        justify-content: space-between;
372
+        align-items: center;
373
+    }
374
+    .radio {
375
+        width: px(100);
376
+        flex-shrink: 0;
377
+        .radio-inp {
378
+            transform: scale(0.8);
379
+        }
380
+    }
381
+    .info {
382
+        width: 100%;
383
+        font-size: px(44);
384
+    }
385
+}
386
+</style>

+ 24 - 5
src/pages/index/index.vue

@@ -130,7 +130,7 @@
130 130
                                             </div>
131 131
                                             <div
132 132
                                                 class="btns"
133
-                                                v-if="afterSale.status === 1"
133
+                                                v-if="afterSale.status === 1 || afterSale.status === 5"
134 134
                                             >
135 135
                                                 <span
136 136
                                                     class="btn"
@@ -277,19 +277,25 @@
277 277
                                     <!-- afterSaleStatus 根据售后信息里RefundType字段判断手动加的值 -->
278 278
                                     <div
279 279
                                         class="oper"
280
-                                        v-if="order.afterSaleStatus !== 'all'"
280
+                                        
281 281
                                     >
282 282
                                         <!-- 只要有一条售后就不能申请取消订单 -->
283
-                                        <span
283
+                                        <!-- <span
284 284
                                             class="oper-btn"
285 285
                                             @click="cancelOrder(order)"
286 286
                                             v-if="!order.noShowCancelOrder"
287 287
                                             >取消订单</span
288
-                                        >
288
+                                        > -->
289 289
                                         <span
290 290
                                             class="oper-btn"
291
+                                            v-if="order.afterSaleStatus !== 'all'"
291 292
                                             @click="refund(order)"
292
-                                            >部分退款</span
293
+                                            >退款</span
294
+                                        >
295
+                                        <span
296
+                                            class="oper-btn"
297
+                                            @click="refundDifference(order)"
298
+                                            >退差价</span
293 299
                                         >
294 300
                                     </div>
295 301
                                     <div
@@ -841,6 +847,19 @@ export default {
841 847
             });
842 848
         },
843 849
 
850
+        // 退差价
851
+        refundDifference(val){
852
+            this.$store.commit("common/update", {
853
+                curOrder: val,
854
+            });
855
+            this.router.push({
856
+                path: "/pages/index/difference",
857
+                query: {
858
+                    id: val.orderInfo.id,
859
+                },
860
+            });
861
+        },
862
+
844 863
         // 取消订单
845 864
         cancelOrder(val) {
846 865
             this.fn

+ 40 - 5
src/pages/index/refund.vue

@@ -64,7 +64,8 @@
64 64
             </label>
65 65
         </radio-group>
66 66
         <div class="btn-box">
67
-            <span class="btn all-btn" @click="cancelOrder">全部退款</span>
67
+            <span class="btn all-btn" @click="cancelOrder">取消订单</span>
68
+            <!-- <span class="btn all-btn" @click="disparity">退差价</span> -->
68 69
             <span class="btn" @click="submit">退款已选中</span>
69 70
         </div>
70 71
     </div>
@@ -114,7 +115,7 @@ export default {
114 115
             if (!d.afterSaleList) {
115 116
                 return d;
116 117
             }
117
-            // 判断订单项是否已经申请过
118
+            // 判断是否有退款
118 119
             let num = 0;
119 120
             for (let orderItem of d.orderItems) {
120 121
                 for (let afterSale of d.afterSaleList) {
@@ -168,7 +169,7 @@ export default {
168 169
                             mask: true,
169 170
                         });
170 171
                         this.api
171
-                            .post("/order/PartialRefundApply", sendData, {
172
+                            .post("/order/partialRefundApply", sendData, {
172 173
                                 pass: true,
173 174
                             })
174 175
                             .then((res) => {
@@ -177,17 +178,51 @@ export default {
177 178
                                 if (res.success) {
178 179
                                     this.fn.showToast("提交成功");
179 180
                                     this.router.back();
181
+                                }else{
182
+                                    
183
+                                    this.fn.showToast(
184
+                                        "提交失败:" + res.message
185
+                                    );
180 186
                                 }
181 187
                             });
182 188
                     }
183 189
                 });
184 190
         },
185 191
 
192
+        // 退差价
193
+        disparity(){
194
+            if (this.submitLoading) {
195
+                return;
196
+            }
197
+            if (this.curGoodItemIds.length === 0) {
198
+                return this.fn.showToast("请选择退货项");
199
+            }
200
+            let arr = [];
201
+            for(id of this.curGoodItemIds){
202
+                for(let item of this.orderData.orderItems){
203
+                    if(item.id === id){
204
+                        arr.push(item);
205
+                    }
206
+                }
207
+            }
208
+            this.$store.commit("common/update", {
209
+                disparityData: arr,
210
+            });
211
+            let id = this.orderData.orderInfo.id;
212
+            console.log(this.orderData,id);
213
+            this.router.replace({
214
+                path:'/pages/index/disparity',
215
+                query:{
216
+                    orderId:id
217
+                }
218
+            })
219
+        },
220
+
186 221
         // 取消订单
187 222
         cancelOrder(flag) {
188 223
             let str = '确认取消该订单,并全部退款';
189
-            if(flag){
190
-                str = '你已选中所有商品,确认后将取消订单全部退款'
224
+            if(flag === true){
225
+                str = '你已选中所有商品,确认后将取消订单全部退款';
191 226
             }
192 227
             let val = this.orderData;
193 228
             this.fn

+ 9 - 11
src/pages/manage/index.vue

@@ -55,7 +55,7 @@
55 55
 
56 56
         <button class="btn" @click="layout">退出登录</button>
57 57
 
58
-        <div class="ver">0.2.97</div>
58
+        <div class="ver">0.3.1</div>
59 59
     </div>
60 60
 </template>
61 61
 
@@ -106,17 +106,14 @@ export default {
106 106
                 this.shopList = res.data;
107 107
                 uni.hideLoading();
108 108
                 uni.stopPullDownRefresh();
109
-                if (this.curShop.id) {
110
-                } else {
109
+                if (!this.curShop.id) {
111 110
                     this.curShop = res.data[0];
112
-                    if (!this.curShop.id) {
113
-                        let user = this.$store.state.user.user;
114
-                        user.storeId = this.curShop.id;
115
-                        user.storeName = this.curShop.name;
116
-                        this.$store.commit("user/update", {
117
-                            user,
118
-                        });
119
-                    }
111
+                    let user = { ...this.$store.state.user.user };
112
+                    user.storeId = this.curShop.id;
113
+                    user.storeName = this.curShop.name;
114
+                    this.$store.commit("user/update", {
115
+                        user,
116
+                    });
120 117
                 }
121 118
             });
122 119
         },
@@ -144,6 +141,7 @@ export default {
144 141
             return this.$store.state.user.user;
145 142
         },
146 143
         isAdmin() {
144
+            //店铺管理员  系统管理员
147 145
             if (
148 146
                 this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
149 147
                 this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"

+ 1 - 1
src/pages/manage/spec-item-form.vue

@@ -67,7 +67,7 @@
67 67
                     重量:
68 68
                 </div>
69 69
                 <div class="box">
70
-                    <input type="digit" v-model="form.weight" />
70
+                    <input type="number" v-model="form.weight" />
71 71
                 </div>
72 72
                 <div class="tool">
73 73
                     <span class="">克</span>