Browse Source

售后修改

cr 4 years ago
parent
commit
c37230415f

+ 1 - 1
src/pages/index/index.vue

@@ -845,7 +845,7 @@ export default {
845 845
         cancelOrder(val) {
846 846
             this.fn
847 847
                 .showModal({
848
-                    content: "确认取消该订单,并退款",
848
+                    content: "确认取消该订单,并全部退款",
849 849
                 })
850 850
                 .then((res) => {
851 851
                     if (res.confirm) {

+ 54 - 3
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" @click="submit">确定</span>
67
+            <span class="btn all-btn" @click="cancelOrder">全部退款</span>
68
+            <span class="btn" @click="submit">退款已选中</span>
68 69
         </div>
69 70
     </div>
70 71
 </template>
@@ -144,7 +145,7 @@ export default {
144 145
                 return this.fn.showToast("请选择退货项");
145 146
             }
146 147
             if (this.curGoodItemIds.length === this.orderData.validItemNum) {
147
-                return this.fn.showToast("全部退款请选择取消订单");
148
+                return this.fn.showToast("退款所有请选择全部退款");
148 149
             }
149 150
             if (!this.curReason) {
150 151
                 return this.fn.showToast("请选择退货原因");
@@ -180,6 +181,49 @@ export default {
180 181
                     }
181 182
                 });
182 183
         },
184
+
185
+        // 取消订单
186
+        cancelOrder() {
187
+            let val = this.orderData;
188
+            this.fn
189
+                .showModal({
190
+                    content: "确认取消该订单,并全部退款",
191
+                })
192
+                .then((res) => {
193
+                    if (res.confirm) {
194
+                        if (val.loading) {
195
+                            return;
196
+                        }
197
+                        val.loading = true;
198
+                        uni.showLoading({
199
+                            title: "提交中...",
200
+                            mask: true,
201
+                        });
202
+
203
+                        this.api
204
+                            .post(
205
+                                "/Order/Cancel",
206
+                                {
207
+                                    query: true,
208
+                                    id: val.orderInfo.id,
209
+                                },
210
+                                { pass: true }
211
+                            )
212
+                            .then((res) => {
213
+                                uni.hideLoading();
214
+                                val.loading = false;
215
+                                if (res.success) {
216
+                                    this.fn.showToast("取消成功");
217
+                                    this.router.back();
218
+                                } else {
219
+                                    this.fn.showToast(
220
+                                        "取消失败:" + res.message
221
+                                    );
222
+                                }
223
+                            });
224
+                    }
225
+                });
226
+        },
183 227
     },
184 228
 
185 229
     // 数据计算
@@ -231,9 +275,12 @@ export default {
231 275
     z-index: 100;
232 276
     background-color: #fff;
233 277
     padding: px(40);
278
+    display: flex;
279
+    justify-content: space-between;
280
+    align-items: center;
234 281
     .btn {
235 282
         display: block;
236
-        width: 100%;
283
+        width: 47%;
237 284
         height: px(110);
238 285
         border-radius: px(10);
239 286
         color: #fff;
@@ -241,6 +288,10 @@ export default {
241 288
         line-height: px(110);
242 289
         background-color: rgb(0, 188, 38);
243 290
     }
291
+    .all-btn {
292
+        background-color: #f3f3f3;
293
+        color: #666;
294
+    }
244 295
 }
245 296
 .item-list {
246 297
     padding: px(20) px(40);

+ 2 - 2
src/pages/manage/add-good-form.vue

@@ -1073,7 +1073,7 @@ export default {
1073 1073
                 hotSaleRecommendIds: [],
1074 1074
                 businessRecommendIds: [],
1075 1075
                 participated: false,
1076
-                video: "",
1076
+                participatedBox:false,
1077 1077
                 skuInfo: skuInfo,
1078 1078
             };
1079 1079
             if(sendData.baseInfo.weight){
@@ -1101,7 +1101,7 @@ export default {
1101 1101
                 );
1102 1102
             }
1103 1103
             this.submitLoading = true;
1104
-            this.api.post("/product/SaveEdit", sendData).then((res) => {
1104
+            this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
1105 1105
                 this.submitLoading = false;
1106 1106
                 if (res.success) {
1107 1107
                     if (type === "next") {

+ 1 - 1
src/pages/manage/edit-good-form.vue

@@ -1218,7 +1218,7 @@ export default {
1218 1218
                 );
1219 1219
             }
1220 1220
             this.submitLoading = true;
1221
-            this.api.post("/product/SaveEdit", sendData).then((res) => {
1221
+            this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
1222 1222
                 this.submitLoading = false;
1223 1223
                 if (res.success) {
1224 1224
                     if (type === "next") {

+ 1 - 1
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.93</div>
58
+        <div class="ver">0.2.95</div>
59 59
     </div>
60 60
 </template>
61 61