cr 4 gadi atpakaļ
vecāks
revīzija
1d9cbac186

+ 3 - 0
releaselog.md

@@ -1,5 +1,8 @@
1 1
 
2 2
 
3
+# 0.5.4 (21.03.31 18:00) 
4
+### 优选相关设置
5
+
3 6
 # 0.5.3 (21.03.22 18:00) 
4 7
 ### 添加平台  群设置修改bug
5 8
 

+ 1 - 1
src/pages.json

@@ -476,7 +476,7 @@
476 476
         {
477 477
             "path": "pages/assistant/set-time",
478 478
             "style": {
479
-                "navigationBarTitleText": "助理禁言时间"
479
+                "navigationBarTitleText": "助理工作时间"
480 480
             }
481 481
         },
482 482
         {

+ 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.37</div>
80
+        <div class="ver">0.5.41</div>
81 81
         <wyg-bottom-tab
82 82
             ref="tabbar"
83 83
             :tabIndex="2"

+ 17 - 8
src/pages/youxuan/good.vue

@@ -191,24 +191,24 @@
191 191
                                                     {{ item.name }}
192 192
                                                 </div>
193 193
                                                 <div class="goods__sale">
194
-                                                    <span v-if="item.agentFee">
194
+                                                    <span v-if="item.minPrice">
195 195
                                                         价格:¥{{
196
-                                                            item.agentFee / 100
196
+                                                            item.minPrice / 100
197 197
                                                         }}
198 198
                                                     </span>
199 199
 
200
-                                                    <span v-if="item.tagPrice">
201
-                                                        原价:{{
200
+                                                    <span v-if="item.tagPrice" class="text-line">
201
+                                                        原价:{{
202 202
                                                             item.tagPrice / 100
203 203
                                                         }}
204 204
                                                     </span>
205 205
                                                 </div>
206 206
                                                 <div class="goods__sale">
207
-                                                    <!-- <span v-if="item.agentFee">
207
+                                                    <span v-if="item.agentFee" class="red">
208 208
                                                         赚:¥{{
209 209
                                                             item.agentFee / 100
210 210
                                                         }}
211
-                                                    </span> -->
211
+                                                    </span>
212 212
 
213 213
                                                     <span
214 214
                                                         v-if="
@@ -1585,10 +1585,10 @@ page {
1585 1585
     &__sale {
1586 1586
         font-size: px(38);
1587 1587
         line-height: px(40);
1588
-        color: #999;
1588
+        color: #666;
1589 1589
         margin-top: px(30);
1590 1590
         span ~ span {
1591
-            margin-left: px(20);
1591
+            margin-left: px(40);
1592 1592
         }
1593 1593
     }
1594 1594
 
@@ -2031,4 +2031,13 @@ page {
2031 2031
         text-indent: 2em;
2032 2032
     }
2033 2033
 }
2034
+.text-line{
2035
+    text-decoration: line-through;
2036
+}
2037
+.blod{
2038
+    font-weight: bold;
2039
+}
2040
+.red{
2041
+    color: #ff4b26;
2042
+}
2034 2043
 </style>

+ 8 - 8
src/pages/youxuan/order/detail.vue

@@ -1,5 +1,5 @@
1 1
 <template>
2
-    <div class="page">
2
+    <div class="page" v-if="data">
3 3
         <div class="order-info">
4 4
             <div class="info">
5 5
                 <div class="num">订单号:{{data.orderNo}}</div>
@@ -48,9 +48,9 @@
48 48
                     <div class="key key-r">总金额:</div>
49 49
                     <div class="value">¥{{data.totalAmount / 100}}</div>
50 50
                 </li>
51
-                <li v-if="data.points">
51
+                <li>
52 52
                     <div class="key">积分抵扣({{data.points}}分):</div>
53
-                    <div class="value">-¥{{data.pointsPrice}}</div>
53
+                    <div class="value">-¥{{data.pointsPrice / 100}}</div>
54 54
                 </li>
55 55
                 <li>
56 56
                     <div class="key">优惠券:</div>
@@ -64,12 +64,12 @@
64 64
                     <div class="key">合计:</div>
65 65
                     <div class="value red">¥{{data.amount / 100}}</div>
66 66
                 </li>
67
-                <!-- <li>
67
+                <li>
68 68
                     <div class="key">佣金:</div>
69 69
                     <div class="value blod">
70
-                        ¥50.5(佣金)-¥50.5(积分抵扣)=¥5
70
+                        ¥{{data.commission/100}}(佣金)-¥{{data.pointsPrice / 100}}(积分抵扣)=¥{{data.amount / 100}}
71 71
                     </div>
72
-                </li> -->
72
+                </li>
73 73
             </ul>
74 74
         </section>
75 75
         <section class="info-box">
@@ -131,7 +131,7 @@ export default {
131 131
     name: "",
132 132
     components: { MyImage },
133 133
 
134
-    filter: {
134
+    filters: {
135 135
         orderStatus(v) {
136 136
             return statusEnum[v] || "";
137 137
         },
@@ -140,7 +140,7 @@ export default {
140 140
     data() {
141 141
         return {
142 142
             dataId: "",
143
-            data: {},
143
+            data: null,
144 144
         };
145 145
     },
146 146
 

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

@@ -41,7 +41,7 @@
41 41
                         <my-image class="img" :src="order.headIcon"></my-image>
42 42
                         <div class="main">
43 43
                             <div class="line">
44
-                                <div class="name">{{ order.nickName }}</div>
44
+                                <div class="name">{{ order.name }}</div>
45 45
                                 <div class="money">
46 46
                                     合计:<span class="red-text"
47 47
                                         >¥{{ order.amount / 100 }}</span
@@ -98,7 +98,7 @@ let statusEnum = {
98 98
 export default {
99 99
     name: "",
100 100
     components: { MyImage },
101
-    filter: {
101
+    filters: {
102 102
         orderStatus(v) {
103 103
             return statusEnum[v] || "";
104 104
         },
@@ -116,6 +116,7 @@ export default {
116 116
         };
117 117
     },
118 118
     onLoad() {
119
+        
119 120
         this.getList();
120 121
     },
121 122
 

+ 118 - 31
src/pages/youxuan/profit.vue

@@ -2,7 +2,7 @@
2 2
     <div class="page">
3 3
         <div class="profit-info">
4 4
             <h6 class="tit">累计优选佣金</h6>
5
-            <div class="money">4505.8</div>
5
+            <div class="money" v-if="dataInfo">{{dataInfo.totalCommission / 100}}</div>
6 6
         </div>
7 7
 
8 8
         <div class="filter">
@@ -25,35 +25,38 @@
25 25
         </div>
26 26
 
27 27
         <ul class="list">
28
-            <li>
28
+            <li v-for="item of listData" :key="item.id">
29 29
                 <div class="top">
30
-                    <div class="tit">订单佣金</div>
31
-                    <div class="money">+12.90</div>
30
+                    <div class="tit">{{ item.title }}</div>
31
+                    <div class="money">+{{ item.amount / 100 }}</div>
32 32
                 </div>
33 33
                 <div class="info">
34
-                    <div class="date">2021/03/29</div>
35
-                    <div class="formula">¥16(佣金)-¥2(积分抵扣) = ¥16</div>
34
+                    <div class="date">
35
+                        {{ item.createdTime | dateFormat("yyyy-MM-dd hh:mm") }}
36
+                    </div>
37
+                    <div class="formula blod">
38
+                        ¥{{ item.totalCommission / 100 }}(佣金)-¥{{
39
+                            item.pointsPrice / 100
40
+                        }}(积分抵扣) = ¥{{ item.amount / 100 }}
41
+                    </div>
36 42
                 </div>
37 43
                 <div class="bottom">
38
-                    <div class="num">订单号:154546464666</div>
39
-                    <div class="link">查看订单</div>
40
-                </div>
41
-            </li>
42
-            <li>
43
-                <div class="top">
44
-                    <div class="tit">订单佣金</div>
45
-                    <div class="money">+12.90</div>
46
-                </div>
47
-                <div class="info">
48
-                    <div class="date">2021/03/29</div>
49
-                    <div class="formula">¥16(佣金)-¥2(积分抵扣) = ¥16</div>
50
-                </div>
51
-                <div class="bottom">
52
-                    <div class="num">订单号:154546464666</div>
53
-                    <div class="link">查看订单</div>
44
+                    <div class="num">订单号:{{ item.orderNo }}</div>
45
+                    <div
46
+                        class="link"
47
+                        @click="
48
+                            jump({
49
+                                path: '/pages/youxuan/order/detail',
50
+                                query: { id: item.orderId },
51
+                            })
52
+                        "
53
+                    >
54
+                        查看订单
55
+                    </div>
54 56
                 </div>
55 57
             </li>
56 58
         </ul>
59
+        <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
57 60
     </div>
58 61
 </template>
59 62
 
@@ -69,15 +72,86 @@ export default {
69 72
                 startDate: "",
70 73
                 endDate: "",
71 74
             },
75
+            pageIndex: 1,
76
+            dataEnd: false,
77
+            listData: [],
78
+            dataInfo:null,
72 79
         };
73 80
     },
74
-
75 81
     onShow() {},
76 82
 
83
+    onLoad() {
84
+        this.getList();
85
+        this.getInfo();
86
+    },
87
+    onPullDownRefresh() {
88
+        this.getList(true);
89
+        this.getInfo();
90
+    },
91
+    onReachBottom() {
92
+        this.getMoreList();
93
+    },
94
+
77 95
     // 函数
78 96
     methods: {
97
+
98
+        getInfo(){
99
+            this.api.get("/Yx/GetProfitInfo").then((res) => {
100
+                this.dataInfo = res.data;
101
+            });
102
+        },
103
+
104
+        getList(isPull) {
105
+            uni.showLoading({
106
+                title: "加载中...",
107
+            });
108
+            this.pageIndex = 1;
109
+            this.dataEnd = false;
110
+            let sendData = {
111
+                pageIndex: this.pageIndex++,
112
+            };
113
+            if (this.filter.startDate) {
114
+                sendData.startTime = this.filter.startDate;
115
+            }
116
+            if (this.filter.endDate) {
117
+                sendData.endTime = this.filter.endDate;
118
+            }
119
+            this.api.get("/Yx/GetProfitList", sendData).then((res) => {
120
+                if (isPull) {
121
+                    uni.stopPullDownRefresh();
122
+                }
123
+                uni.hideLoading();
124
+                this.listData = res.data;
125
+                if (!this.listData.length) {
126
+                    this.dataEnd = true;
127
+                }
128
+            });
129
+        },
130
+        getMoreList() {
131
+            uni.showLoading({
132
+                title: "加载中...",
133
+            });
134
+            let sendData = {
135
+                pageIndex: this.pageIndex++,
136
+            };
137
+            if (this.filter.startDate) {
138
+                sendData.startTime = this.filter.startDate;
139
+            }
140
+            if (this.filter.endDate) {
141
+                sendData.endTime = this.filter.endDate;
142
+            }
143
+            this.api.get("/Yx/GetProfitList", sendData).then((res) => {
144
+                uni.hideLoading();
145
+                this.listData = [...this.listData, ...res.data];
146
+                if (!this.listData.length) {
147
+                    this.dataEnd = true;
148
+                }
149
+            });
150
+        },
151
+
79 152
         dateChange(e, name) {
80 153
             this.filter[name] = e.detail.value;
154
+            this.getList();
81 155
         },
82 156
     },
83 157
 
@@ -133,30 +207,43 @@ export default {
133 207
         border-bottom: 1px solid #f1f1f1;
134 208
         padding: px(30) px(40);
135 209
     }
136
-    .top,.info,.bottom{
210
+    .top,
211
+    .info,
212
+    .bottom {
137 213
         display: flex;
138 214
         align-items: center;
139 215
         justify-content: space-between;
140 216
     }
141
-    .tit{
217
+    .tit {
142 218
         font-size: px(48);
143 219
     }
144
-    .money{
145
-        color:#ff4b26;
220
+    .money {
221
+        color: #ff4b26;
146 222
     }
147
-    .info,.bottom{
223
+    .info,
224
+    .bottom {
148 225
         font-size: px(40);
149 226
         color: #666;
150 227
         margin-top: px(10);
151 228
     }
152
-    .formula{
229
+    .formula {
153 230
         font-weight: bold;
154 231
     }
155
-    .link{
232
+    .link {
156 233
         color: #4395ff;
157 234
     }
158
-    .num{
235
+    .num {
159 236
         color: #999;
160 237
     }
161 238
 }
239
+.blod {
240
+    font-weight: bold;
241
+}
242
+.more-text {
243
+    display: flex;
244
+    justify-content: center;
245
+    padding-bottom: px(60);
246
+    font-size: px(34);
247
+    color: #999;
248
+}
162 249
 </style>