cr vor 4 Jahren
Ursprung
Commit
4f168e5cdd

+ 5 - 1
a.txt

@@ -31,4 +31,8 @@ f68b8e48-c681-467b-af76-e1612c26d62e 主播 主播人员
31 31
 xkjsglsadmin/xkjsgls2020
32 32
 
33 33
 小客家水果
34
-xkjsgadmin/xkjsg2020
34
+xkjsgadmin/xkjsg2020
35
+
36
+史各庄
37
+13522911031 / 123456
38
+

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

@@ -402,7 +402,7 @@ export default {
402 402
      * @param format
403 403
      * @returns {string}
404 404
      */
405
-    dateFormat(date, format = 'yyyy-MM-dd') {
405
+     dateFormat(date, format = 'yyyy-MM-dd') {
406 406
         if (date) {
407 407
             date = date.replace(/-/g, '/')
408 408
             date = new Date(Date.parse(date))
@@ -417,6 +417,38 @@ export default {
417 417
                 'q+': Math.floor((date.getMonth() + 3) / 3), //季度
418 418
             }
419 419
 
420
+            if (/(y+)/.test(format)) {
421
+                format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
422
+            }
423
+            for (let k in o) {
424
+                if (new RegExp('(' + k + ')').test(format)) {
425
+                    format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
426
+                }
427
+            }
428
+            return format
429
+        } else {
430
+            return ''
431
+        }
432
+    },
433
+    /**
434
+     * 转化为指定格式日期
435
+     * @param date
436
+     * @param format
437
+     * @returns {string}
438
+     */
439
+    dateFormat2(date, format = 'yyyy-MM-dd') {
440
+        if (date) {
441
+
442
+            let o = {
443
+                'M+': date.getMonth() + 1, //月份
444
+                'd+': date.getDate(), //日
445
+                'h+': date.getHours(), //小时
446
+                'm+': date.getMinutes(), //分
447
+                's+': date.getSeconds(), //秒
448
+                'S': date.getMilliseconds(), //毫秒
449
+                'q+': Math.floor((date.getMonth() + 3) / 3), //季度
450
+            }
451
+
420 452
             if (/(y+)/.test(format)) {
421 453
                 format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
422 454
             }

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

@@ -77,7 +77,7 @@
77 77
 
78 78
         <!-- <button class="btn" @click="layout">退出登录</button> -->
79 79
 
80
-        <div class="ver">0.5.41</div>
80
+        <div class="ver">0.5.42</div>
81 81
         <wyg-bottom-tab
82 82
             ref="tabbar"
83 83
             :tabIndex="2"

+ 56 - 44
src/pages/youxuan/order/detail.vue

@@ -2,39 +2,51 @@
2 2
     <div class="page" v-if="data">
3 3
         <div class="order-info">
4 4
             <div class="info">
5
-                <div class="num">订单号:{{data.orderNo}}</div>
6
-                <div class="status">{{data.status | orderStatus}}</div>
5
+                <div class="num">订单号:{{ data.orderNo }}</div>
6
+                <div class="status">{{ data.status | orderStatus }}</div>
7 7
             </div>
8 8
             <div class="con">
9 9
                 <my-image :src="data.headIcon" class="img"></my-image>
10 10
                 <div class="main">
11 11
                     <div class="line">
12 12
                         <div class="name">
13
-                            {{data.nickName}}
13
+                            {{ data.nickName }}
14 14
                         </div>
15 15
                         <div class="money">
16
-                            合计:<span class="red-text">¥{{data.amount / 100}}</span>
16
+                            合计:<span class="red-text"
17
+                                >¥{{ data.amount / 100 }}</span
18
+                            >
17 19
                         </div>
18 20
                     </div>
19 21
                     <div class="line">
20
-                        <div class="time"> {{ data.orderTime | dateFormat("hh:mm") }}</div>
21
-                        <div class="money">预估佣金:¥{{data.estimateComission / 100}}</div>
22
+                        <div class="time">
23
+                            {{ data.orderTime | dateFormat("hh:mm") }}
24
+                        </div>
25
+                        <div class="money">
26
+                            预估佣金:¥{{ data.estimateComission / 100 }}
27
+                        </div>
22 28
                     </div>
23 29
                 </div>
24 30
             </div>
25 31
         </div>
26 32
         <ul class="good-list">
27
-            <li v-for="(item,index) of data.orderItems" :key="index">
33
+            <li v-for="(item, index) of data.orderItems" :key="index">
28 34
                 <my-image class="good-img" :src="item.productImage"></my-image>
29 35
                 <div class="good-con">
30
-                    <div class="good-name">{{item.productName}}</div>
36
+                    <div class="good-name">{{ item.productName }}</div>
31 37
                     <div class="info">
32
-                        <div class="sku">规格:{{item.productSpec}}</div>
33
-                        <div class="count">数量:{{item.count}}</div>
38
+                        <div class="sku">规格:{{ item.productSpec }}</div>
39
+                        <div class="count">数量:{{ item.count }}</div>
34 40
                     </div>
35 41
                     <div class="money">
36
-                        <div class="price">金额:¥{{item.amount / 100}}</div>
37
-                        <div class="commission">佣金:¥{{item.estimateComission / 100}}</div>
42
+                        <div class="price">金额:¥{{ item.amount / 100 }}</div>
43
+                        <div class="commission">
44
+                            佣金:¥{{ item.estimateComission / 100 }}
45
+                        </div>
46
+                    </div>
47
+                    <div class="status">
48
+                        <div></div>
49
+                        <div>{{item.status | orderStatus}}</div>
38 50
                     </div>
39 51
                 </div>
40 52
             </li>
@@ -43,57 +55,51 @@
43 55
             <ul>
44 56
                 <li>
45 57
                     <div class="key">总件数:</div>
46
-                    <div class="value">x{{data.totalCount}}</div>
58
+                    <div class="value">x{{ data.totalCount }}</div>
47 59
 
48 60
                     <div class="key key-r">总金额:</div>
49
-                    <div class="value">¥{{data.totalAmount / 100}}</div>
61
+                    <div class="value">¥{{ data.totalAmount / 100 }}</div>
50 62
                 </li>
51 63
                 <li>
52
-                    <div class="key">积分抵扣({{data.points}}分):</div>
53
-                    <div class="value">-¥{{data.pointsPrice / 100}}</div>
64
+                    <div class="key">积分抵扣({{ data.points }}分):</div>
65
+                    <div class="value">-¥{{ data.pointsPrice / 100 }}</div>
54 66
                 </li>
55 67
                 <li>
56 68
                     <div class="key">优惠券:</div>
57
-                    <div class="value">-¥{{data.couponAmount}}</div>
69
+                    <div class="value">-¥{{ data.couponAmount }}</div>
58 70
                 </li>
59 71
                 <li>
60 72
                     <div class="key">运费/配送费:</div>
61
-                    <div class="value">¥{{data.postage}}</div>
73
+                    <div class="value">¥{{ data.postage }}</div>
62 74
                 </li>
63 75
                 <li>
64 76
                     <div class="key">合计:</div>
65
-                    <div class="value red">¥{{data.amount / 100}}</div>
77
+                    <div class="value red">¥{{ data.amount / 100 }}</div>
66 78
                 </li>
67 79
                 <li>
68 80
                     <div class="key">佣金:</div>
69 81
                     <div class="value blod">
70
-                        ¥{{data.commission/100}}(佣金)-¥{{data.pointsPrice / 100}}(积分抵扣)=¥{{data.amount / 100}}
82
+                        ¥{{ data.commission / 100 }}(佣金)-¥{{
83
+                            data.pointsPrice / 100
84
+                        }}(积分抵扣)=¥{{ data.amount / 100 }}
71 85
                     </div>
72 86
                 </li>
73 87
             </ul>
74 88
         </section>
75 89
         <section class="info-box">
76 90
             <ul>
77
-                <li>
78
-                    <div class="key">下单时间:</div>
79
-                    <div class="value">{{data.orderTime | dateFormat("yyyy-MM-dd hh:mm")}}</div>
80
-                </li>
81 91
                 <!-- <li>
82
-                    <div class="key">支付时间:</div>
83
-                    <div class="value">2021/01/01 11:00</div>
84
-                </li>
85
-                <li>
86
-                    <div class="key">发货时间:</div>
87
-                    <div class="value">2021/01/01 11:00</div>
88
-                </li>
89
-                <li>
90
-                    <div class="key">订单完成:</div>
91
-                    <div class="value">2021/01/01 11:00</div>
92
-                </li>
93
-                <li>
94
-                    <div class="key">退款时间:</div>
95
-                    <div class="value">2021/01/01 11:00</div>
92
+                    <div class="key">下单时间:</div>
93
+                    <div class="value">
94
+                        {{ data.orderTime | dateFormat("yyyy-MM-dd hh:mm") }}
95
+                    </div>
96 96
                 </li> -->
97
+                <li v-for="item of data.logs" :key="item.time">
98
+                    <div class="key">{{ item.title }}:</div>
99
+                    <div class="value">
100
+                        {{ item.time | dateFormat("yyyy-MM-dd hh:mm") }}
101
+                    </div>
102
+                </li>
97 103
             </ul>
98 104
         </section>
99 105
     </div>
@@ -197,14 +203,14 @@ export default {
197 203
         justify-content: space-between;
198 204
         margin-top: px(30);
199 205
         .img {
200
-            width: px(200);
201
-            height: px(200);
206
+            width: px(230);
207
+            height: px(230);
202 208
             flex-shrink: 0;
203 209
             margin-right: px(20);
204 210
             background-color: #f9f9f9;
205 211
             /deep/ img {
206
-                width: px(200);
207
-                height: px(200);
212
+                width: px(230);
213
+                height: px(230);
208 214
             }
209 215
         }
210 216
     }
@@ -267,7 +273,8 @@ export default {
267 273
                 @include omits(2);
268 274
             }
269 275
             .info,
270
-            .money {
276
+            .money,
277
+            .status {
271 278
                 margin-top: px(10);
272 279
                 display: flex;
273 280
                 justify-content: space-between;
@@ -277,6 +284,11 @@ export default {
277 284
             .sku {
278 285
                 color: #666;
279 286
             }
287
+            .status{
288
+                
289
+    font-size: px(36);
290
+    color: #f78819;
291
+            }
280 292
         }
281 293
     }
282 294
 }
@@ -302,7 +314,7 @@ export default {
302 314
         margin-left: px(50);
303 315
     }
304 316
 }
305
-.blod{
317
+.blod {
306 318
     font-weight: bold;
307 319
 }
308 320
 </style>

+ 11 - 3
src/pages/youxuan/order/index.vue

@@ -2,7 +2,10 @@
2 2
     <div class="page">
3 3
         <div class="filter">
4 4
             <span class="key">时间:</span>
5
-            <picker mode="date" @change="dateChange($event, 'startDate')"
5
+            <picker
6
+                mode="date"
7
+                @change="dateChange($event, 'startDate')"
8
+                :end="filter.endDate || endDate"
6 9
                 ><input
7 10
                     class="value"
8 11
                     placeholder="开始日期"
@@ -10,7 +13,11 @@
10 13
                     v-model="filter.startDate"
11 14
             /></picker>
12 15
             <span class="row">至</span>
13
-            <picker mode="date" @change="dateChange($event, 'endDate')"
16
+            <picker
17
+                mode="date"
18
+                @change="dateChange($event, 'endDate')"
19
+                :start="filter.startDate"
20
+                :end="endDate"
14 21
                 ><input
15 22
                     class="value"
16 23
                     placeholder="结束日期"
@@ -113,11 +120,12 @@ export default {
113 120
             pageIndex: 1,
114 121
             dataEnd: false,
115 122
             listData: [],
123
+            endDate: "",
116 124
         };
117 125
     },
118 126
     onLoad() {
119
-        
120 127
         this.getList();
128
+        this.endDate = this.fn.dateFormat2(new Date());
121 129
     },
122 130
 
123 131
     onShow() {},

+ 16 - 6
src/pages/youxuan/profit.vue

@@ -2,12 +2,17 @@
2 2
     <div class="page">
3 3
         <div class="profit-info">
4 4
             <h6 class="tit">累计优选佣金</h6>
5
-            <div class="money" v-if="dataInfo">{{dataInfo.totalCommission / 100}}</div>
5
+            <div class="money" v-if="dataInfo">
6
+                {{ dataInfo.totalCommission / 100 }}
7
+            </div>
6 8
         </div>
7 9
 
8 10
         <div class="filter">
9 11
             <span class="key">时间:</span>
10
-            <picker mode="date" @change="dateChange($event, 'startDate')"
12
+            <picker
13
+                mode="date"
14
+                @change="dateChange($event, 'startDate')"
15
+                :end="filter.endDate || endDate"
11 16
                 ><input
12 17
                     class="value"
13 18
                     placeholder="开始日期"
@@ -15,7 +20,11 @@
15 20
                     v-model="filter.startDate"
16 21
             /></picker>
17 22
             <span class="row">至</span>
18
-            <picker mode="date" @change="dateChange($event, 'endDate')"
23
+            <picker
24
+                mode="date"
25
+                @change="dateChange($event, 'endDate')"
26
+                :start="filter.startDate"
27
+                :end="endDate"
19 28
                 ><input
20 29
                     class="value"
21 30
                     placeholder="结束日期"
@@ -75,7 +84,8 @@ export default {
75 84
             pageIndex: 1,
76 85
             dataEnd: false,
77 86
             listData: [],
78
-            dataInfo:null,
87
+            dataInfo: null,
88
+            endDate: "",
79 89
         };
80 90
     },
81 91
     onShow() {},
@@ -83,6 +93,7 @@ export default {
83 93
     onLoad() {
84 94
         this.getList();
85 95
         this.getInfo();
96
+        this.endDate = this.fn.dateFormat2(new Date());
86 97
     },
87 98
     onPullDownRefresh() {
88 99
         this.getList(true);
@@ -94,8 +105,7 @@ export default {
94 105
 
95 106
     // 函数
96 107
     methods: {
97
-
98
-        getInfo(){
108
+        getInfo() {
99 109
             this.api.get("/Yx/GetProfitInfo").then((res) => {
100 110
                 this.dataInfo = res.data;
101 111
             });