cr %!s(int64=3) %!d(string=hai) anos
pai
achega
584d9d3e99

+ 1 - 1
src/common/js/plugin.js

@@ -258,7 +258,7 @@ export default {
258 258
                                 router.push({
259 259
                                     path: "/pages/index/login",
260 260
                                 });
261
-
261
+                                return;
262 262
                             }
263 263
                         } else {
264 264
                             store.commit("user/logout", null);

+ 1 - 1
src/common/js/share.js

@@ -7,7 +7,7 @@ export default {
7 7
                 title: "供应管理端",
8 8
                 path: "/pages/index/login",
9 9
                 imageUrl:
10
-                    "https://oss.ixiaokejia.com/images/common/share_login.jpg",
10
+                    "https://oss.ixiaokejia.com/images/common/share_login2.jpg",
11 11
             }
12 12
         }
13 13
     },

+ 6 - 0
src/pages.json

@@ -161,6 +161,12 @@
161 161
             "style": {
162 162
                 "navigationBarTitleText": "快递单号"
163 163
             }
164
+        },
165
+        {
166
+            "path": "pages/manage/income",
167
+            "style": {
168
+                "navigationBarTitleText": "资金结算"
169
+            }
164 170
         }
165 171
     ]
166 172
 }

+ 46 - 22
src/pages/index/index.vue

@@ -48,12 +48,13 @@
48 48
                                         <ul class="info-list">
49 49
                                             <li>店铺:{{ order.shopName }}</li>
50 50
                                             <li>
51
-                                                商品代码:<span class="link" @click="
51
+                                                商品代码:<span
52
+                                                    class="link"
53
+                                                    @click="
52 54
                                                         copy(order.productCode)
53
-                                                    ">
54
-                                                    {{
55
-                                                    order.productCode
56
-                                                }}
55
+                                                    "
56
+                                                >
57
+                                                    {{ order.productCode }}
57 58
                                                 </span>
58 59
                                                 <span
59 60
                                                     class="copy"
@@ -80,6 +81,13 @@
80 81
                                         </div>
81 82
                                         <p class="order__des">
82 83
                                             {{ order.receiverAddress }}
84
+                                            <span
85
+                                                class="copy"
86
+                                                @click="
87
+                                                    copyAddress(order)
88
+                                                "
89
+                                                >复制</span
90
+                                            >
83 91
                                         </p>
84 92
                                     </div>
85 93
                                 </div>
@@ -148,7 +156,10 @@
148 156
                                     </div>
149 157
                                     <div
150 158
                                         class="btn"
151
-                                        v-if="order.status !== 6 && order.status !== 12"
159
+                                        v-if="
160
+                                            order.status !== 6 &&
161
+                                            order.status !== 12
162
+                                        "
152 163
                                         @click="cancelOrder(order)"
153 164
                                     >
154 165
                                         取消订单
@@ -398,15 +409,16 @@ export default {
398 409
                 })
399 410
                 .then((modalRes) => {
400 411
                     if (modalRes.confirm) {
401
-                        let sendData = {
402
-                            id: val._id,
403
-                            query: true,
404
-                        };
412
+                        uni.showLoading({
413
+                            title: "处理中...",
414
+                            mask: true,
415
+                        });
405 416
                         this.api
406 417
                             .get("/Supplier/ConfirmOrder", {
407 418
                                 id: order.id,
408 419
                             })
409 420
                             .then((res) => {
421
+                                uni.hideLoading();
410 422
                                 if (res.success) {
411 423
                                     this.fn.showToast("确认订单成功");
412 424
                                     this.getList();
@@ -429,15 +441,16 @@ export default {
429 441
                 })
430 442
                 .then((modalRes) => {
431 443
                     if (modalRes.confirm) {
432
-                        let sendData = {
433
-                            id: val._id,
434
-                            query: true,
435
-                        };
444
+                        uni.showLoading({
445
+                            title: "处理中...",
446
+                            mask: true,
447
+                        });
436 448
                         this.api
437 449
                             .get("/Supplier/CancelOrder", {
438 450
                                 id: order.id,
439 451
                             })
440 452
                             .then((res) => {
453
+                                uni.hideLoading();
441 454
                                 if (res.success) {
442 455
                                     this.fn.showToast("取消订单成功");
443 456
                                     this.getList();
@@ -454,13 +467,13 @@ export default {
454 467
         },
455 468
 
456 469
         // 填写快递单号
457
-        fillDeliveryOrder(val){
470
+        fillDeliveryOrder(val) {
458 471
             this.router.push({
459
-                path:'/pages/index/order-delivery-form',
460
-                query:{
461
-                    orderId:val.id
462
-                }
463
-            })
472
+                path: "/pages/index/order-delivery-form",
473
+                query: {
474
+                    orderId: val.id,
475
+                },
476
+            });
464 477
         },
465 478
 
466 479
         // 复制
@@ -475,7 +488,18 @@ export default {
475 488
             });
476 489
         },
477 490
 
478
-        
491
+        // 复制
492
+        copyAddress(order) {
493
+            let str = `${order.receiverName},${order.receiverMobile},${order.receiverAddress}`;
494
+            const self = this;
495
+
496
+            uni.setClipboardData({
497
+                data: str,
498
+                success: () => {
499
+                    self.fn.showToast("复制成功");
500
+                },
501
+            });
502
+        },
479 503
     },
480 504
 
481 505
     // 数据计算
@@ -1204,7 +1228,7 @@ page {
1204 1228
 .link {
1205 1229
     color: #3582fb !important;
1206 1230
 }
1207
-.active-btn{
1231
+.active-btn {
1208 1232
     color: #52c41a;
1209 1233
 }
1210 1234
 </style>

+ 26 - 2
src/pages/index/order-delivery-form.vue

@@ -10,6 +10,7 @@
10 10
                     <picker
11 11
                         :mode="'selector'"
12 12
                         :range="expressList"
13
+                        range-key="name"
13 14
                         @change="expressChange($event)"
14 15
                     >
15 16
                         <input
@@ -64,12 +65,22 @@ export default {
64 65
     methods: {
65 66
         getExpressCompanyList() {
66 67
             this.api.get("/Supplier/GetExpressCompanyList", {}).then((res) => {
67
-                this.expressList = res.data;
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
+                this.expressList = arr;
78
+                // for(let)
68 79
             });
69 80
         },
70 81
         expressChange(e) {
71 82
             let index = e.detail.value;
72
-            let val = this.expressList[index];
83
+            let val = this.expressList[index].name;
73 84
             this.form.expressName = val;
74 85
         },
75 86
         saveOk() {
@@ -82,6 +93,19 @@ export default {
82 93
             if (!this.form.expressNo) {
83 94
                 return this.fn.showToast("请输入快递单号");
84 95
             }
96
+            // 判断快递单号正则
97
+            let curExpress = {};
98
+            for (let item of this.expressList) {
99
+                if (item.name === this.form.expressName) {
100
+                    curExpress = item;
101
+                }
102
+            }
103
+            if (curExpress.reg_mail_no) {
104
+                let reg = new RegExp(curExpress.reg_mail_no);
105
+                if (!reg.test(this.form.expressNo)) {
106
+                    return this.fn.showToast("快递单号不正确");
107
+                }
108
+            }
85 109
             uni.showLoading({
86 110
                 title: "提交中...",
87 111
                 mask: true,

+ 323 - 0
src/pages/manage/income.vue

@@ -0,0 +1,323 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="profit-info">
4
+            <div class="item">
5
+                <h6 class="tit">余额</h6>
6
+                <div class="money green" v-if="dataInfo">
7
+                    {{ dataInfo.balance / 100 }}
8
+                </div>
9
+            </div>
10
+            <div class="item">
11
+                <h6 class="tit">待结算金额</h6>
12
+                <div class="money green" v-if="dataInfo">
13
+                    {{ dataInfo.waitingSettleAmount / 100 }}
14
+                </div>
15
+            </div>
16
+        </div>
17
+
18
+        <div class="filter">
19
+            <span class="key">时间:</span>
20
+            <picker
21
+                mode="date"
22
+                @change="dateChange($event, 'startDate')"
23
+                :end="filter.endDate || endDate"
24
+                ><input
25
+                    class="value"
26
+                    placeholder="开始日期"
27
+                    :disabled="true"
28
+                    v-model="filter.startDate"
29
+            /></picker>
30
+            <span class="row">至</span>
31
+            <picker
32
+                mode="date"
33
+                @change="dateChange($event, 'endDate')"
34
+                :start="filter.startDate"
35
+                :end="endDate"
36
+                ><input
37
+                    class="value"
38
+                    placeholder="结束日期"
39
+                    :disabled="true"
40
+                    v-model="filter.endDate"
41
+            /></picker>
42
+        </div>
43
+
44
+        <ul class="list">
45
+            <h1 class="list-tit">账单列表</h1>
46
+            <li v-for="item of listData" :key="item.id">
47
+                <div class="other">
48
+                    <div class="title">
49
+                        {{ item.title }}
50
+                        <span class="shop">({{ item.shopName }})</span>
51
+                    </div>
52
+                    <div class="time">
53
+                        {{ item.createdTime | dateFormat("yyyy-MM-dd hh:mm") }}
54
+                    </div>
55
+                </div>
56
+                <div class="other">
57
+                    <div class="status">
58
+                        {{ item.type | minaBillType }}({{
59
+                            item.status === 0 ? "未结算" : "已结算"
60
+                        }})
61
+                    </div>
62
+                    <div class="money">¥{{ item.amount / 100 }}</div>
63
+                </div>
64
+                <div class="good-main">
65
+                    <div class="img">
66
+                        <my-image :src="item.productImage"></my-image>
67
+                    </div>
68
+                    <div class="info">
69
+                        <h2 class="good-name">{{ item.productName }}</h2>
70
+                    </div>
71
+                </div>
72
+            </li>
73
+        </ul>
74
+        <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
75
+    </div>
76
+</template>
77
+
78
+<script>
79
+let minaBillTypeEnum = {
80
+    1: "充值",
81
+    2: "消费",
82
+    3: "退款",
83
+    4: "收益",
84
+    5: "收益返还",
85
+    6: "提现",
86
+    7: "收入",
87
+    8: "优选佣金",
88
+    9: "优选佣金返还",
89
+    10: "BD佣金",
90
+    11: "BD佣金返还",
91
+    12: "BDM佣金",
92
+    13: "BDM佣金返还",
93
+};
94
+import MyImage from "../../components/image/index";
95
+export default {
96
+    name: "",
97
+    components: { MyImage },
98
+    filters: {
99
+        minaBillType(v) {
100
+            return minaBillTypeEnum[v];
101
+        },
102
+    },
103
+    // 数据
104
+    data() {
105
+        return {
106
+            filter: {
107
+                startDate: "",
108
+                endDate: "",
109
+            },
110
+            pageIndex: 1,
111
+            dataEnd: false,
112
+            listData: [],
113
+            dataInfo: null,
114
+            endDate: "",
115
+        };
116
+    },
117
+    onShow() {},
118
+
119
+    onLoad() {
120
+        this.getList();
121
+        this.getInfo();
122
+        this.endDate = this.fn.dateFormat2(new Date());
123
+    },
124
+    onPullDownRefresh() {
125
+        this.getList(true);
126
+        this.getInfo();
127
+    },
128
+    onReachBottom() {
129
+        this.getMoreList();
130
+    },
131
+
132
+    // 函数
133
+    methods: {
134
+        getInfo() {
135
+            this.api.get("/Supplier/GetIncomeInfo").then((res) => {
136
+                this.dataInfo = res.data;
137
+            });
138
+        },
139
+
140
+        getList(isPull) {
141
+            uni.showLoading({
142
+                title: "加载中...",
143
+            });
144
+            this.pageIndex = 1;
145
+            this.dataEnd = false;
146
+            let sendData = {
147
+                pageIndex: this.pageIndex++,
148
+            };
149
+            if (this.filter.startDate) {
150
+                sendData.startTime = this.filter.startDate;
151
+            }
152
+            if (this.filter.endDate) {
153
+                sendData.endTime = this.filter.endDate;
154
+            }
155
+            this.api.get("/Supplier/GetBillList", sendData).then((res) => {
156
+                if (isPull) {
157
+                    uni.stopPullDownRefresh();
158
+                }
159
+                uni.hideLoading();
160
+                this.listData = res.data;
161
+                if (!this.listData.length) {
162
+                    this.dataEnd = true;
163
+                }
164
+            });
165
+        },
166
+        getMoreList() {
167
+            uni.showLoading({
168
+                title: "加载中...",
169
+            });
170
+            let sendData = {
171
+                pageIndex: this.pageIndex++,
172
+            };
173
+            if (this.filter.startDate) {
174
+                sendData.startTime = this.filter.startDate;
175
+            }
176
+            if (this.filter.endDate) {
177
+                sendData.endTime = this.filter.endDate;
178
+            }
179
+            this.api.get("/Supplier/GetBillList", sendData).then((res) => {
180
+                uni.hideLoading();
181
+                this.listData = [...this.listData, ...res.data];
182
+                if (!res.data.length) {
183
+                    this.dataEnd = true;
184
+                }
185
+            });
186
+        },
187
+
188
+        dateChange(e, name) {
189
+            this.filter[name] = e.detail.value;
190
+            this.getList();
191
+        },
192
+    },
193
+
194
+    // 数据计算
195
+    computed: {},
196
+
197
+    // 数据监听
198
+    watch: {},
199
+};
200
+</script>
201
+
202
+<style lang="scss" scoped>
203
+.filter {
204
+    display: flex;
205
+    align-items: center;
206
+    padding: px(40);
207
+    font-size: px(44);
208
+    background-color: #fff;
209
+    .row {
210
+        padding: 0 px(20);
211
+        flex-shrink: 0;
212
+    }
213
+    .key {
214
+        flex-shrink: 0;
215
+    }
216
+    .value {
217
+        border: 1px solid #f1f1f1;
218
+        height: px(80);
219
+        width: px(200);
220
+        padding: 0 px(10);
221
+        width: 90%;
222
+    }
223
+}
224
+
225
+.profit-info {
226
+    text-align: center;
227
+    padding: px(60) px(40);
228
+    background-color: #fff;
229
+    display: flex;
230
+    justify-content: space-between;
231
+    align-items: center;
232
+    .item {
233
+        width: 50%;
234
+    }
235
+    .tit {
236
+        font-size: px(44);
237
+    }
238
+    .money {
239
+        font-size: px(56);
240
+        color: #ff4b26;
241
+        margin-top: px(30);
242
+    }
243
+}
244
+.list {
245
+    padding: px(50) 0;
246
+    border-top: 1px solid #f1f1f1;
247
+    background-color: #fff;
248
+    .list-tit {
249
+        font-size: px(50);
250
+        text-align: center;
251
+        padding: px(30) 0;
252
+    }
253
+    li {
254
+        border-bottom: 2px solid #f1f1f1;
255
+        padding: px(30) px(40);
256
+    }
257
+    .other {
258
+        display: flex;
259
+        justify-content: space-between;
260
+        align-items: center;
261
+        padding: px(10) 0;
262
+        .title {
263
+            font-size: px(44);
264
+            .shop {
265
+                font-size: px(40);
266
+                color: #999;
267
+            }
268
+        }
269
+        .time {
270
+            font-size: px(42);
271
+        }
272
+            .money {
273
+                color: #ff4b26;
274
+            }
275
+    }
276
+    .good-main {
277
+        display: flex;
278
+        align-items: stretch;
279
+        justify-content: space-between;
280
+        background-color: #f9f9f9;
281
+        padding: px(10);
282
+        margin-top: px(20);
283
+        .img {
284
+            width: px(250);
285
+            height: px(250);
286
+            margin-right: px(30);
287
+            flex-shrink: 0;
288
+            /deep/ img {
289
+                width: px(250);
290
+                height: px(250);
291
+            }
292
+        }
293
+        .info {
294
+            .good-name {
295
+                font-size: px(42);
296
+                @include omits(2);
297
+            }
298
+        }
299
+    }
300
+}
301
+.blod {
302
+    font-weight: bold;
303
+}
304
+.more-text {
305
+    display: flex;
306
+    justify-content: center;
307
+    padding-bottom: px(60);
308
+    font-size: px(34);
309
+    color: #999;
310
+}
311
+.shop-name {
312
+    color: #666;
313
+    display: inline-block;
314
+    margin-left: px(10);
315
+    font-size: px(40);
316
+}
317
+.green {
318
+    color: #27a34f !important;
319
+}
320
+.red {
321
+    color: #f85e5e !important;
322
+}
323
+</style>

+ 8 - 8
src/pages/manage/index.vue

@@ -3,13 +3,13 @@
3 3
         <manage-nav :shopId="shopId" :title="'菜单'"></manage-nav>
4 4
         <div>
5 5
             <ul class="menu">
6
-                <!-- <li class="item" @click="jump('/pages/manage/user/index')">
6
+                <li class="item" @click="jump('/pages/manage/user/index')">
7 7
                     <my-image
8 8
                         class="img"
9 9
                         src="/static/icon/user.png"
10 10
                     ></my-image>
11 11
                     <span class="text">账号管理</span>
12
-                </li> -->
12
+                </li>
13 13
                 <li class="item" @click="jump('/pages/yx/classify')">
14 14
                     <my-image
15 15
                         class="img"
@@ -24,7 +24,7 @@
24 24
                     ></my-image>
25 25
                     <span class="text">活动管理</span>
26 26
                 </li>
27
-                <!-- <li class="item">
27
+                <li class="item" @click="jump('/pages/manage/income')">
28 28
                     <my-image
29 29
                         class="img"
30 30
                         src="/static/icon/cashier.png"
@@ -34,10 +34,10 @@
34 34
                 <li class="item">
35 35
                     <my-image
36 36
                         class="img"
37
-                        src="/static/icon/bd.png"
37
+                        src="/static/icon/cashier-list.png"
38 38
                     ></my-image>
39
-                    <span class="text">售后处理</span>
40
-                </li> -->
39
+                    <span class="text">提现</span>
40
+                </li>
41 41
                 <!-- <li class="item" @click="jump('/pages/yx/order/index')">
42 42
                     <my-image
43 43
                         class="img"
@@ -48,9 +48,9 @@
48 48
             </ul>
49 49
         </div>
50 50
 
51
-        <button class="btn" @click="layout">退出登录</button>
51
+        <!-- <button class="btn" @click="layout">退出登录</button> -->
52 52
 
53
-        <div class="ver">0.0.11</div>
53
+        <div class="ver">0.0.13</div>
54 54
     </div>
55 55
 </template>
56 56
 

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

@@ -1,13 +1,6 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <ul class="list">
4
-            <!-- <li class="item" v-for="item of menuList" :key="item.id" @click="jump(item.url)">
5
-                <div class="name">{{item.name}}</div>
6
-                <my-image
7
-                    class="arrow"
8
-                    src="/static/common/arrows_left.png"
9
-                ></my-image>
10
-            </li> -->
11 4
             <li class="item" @click="jump('/pages/manage/user/info')">
12 5
                 <div class="name">账号信息</div>
13 6
                 <my-image
@@ -29,20 +22,6 @@
29 22
                     src="/static/common/arrows_left.png"
30 23
                 ></my-image>
31 24
             </li>
32
-            <!-- <button open-type="share" class="item" id="2">
33
-                <div class="name">邀请团长</div>
34
-                <my-image
35
-                    class="arrow"
36
-                    src="/static/common/arrows_left.png"
37
-                ></my-image>
38
-            </button>
39
-            <button open-type="share" class="item" id="1">
40
-                <div class="name">邀请区区购团长</div>
41
-                <my-image
42
-                    class="arrow"
43
-                    src="/static/common/arrows_left.png"
44
-                ></my-image>
45
-            </button> -->
46 25
         </ul>
47 26
         <button class="btn" @click="layout">退出登录</button>
48 27
     </div>
@@ -58,17 +37,11 @@ export default {
58 37
     data() {
59 38
         return {
60 39
             curShop: {},
61
-            menuList: [],
62 40
         };
63 41
     },
64 42
 
65 43
     onLoad() {
66
-        let appMenuList = this.$store.state.user.menuList;
67
-        for (let item of appMenuList) {
68
-            if (item.id === "mobile_statistic") {
69
-                this.menuList = item.children;
70
-            }
71
-        }
44
+        
72 45
     },
73 46
     async onShow() {},
74 47
     // 函数
@@ -77,7 +50,6 @@ export default {
77 50
             this.$store.commit("user/logout", null);
78 51
             this.router.push({
79 52
                 path: "/pages/index/login",
80
-                isTabBar: true,
81 53
             });
82 54
         },
83 55
     },