cr преди 4 години
родител
ревизия
56baadd838
променени са 9 файла, в които са добавени 651 реда и са изтрити 18 реда
  1. 24 0
      src/pages.json
  2. 11 11
      src/pages/assistant/setting2.vue
  3. 175 0
      src/pages/bd/chief.vue
  4. 86 0
      src/pages/bd/code.vue
  5. 109 0
      src/pages/bd/nav.vue
  6. 216 0
      src/pages/bd/profit.vue
  7. 11 1
      src/pages/manage/index.vue
  8. 7 3
      src/pages/youxuan/order/detail.vue
  9. 12 3
      src/pages/youxuan/profit.vue

+ 24 - 0
src/pages.json

@@ -559,6 +559,30 @@
559 559
                 "navigationBarTitleText": "收益记录",
560 560
                 "enablePullDownRefresh": true
561 561
             }
562
+        },
563
+        {
564
+            "path": "pages/bd/nav",
565
+            "style": {
566
+                "navigationBarTitleText": "bd管理"
567
+            }
568
+        },
569
+        {
570
+            "path": "pages/bd/profit",
571
+            "style": {
572
+                "navigationBarTitleText": "我的收益"
573
+            }
574
+        },
575
+        {
576
+            "path": "pages/bd/chief",
577
+            "style": {
578
+                "navigationBarTitleText": "我的团长"
579
+            }
580
+        },
581
+        {
582
+            "path": "pages/bd/code",
583
+            "style": {
584
+                "navigationBarTitleText": "我的邀请码"
585
+            }
562 586
         }
563 587
     ]
564 588
 }

+ 11 - 11
src/pages/assistant/setting2.vue

@@ -1,19 +1,15 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <ul class="list">
4
-            <li
5
-                class="item"
6
-                @click="
7
-                    jump({
8
-                        path: '/pages/assistant/re-pid',
9
-                    })
10
-                "
11
-            >
12
-                <div class="name">团长号设置</div>
13
-                <my-image
4
+            <li class="item">
5
+                <div class="name">团长号</div>
6
+                <div>
7
+                    {{ pid }}
8
+                </div>
9
+                <!-- <my-image
14 10
                     class="arrow"
15 11
                     src="/static/common/arrows_left.png"
16
-                ></my-image>
12
+                ></my-image> -->
17 13
             </li>
18 14
         </ul>
19 15
     </div>
@@ -29,10 +25,14 @@ export default {
29 25
     data() {
30 26
         return {
31 27
             id: "",
28
+            pid: "",
29
+            platformData: {},
32 30
         };
33 31
     },
34 32
 
35 33
     onLoad(opts) {
34
+        this.platformData = this.$store.state.common.platformData;
35
+        this.pid = this.platformData.pid || "";
36 36
     },
37 37
     async onShow() {},
38 38
     // 函数

+ 175 - 0
src/pages/bd/chief.vue

@@ -0,0 +1,175 @@
1
+<template>
2
+    <div class="page">
3
+        <ul class="list">
4
+            <li v-for="item of listData" :key="item.id">
5
+                <my-image class="img" :src="item.headIcon"></my-image>
6
+                <div class="info">
7
+                    <div class="name">{{ item.nickName }}</div>
8
+                    <div class="mobile">手机号:{{ item.mobile }}</div>
9
+                    <div class="comission">佣金:{{ item.comission / 100 }}</div>
10
+                </div>
11
+            </li>
12
+        </ul>
13
+        <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
14
+    </div>
15
+</template>
16
+
17
+<script>
18
+import MyImage from "../../components/image/index";
19
+export default {
20
+    name: "",
21
+    components: { MyImage },
22
+    // 数据
23
+    data() {
24
+        return {
25
+            pageIndex: 1,
26
+            dataEnd: false,
27
+            listData: [],
28
+        };
29
+    },
30
+    onShow() {},
31
+
32
+    onLoad() {
33
+        this.getList();
34
+    },
35
+    onPullDownRefresh() {
36
+        this.getList(true);
37
+    },
38
+    onReachBottom() {
39
+        this.getMoreList();
40
+    },
41
+
42
+    // 函数
43
+    methods: {
44
+        getList(isPull) {
45
+            uni.showLoading({
46
+                title: "加载中...",
47
+            });
48
+            this.pageIndex = 1;
49
+            this.dataEnd = false;
50
+            let sendData = {
51
+                pageIndex: this.pageIndex++,
52
+                // appId: this.shopInfo.id,
53
+            };
54
+            this.api.get("/User/GetGroupLeaderList", sendData).then((res) => {
55
+                if (isPull) {
56
+                    uni.stopPullDownRefresh();
57
+                }
58
+                uni.hideLoading();
59
+                this.listData = res.data.groupLeaderList;
60
+                if (!res.data.groupLeaderList.length) {
61
+                    this.dataEnd = true;
62
+                }
63
+            });
64
+        },
65
+        getMoreList() {
66
+            uni.showLoading({
67
+                title: "加载中...",
68
+            });
69
+            let sendData = {
70
+                pageIndex: this.pageIndex++,
71
+            };
72
+            this.api.get("/User/GetGroupLeaderList", sendData).then((res) => {
73
+                uni.hideLoading();
74
+                this.listData = [...this.listData, ...res.data.groupLeaderList];
75
+                if (!res.data.groupLeaderList.length) {
76
+                    this.dataEnd = true;
77
+                }
78
+            });
79
+        },
80
+    },
81
+
82
+    // 数据计算
83
+    computed: {},
84
+
85
+    // 数据监听
86
+    watch: {},
87
+};
88
+</script>
89
+
90
+<style lang="scss" scoped>
91
+.filter {
92
+    display: flex;
93
+    align-items: center;
94
+    padding: px(40);
95
+    font-size: px(44);
96
+    background-color: #fff;
97
+    .row {
98
+        padding: 0 px(20);
99
+        flex-shrink: 0;
100
+    }
101
+    .key {
102
+        flex-shrink: 0;
103
+    }
104
+    .value {
105
+        border: 1px solid #f1f1f1;
106
+        height: px(80);
107
+        width: px(200);
108
+        padding: 0 px(10);
109
+        width: 90%;
110
+    }
111
+}
112
+
113
+.profit-info {
114
+    text-align: center;
115
+    padding: px(60) px(40);
116
+    background-color: #fff;
117
+    .tit {
118
+        font-size: px(44);
119
+    }
120
+    .money {
121
+        font-size: px(56);
122
+        color: #ff4b26;
123
+        margin-top: px(30);
124
+    }
125
+}
126
+.list {
127
+    padding: px(50) 0;
128
+    border-top: 1px solid #f1f1f1;
129
+    background-color: #fff;
130
+    li{
131
+            display: flex;
132
+    align-items: stretch;
133
+    justify-content: space-between;
134
+    }
135
+    .img {
136
+        width: px(200);
137
+        height: px(200);
138
+        margin-right: px(30);
139
+        flex-shrink: 0;
140
+        /deep/ img {
141
+            width: px(200);
142
+            height: px(200);
143
+            background-color: #eee;
144
+        }
145
+    }
146
+    .info{
147
+        width: 100%;
148
+        .name{
149
+            font-size: px(48);
150
+        }
151
+        div~div{
152
+            margin-top: px(15);
153
+        }
154
+        .mobile,.comission{
155
+            color: #666;
156
+        }
157
+    }
158
+}
159
+.blod {
160
+    font-weight: bold;
161
+}
162
+.more-text {
163
+    display: flex;
164
+    justify-content: center;
165
+    padding-bottom: px(60);
166
+    font-size: px(34);
167
+    color: #999;
168
+}
169
+.shop-name {
170
+    color: #666;
171
+    display: inline-block;
172
+    margin-left: px(10);
173
+    font-size: px(40);
174
+}
175
+</style>

+ 86 - 0
src/pages/bd/code.vue

@@ -0,0 +1,86 @@
1
+<template>
2
+    <div class="page">
3
+        <ul class="list">
4
+            <li class="item" @click="jump('/pages/bd/profit')">
5
+                <div class="name">我的收益</div>
6
+                <my-image
7
+                    class="arrow"
8
+                    src="/static/common/arrows_left.png"
9
+                ></my-image>
10
+            </li>
11
+            <li class="item" @click="jump('/pages/bd/chief')">
12
+                <div class="name">我的团长</div>
13
+                <my-image
14
+                    class="arrow"
15
+                    src="/static/common/arrows_left.png"
16
+                ></my-image>
17
+            </li>
18
+            <li class="item" @click="jump('/pages/bd/code')">
19
+                <div class="name">我的邀请码</div>
20
+                <my-image
21
+                    class="arrow"
22
+                    src="/static/common/arrows_left.png"
23
+                ></my-image>
24
+            </li>
25
+        </ul>
26
+    </div>
27
+</template>
28
+
29
+<script>
30
+import MyImage from "../../components/image/index";
31
+export default {
32
+    name: "",
33
+    components: { MyImage },
34
+
35
+    // 数据
36
+    data() {
37
+        return {
38
+            curShop: {},
39
+        };
40
+    },
41
+
42
+    onLoad() {},
43
+    async onShow() {},
44
+    // 函数
45
+    methods: {},
46
+
47
+    // 数据计算
48
+    computed: {
49
+        user() {
50
+            return this.$store.state.user.user;
51
+        },
52
+    },
53
+
54
+    // 数据监听
55
+    watch: {},
56
+};
57
+</script>
58
+
59
+<style lang="scss" scoped>
60
+.page {
61
+    min-height: 100vh;
62
+    background-color: #fff;
63
+}
64
+.list {
65
+    border-top: 1px solid #f1f1f1;
66
+    .item {
67
+        height: px(120);
68
+        padding: 0 px(35);
69
+        font-size: px(44);
70
+        display: flex;
71
+        justify-content: space-between;
72
+        align-items: center;
73
+        border-bottom: 1px solid #f1f1f1;
74
+    }
75
+    .arrow {
76
+        width: px(40);
77
+        height: px(40);
78
+        flex-shrink: 0;
79
+        transform: rotate(180deg);
80
+        /deep/ img {
81
+            width: px(40);
82
+            height: px(40);
83
+        }
84
+    }
85
+}
86
+</style>

+ 109 - 0
src/pages/bd/nav.vue

@@ -0,0 +1,109 @@
1
+<template>
2
+    <div class="page">
3
+        <ul class="list">
4
+            <li class="item" @click="jump('/pages/bd/profit')">
5
+                <div class="name">我的收益</div>
6
+                <my-image
7
+                    class="arrow"
8
+                    src="/static/common/arrows_left.png"
9
+                ></my-image>
10
+            </li>
11
+            <li class="item" @click="jump('/pages/bd/chief')">
12
+                <div class="name">我的团长</div>
13
+                <my-image
14
+                    class="arrow"
15
+                    src="/static/common/arrows_left.png"
16
+                ></my-image>
17
+            </li>
18
+            <li class="item" @click="copy(user.inviteCode)">
19
+                <div class="name">我的邀请码</div>
20
+                <div>{{user.inviteCode}} <span class="copy">点击复制</span></div>
21
+            </li>
22
+        </ul>
23
+    </div>
24
+</template>
25
+
26
+<script>
27
+import MyImage from "../../components/image/index";
28
+export default {
29
+    name: "",
30
+    components: { MyImage },
31
+
32
+    // 数据
33
+    data() {
34
+        return {
35
+            curShop: {},
36
+        };
37
+    },
38
+
39
+    onLoad() {},
40
+    async onShow() {},
41
+    // 函数
42
+    methods: {
43
+        
44
+
45
+        // 复制
46
+        copy(val) {
47
+            const self = this;
48
+
49
+            uni.setClipboardData({
50
+                data: val,
51
+                success: () => {
52
+                    self.fn.showToast("邀请码复制成功");
53
+                },
54
+            });
55
+        },
56
+    },
57
+
58
+    // 数据计算
59
+    computed: {
60
+        user() {
61
+            return this.$store.state.user.user;
62
+        },
63
+    },
64
+
65
+    // 数据监听
66
+    watch: {},
67
+};
68
+</script>
69
+
70
+<style lang="scss" scoped>
71
+.page {
72
+    min-height: 100vh;
73
+    background-color: #fff;
74
+}
75
+.list {
76
+    border-top: 1px solid #f1f1f1;
77
+    .item {
78
+        height: px(120);
79
+        padding: 0 px(35);
80
+        font-size: px(44);
81
+        display: flex;
82
+        justify-content: space-between;
83
+        align-items: center;
84
+        border-bottom: 1px solid #f1f1f1;
85
+    }
86
+    .arrow {
87
+        width: px(40);
88
+        height: px(40);
89
+        flex-shrink: 0;
90
+        transform: rotate(180deg);
91
+        /deep/ img {
92
+            width: px(40);
93
+            height: px(40);
94
+        }
95
+    }
96
+}
97
+.copy {
98
+    display: inline-block;
99
+    font-size: px(32);
100
+    line-height: px(44);
101
+    padding: 0 px(10);
102
+    border: 1px solid #4395ff;
103
+    color: #4395ff;
104
+    background-color: #fff;
105
+    margin-left: px(20);
106
+    border-radius: px(5);
107
+    transform: translate(0, -1px);
108
+}
109
+</style>

+ 216 - 0
src/pages/bd/profit.vue

@@ -0,0 +1,216 @@
1
+<template>
2
+    <div class="page">
3
+
4
+        <ul class="list">
5
+            <li v-for="item of listData" :key="item.id">
6
+                <div class="top">
7
+                    <div class="tit">
8
+                        {{ item.title }}
9
+                        <span class="shop-name">({{ item.shopName }})</span>
10
+                    </div>
11
+                    <div class="money" :class="{ green: item.type === 1 }">
12
+                        {{ item.type === 1 ? "+" : "-" }}{{ item.amount / 100 }}
13
+                    </div>
14
+                </div>
15
+                <div class="info">
16
+                    <div class="date">
17
+                        {{ item.createdTime | dateFormat("yyyy-MM-dd hh:mm") }}
18
+                    </div>
19
+                    <div class="formula blod">
20
+                        ¥{{ item.totalCommission / 100 }}(佣金)-¥{{
21
+                            item.pointsPrice / 100
22
+                        }}(积分抵扣) = ¥{{ item.amount / 100 }}
23
+                    </div>
24
+                </div>
25
+                <div class="bottom">
26
+                    <div class="num">订单号:{{ item.orderNo }}</div>
27
+                    <div
28
+                        class="link"
29
+                        @click="
30
+                            jump({
31
+                                path: '/pages/youxuan/order/detail',
32
+                                query: { id: item.orderId },
33
+                            })
34
+                        "
35
+                    >
36
+                        查看订单
37
+                    </div>
38
+                </div>
39
+            </li>
40
+        </ul>
41
+        <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
42
+    </div>
43
+</template>
44
+
45
+<script>
46
+import MyImage from "../../components/image/index";
47
+export default {
48
+    name: "",
49
+    components: { MyImage },
50
+    // 数据
51
+    data() {
52
+        return {
53
+            pageIndex: 1,
54
+            dataEnd: false,
55
+            listData: [],
56
+            shopInfo: null,
57
+        };
58
+    },
59
+    onShow() {},
60
+
61
+    onLoad() {
62
+        this.getList();
63
+    },
64
+    onPullDownRefresh() {
65
+        this.getList(true);
66
+    },
67
+    onReachBottom() {
68
+        this.getMoreList();
69
+    },
70
+
71
+    // 函数
72
+    methods: {
73
+
74
+        getList(isPull) {
75
+            uni.showLoading({
76
+                title: "加载中...",
77
+            });
78
+            this.pageIndex = 1;
79
+            this.dataEnd = false;
80
+            let sendData = {
81
+                pageIndex: this.pageIndex++,
82
+                // appId: this.user.appId,
83
+            };
84
+            this.api.get("/User/GetComissionList", sendData).then((res) => {
85
+                if (isPull) {
86
+                    uni.stopPullDownRefresh();
87
+                }
88
+                uni.hideLoading();
89
+                this.listData = res.data;
90
+                if (!this.listData.length) {
91
+                    this.dataEnd = true;
92
+                }
93
+            });
94
+        },
95
+        getMoreList() {
96
+            uni.showLoading({
97
+                title: "加载中...",
98
+            });
99
+            let sendData = {
100
+                pageIndex: this.pageIndex++,
101
+            };
102
+            this.api.get("/User/GetComissionList", sendData).then((res) => {
103
+                uni.hideLoading();
104
+                this.listData = [...this.listData, ...res.data];
105
+                if (!res.data.length) {
106
+                    this.dataEnd = true;
107
+                }
108
+            });
109
+        },
110
+    },
111
+
112
+    // 数据计算
113
+    computed: {
114
+        user() {
115
+            return this.$store.state.user.user;
116
+        },
117
+    },
118
+
119
+    // 数据监听
120
+    watch: {},
121
+};
122
+</script>
123
+
124
+<style lang="scss" scoped>
125
+.filter {
126
+    display: flex;
127
+    align-items: center;
128
+    padding: px(40);
129
+    font-size: px(44);
130
+    background-color: #fff;
131
+    .row {
132
+        padding: 0 px(20);
133
+        flex-shrink: 0;
134
+    }
135
+    .key {
136
+        flex-shrink: 0;
137
+    }
138
+    .value {
139
+        border: 1px solid #f1f1f1;
140
+        height: px(80);
141
+        width: px(200);
142
+        padding: 0 px(10);
143
+        width: 90%;
144
+    }
145
+}
146
+
147
+.profit-info {
148
+    text-align: center;
149
+    padding: px(60) px(40);
150
+    background-color: #fff;
151
+    .tit {
152
+        font-size: px(44);
153
+    }
154
+    .money {
155
+        font-size: px(56);
156
+        color: #ff4b26;
157
+        margin-top: px(30);
158
+    }
159
+}
160
+.list {
161
+    padding: px(50) 0;
162
+    border-top: 1px solid #f1f1f1;
163
+    background-color: #fff;
164
+    li {
165
+        border-bottom: 1px solid #f1f1f1;
166
+        padding: px(30) px(40);
167
+    }
168
+    .top,
169
+    .info,
170
+    .bottom {
171
+        display: flex;
172
+        align-items: center;
173
+        justify-content: space-between;
174
+    }
175
+    .tit {
176
+        font-size: px(48);
177
+    }
178
+    .money {
179
+        color: #ff4b26;
180
+    }
181
+    .green {
182
+        color: #27a34f;
183
+    }
184
+    .info,
185
+    .bottom {
186
+        font-size: px(40);
187
+        color: #666;
188
+        margin-top: px(10);
189
+    }
190
+    .formula {
191
+        font-weight: bold;
192
+    }
193
+    .link {
194
+        color: #4395ff;
195
+    }
196
+    .num {
197
+        color: #999;
198
+    }
199
+}
200
+.blod {
201
+    font-weight: bold;
202
+}
203
+.more-text {
204
+    display: flex;
205
+    justify-content: center;
206
+    padding-bottom: px(60);
207
+    font-size: px(34);
208
+    color: #999;
209
+}
210
+.shop-name {
211
+    color: #666;
212
+    display: inline-block;
213
+    margin-left: px(10);
214
+    font-size: px(40);
215
+}
216
+</style>

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

@@ -49,6 +49,16 @@
49 49
                     ></my-image>
50 50
                     <span class="text">优选管理</span>
51 51
                 </li>
52
+                <li
53
+                    class="item"
54
+                    @click="jump('/pages/bd/nav')"
55
+                >
56
+                    <my-image
57
+                        class="img"
58
+                        src="/static/icon/youxuan.png"
59
+                    ></my-image>
60
+                    <span class="text">bd管理</span>
61
+                </li>
52 62
                 <!-- <block v-if="storeStatus === 0 || storeStatus === 1">
53 63
                         <li
54 64
                             class="item"
@@ -81,7 +91,7 @@
81 91
 
82 92
         <!-- <button class="btn" @click="layout">退出登录</button> -->
83 93
 
84
-        <div class="ver">0.5.45</div>
94
+        <div class="ver">0.5.46</div>
85 95
         <wyg-bottom-tab
86 96
             ref="tabbar"
87 97
             :tabIndex="2"

+ 7 - 3
src/pages/youxuan/order/detail.vue

@@ -81,7 +81,7 @@
81 81
                     <div class="value blod">
82 82
                         ¥{{ data.commission / 100 }}(佣金)-¥{{
83 83
                             data.pointsPrice / 100
84
-                        }}(积分抵扣)=¥{{ data.amount / 100 }}
84
+                        }}(积分抵扣)=¥{{ data.estimateComission / 100 }}
85 85
                     </div>
86 86
                 </li>
87 87
             </ul>
@@ -300,9 +300,9 @@ export default {
300 300
     li {
301 301
         display: flex;
302 302
         justify-content: flex-start;
303
-        align-items: center;
303
+        align-items: flex-start;
304 304
         font-size: px(40);
305
-        padding: px(10) 0;
305
+        padding: px(15) 0;
306 306
     }
307 307
     .key {
308 308
         color: #666;
@@ -313,6 +313,10 @@ export default {
313 313
     .key-r {
314 314
         margin-left: px(50);
315 315
     }
316
+    .value{
317
+        flex-shrink: 0;
318
+        margin-left: px(20);
319
+    }
316 320
 }
317 321
 .blod {
318 322
     font-weight: bold;

+ 12 - 3
src/pages/youxuan/profit.vue

@@ -36,8 +36,8 @@
36 36
         <ul class="list">
37 37
             <li v-for="item of listData" :key="item.id">
38 38
                 <div class="top">
39
-                    <div class="tit">{{ item.title }}</div>
40
-                    <div class="money">+{{ item.amount / 100 }}</div>
39
+                    <div class="tit">{{ item.title }} <span class="shop-name">({{item.shopName}})</span> </div>
40
+                    <div class="money" :class="{green:item.type===1}">{{item.type===1?'+':'-'}}{{ item.amount / 100 }}</div>
41 41
                 </div>
42 42
                 <div class="info">
43 43
                     <div class="date">
@@ -153,7 +153,7 @@ export default {
153 153
             this.api.get("/Yx/GetProfitList", sendData).then((res) => {
154 154
                 uni.hideLoading();
155 155
                 this.listData = [...this.listData, ...res.data];
156
-                if (!this.listData.length) {
156
+                if (!res.data.length) {
157 157
                     this.dataEnd = true;
158 158
                 }
159 159
             });
@@ -230,6 +230,9 @@ export default {
230 230
     .money {
231 231
         color: #ff4b26;
232 232
     }
233
+    .green{
234
+        color: #27a34f;
235
+    }
233 236
     .info,
234 237
     .bottom {
235 238
         font-size: px(40);
@@ -256,4 +259,10 @@ export default {
256 259
     font-size: px(34);
257 260
     color: #999;
258 261
 }
262
+.shop-name{
263
+    color: #666;
264
+    display: inline-block;
265
+    margin-left: px(10);
266
+    font-size: px(40);
267
+}
259 268
 </style>