cr 3 роки тому
батько
коміт
841b481a54

+ 1 - 1
src/pages/order/afterSale.vue

@@ -25,7 +25,7 @@
25 25
             <div v-if="info.rejectCount < 2 && (info.status === 4 || info.status === 6 || info.status === 10)" class="button__btn" @click="jumpApply()">申请退款</div>
26 26
             <div v-if="info.status === 1 || info.status === 5 || info.status === 8" class="button__btn" @click="jumpApply('update')">修改申请</div>
27 27
             <div v-if="info.status === 1 || info.status === 5 || info.status === 8" class="button__btn" @click="cancel">取消退款</div>
28
-            <!-- <div  class="button__btn active-btn" @click="jumpLogistics">填写物流信息</div> -->
28
+            <div  class="button__btn active-btn" @click="jumpLogistics">填写物流信息</div>
29 29
             <div v-if="info.status === 8" class="button__btn active-btn" @click="jumpLogistics">填写退货单号</div>
30 30
         </div>
31 31
         <ul class="list">

+ 249 - 219
src/pages/order/afterSaleLogistics.vue

@@ -1,286 +1,316 @@
1 1
 <template>
2
-    <div class="page" :class="{'page--iphoneX': iphoneX}">
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="page__content">
4 4
             <div class="row">
5 5
                 <div class="row__title row__title--must">快递公司</div>
6
-                <picker mode="selector" :range="logisticsNameList" range-key="name" @change="logisticsHandle">
6
+                <picker
7
+                    mode="selector"
8
+                    :range="logisticsNameList"
9
+                    range-key="name"
10
+                    @change="logisticsHandle"
11
+                >
7 12
                     <div class="row__select">
8
-                        <div class="row__text">{{ logisticsName || '请选择快递公司' }}</div>
9
-                        <img class="row__arrows" src="/static/icon/arrows_bottom.png" alt="">
13
+                        <div class="row__text">
14
+                            {{ logisticsName || "请选择快递公司" }}
15
+                        </div>
16
+                        <img
17
+                            class="row__arrows"
18
+                            src="/static/icon/arrows_bottom.png"
19
+                            alt=""
20
+                        />
10 21
                     </div>
11 22
                 </picker>
12 23
             </div>
13 24
             <div class="row">
14 25
                 <div class="row__title row__title--must">快递单号</div>
15
-                <input class="row__input" type="text" v-model="logisticsNo" placeholder="请填写快递单号">
26
+                <input
27
+                    class="row__input"
28
+                    type="text"
29
+                    v-model="logisticsNo"
30
+                    placeholder="请填写快递单号"
31
+                />
16 32
             </div>
17 33
         </div>
18
-        <div class="submit" :class="{'submit--iphoneX': iphoneX}">
34
+        <div class="submit" :class="{ 'submit--iphoneX': iphoneX }">
19 35
             <div class="submit__btn" @click="submit">提交</div>
20 36
         </div>
21 37
     </div>
22 38
 </template>
23 39
 
24 40
 <script>
25
-    export default {
26
-        name: '',
27
-
28
-        // 数据
29
-        data() {
30
-            return {
31
-                applyId: '',
32
-                logisticsName: '',
33
-                logisticsNameList: [],
34
-                logisticsNo: '',
35
-            }
41
+export default {
42
+    name: "",
43
+
44
+    // 数据
45
+    data() {
46
+        return {
47
+            applyId: "",
48
+            logisticsName: "",
49
+            logisticsNameList: [],
50
+            logisticsNo: "",
51
+        };
52
+    },
53
+
54
+    onShow() {
55
+        const self = this;
56
+
57
+        self.applyId = self.$mp.query.applyId;
58
+        self.GetDeliveries();
59
+    },
60
+
61
+    // 函数
62
+    methods: {
63
+        // 获取快递公司
64
+        GetDeliveries() {
65
+            const self = this;
66
+
67
+            self.api.get("/AfterSale/GetExpressCompanyList").then((res) => {
68
+                let arr = [];
69
+                for (let item of res.data) {
70
+                    arr.push({
71
+                        label: item.name,
72
+                        value: item.name,
73
+                        name: item.name,
74
+                        reg_mail_no: item.reg_mail_no,
75
+                    });
76
+                }
77
+                self.logisticsNameList = arr;
78
+            });
36 79
         },
37 80
 
38
-        onShow() {
39
-            const self = this
81
+        // 快递公司处理
82
+        logisticsHandle(e) {
83
+            const self = this;
84
+            let index = e.detail.value;
40 85
 
41
-            self.applyId = self.$mp.query.applyId
42
-            self.GetDeliveries()
86
+            self.logisticsName = self.logisticsNameList[index].name;
43 87
         },
44 88
 
45
-        // 函数
46
-        methods: {
47
-            // 获取快递公司
48
-            GetDeliveries() {
49
-                const self = this
50
-
51
-                self.api.get('/AfterSale/GetExpressCompanyList').then(res => {
52
-                    let arr=  [];
53
-                    for(let item of res.data){
54
-                        arr.push({
55
-                            label:item,
56
-                            value:item,
57
-                            name:item
58
-                        })
59
-                    }
60
-                    self.logisticsNameList = arr;
61
-                })
62
-            },
63
-
64
-            // 快递公司处理
65
-            logisticsHandle(e) {
66
-                const self = this
67
-                let index = e.detail.value
68
-
69
-                self.logisticsName = self.logisticsNameList[index].name
70
-            },
71
-
72
-            // 提交申请
73
-            submit() {
74
-                const self = this
75
-
76
-                if (!self.logisticsName) {
77
-                    self.fn.showToast('请选择快递公司')
78
-                } else if (!self.logisticsNo) {
79
-                    self.fn.showToast('请填写快递单号')
80
-                } else {
81
-                    self.api.post('/AfterSale/SubmitLogisticsInfo', {
82
-                        id: self.applyId,
83
-                        logisticsName: self.logisticsName,
84
-                        logisticsNo: self.logisticsNo,
85
-                    }).then(() => {
86
-                        self.router.back()
87
-                    })
89
+        // 提交申请
90
+        submit() {
91
+            const self = this;
92
+
93
+            if (!self.logisticsName) {
94
+                return self.fn.showToast("请选择快递公司");
95
+            } else if (!self.logisticsNo) {
96
+                return self.fn.showToast("请填写快递单号");
97
+            }
98
+            // 判断快递单号正则
99
+            let curExpress = {};
100
+            for (let item of this.logisticsNameList) {
101
+                if (item.name === self.logisticsName) {
102
+                    curExpress = item;
88 103
                 }
89
-            },
104
+            }
105
+            if (curExpress.reg_mail_no) {
106
+                let reg = new RegExp(curExpress.reg_mail_no);
107
+                if (!reg.test(self.logisticsNo)) {
108
+                    return self.fn.showToast("快递单号不正确");
109
+                }
110
+            }
111
+            self.api
112
+                .post("/AfterSale/SubmitLogisticsInfo", {
113
+                    id: self.applyId,
114
+                    logisticsName: self.logisticsName,
115
+                    logisticsNo: self.logisticsNo,
116
+                })
117
+                .then(() => {
118
+                    self.router.back();
119
+                });
90 120
         },
121
+    },
91 122
 
92
-        // 数据计算
93
-        computed: {},
123
+    // 数据计算
124
+    computed: {},
94 125
 
95
-        // 数据监听
96
-        watch: {},
97
-    }
126
+    // 数据监听
127
+    watch: {},
128
+};
98 129
 </script>
99 130
 
100 131
 <style lang="scss" scoped>
101
-    .page {
102
-        padding-bottom: px(200);
132
+.page {
133
+    padding-bottom: px(200);
103 134
 
104
-        &__content {
105
-            padding: px(50) 0;
106
-            border-top: solid px(25) #f8f8f8;
107
-            background-color: #fff;
108
-        }
109
-
110
-        &--iphoneX {
111
-            padding-bottom: px(230);
112
-        }
135
+    &__content {
136
+        padding: px(50) 0;
137
+        border-top: solid px(25) #f8f8f8;
138
+        background-color: #fff;
113 139
     }
114 140
 
115
-    .row {
116
-        padding: px(40);
117
-
118
-        &__title {
119
-            display: flex;
120
-            align-items: center;
121
-            font-size: px(36);
122
-            color: #333;
123
-
124
-            &--must:after {
125
-                content: '*';
126
-            }
127
-        }
128
-
129
-        &__select {
130
-            display: flex;
131
-            justify-content: space-between;
132
-            align-items: center;
133
-            height: px(85);
134
-            padding: 0 px(40);
135
-            margin-top: px(20);
136
-            border-radius: px(10);
137
-            background-color: #f5f5f5;
138
-        }
139
-
140
-        &__text {
141
-            font-size: px(36);
142
-            color: #333;
143
-        }
144
-
145
-        &__arrows {
146
-            width: px(40);
147
-            height: px(40);
148
-        }
149
-
150
-        &__explain {
151
-            margin-top: px(20);
152
-            font-size: px(36);
153
-            color: #999;
154
-        }
141
+    &--iphoneX {
142
+        padding-bottom: px(230);
143
+    }
144
+}
155 145
 
156
-        &__input {
157
-            height: px(85);
158
-            padding: 0 px(40);
159
-            margin-top: px(20);
160
-            border-radius: px(10);
161
-            background-color: #f5f5f5;
162
-        }
146
+.row {
147
+    padding: px(40);
163 148
 
164
-        &__content {
165
-            width: 100%;
166
-            height: px(230);
167
-        }
149
+    &__title {
150
+        display: flex;
151
+        align-items: center;
152
+        font-size: px(36);
153
+        color: #333;
168 154
 
169
-        &__textarea {
170
-            width: 100%;
171
-            height: 100%;
172
-            box-sizing: border-box;
173
-            padding: px(40);
174
-            margin-top: px(20);
175
-            font-size: px(36);
176
-            color: #333;
177
-            border-radius: px(10);
178
-            background-color: #f5f5f5;
155
+        &--must:after {
156
+            content: "*";
179 157
         }
180 158
     }
181 159
 
182
-    .title {
160
+    &__select {
183 161
         display: flex;
162
+        justify-content: space-between;
184 163
         align-items: center;
185
-        height: px(100);
164
+        height: px(85);
186 165
         padding: 0 px(40);
187
-        font-size: px(36);
188
-        color: #999;
189
-        background-color: #f8f8f8;
166
+        margin-top: px(20);
167
+        border-radius: px(10);
168
+        background-color: #f5f5f5;
190 169
     }
191 170
 
192
-    .bottom {
193
-        padding: px(50) px(40);
171
+    &__text {
172
+        font-size: px(36);
173
+        color: #333;
174
+    }
194 175
 
195
-        &__title {
196
-            font-size: px(36);
197
-            color: #333;
198
-        }
176
+    &__arrows {
177
+        width: px(40);
178
+        height: px(40);
179
+    }
199 180
 
200
-        &__text {
201
-            font-size: px(36);
202
-            color: #999;
203
-        }
181
+    &__explain {
182
+        margin-top: px(20);
183
+        font-size: px(36);
184
+        color: #999;
204 185
     }
205 186
 
206
-    .upload {
207
-        display: flex;
208
-        flex-wrap: wrap;
187
+    &__input {
188
+        height: px(85);
189
+        padding: 0 px(40);
209 190
         margin-top: px(20);
191
+        border-radius: px(10);
192
+        background-color: #f5f5f5;
193
+    }
210 194
 
211
-        &__item {
212
-            position: relative;
213
-            width: px(180);
214
-            height: px(180);
215
-            margin: 0 0 px(25) px(25);
195
+    &__content {
196
+        width: 100%;
197
+        height: px(230);
198
+    }
216 199
 
217
-            &:nth-child(5n+1) {
218
-                margin-left: 0;
219
-            }
220
-        }
200
+    &__textarea {
201
+        width: 100%;
202
+        height: 100%;
203
+        box-sizing: border-box;
204
+        padding: px(40);
205
+        margin-top: px(20);
206
+        font-size: px(36);
207
+        color: #333;
208
+        border-radius: px(10);
209
+        background-color: #f5f5f5;
210
+    }
211
+}
212
+
213
+.title {
214
+    display: flex;
215
+    align-items: center;
216
+    height: px(100);
217
+    padding: 0 px(40);
218
+    font-size: px(36);
219
+    color: #999;
220
+    background-color: #f8f8f8;
221
+}
222
+
223
+.bottom {
224
+    padding: px(50) px(40);
225
+
226
+    &__title {
227
+        font-size: px(36);
228
+        color: #333;
229
+    }
221 230
 
222
-        &__img {
223
-            width: 100%;
224
-            height: 100%;
225
-        }
231
+    &__text {
232
+        font-size: px(36);
233
+        color: #999;
234
+    }
235
+}
226 236
 
227
-        &__close {
228
-            position: absolute;
229
-            top: 0;
230
-            right: 0;
231
-            z-index: 1;
232
-            width: px(50);
233
-            height: px(50);
234
-            transform: translate(50%, -50%);
235
-        }
237
+.upload {
238
+    display: flex;
239
+    flex-wrap: wrap;
240
+    margin-top: px(20);
236 241
 
237
-        &__add {
238
-            display: flex;
239
-            flex-direction: column;
240
-            justify-content: center;
241
-            align-items: center;
242
-            background-color: #f5f5f5;
243
-        }
242
+    &__item {
243
+        position: relative;
244
+        width: px(180);
245
+        height: px(180);
246
+        margin: 0 0 px(25) px(25);
244 247
 
245
-        &__camera {
246
-            width: px(60);
247
-            height: px(60);
248
+        &:nth-child(5n + 1) {
249
+            margin-left: 0;
248 250
         }
251
+    }
249 252
 
250
-        &__text {
251
-            margin-top: px(20);
252
-            font-size: px(36);
253
-            color: #999;
254
-        }
253
+    &__img {
254
+        width: 100%;
255
+        height: 100%;
256
+    }
257
+
258
+    &__close {
259
+        position: absolute;
260
+        top: 0;
261
+        right: 0;
262
+        z-index: 1;
263
+        width: px(50);
264
+        height: px(50);
265
+        transform: translate(50%, -50%);
255 266
     }
256 267
 
257
-    .submit {
258
-        position: fixed;
259
-        bottom: 0;
260
-        left: 0;
261
-        z-index: 995;
268
+    &__add {
262 269
         display: flex;
270
+        flex-direction: column;
263 271
         justify-content: center;
264 272
         align-items: center;
265
-        width: 100%;
266
-        height: px(170);
267
-        background-color: #fff;
273
+        background-color: #f5f5f5;
274
+    }
268 275
 
269
-        &--iphoneX {
270
-            padding-bottom: px(30);
271
-        }
276
+    &__camera {
277
+        width: px(60);
278
+        height: px(60);
279
+    }
272 280
 
273
-        &__btn {
274
-            display: flex;
275
-            justify-content: center;
276
-            align-items: center;
277
-            width: px(970);
278
-            height: px(110);
279
-            font-size: px(42);
280
-            color: #fff;
281
-            border-radius: px(55);
282
-            background-color: #262626;
281
+    &__text {
282
+        margin-top: px(20);
283
+        font-size: px(36);
284
+        color: #999;
285
+    }
286
+}
287
+
288
+.submit {
289
+    position: fixed;
290
+    bottom: 0;
291
+    left: 0;
292
+    z-index: 995;
293
+    display: flex;
294
+    justify-content: center;
295
+    align-items: center;
296
+    width: 100%;
297
+    height: px(170);
298
+    background-color: #fff;
299
+
300
+    &--iphoneX {
301
+        padding-bottom: px(30);
302
+    }
283 303
 
284
-        }
304
+    &__btn {
305
+        display: flex;
306
+        justify-content: center;
307
+        align-items: center;
308
+        width: px(970);
309
+        height: px(110);
310
+        font-size: px(42);
311
+        color: #fff;
312
+        border-radius: px(55);
313
+        background-color: #27a34f;
285 314
     }
315
+}
286 316
 </style>

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

@@ -279,7 +279,7 @@
279 279
         </div>
280 280
 
281 281
         <div class="web-support">
282
-            <p class="text">0.0.97</p>
282
+            <p class="text">0.0.98</p>
283 283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284 284
         </div>
285 285
     </div>