cr преди 3 години
родител
ревизия
09c13139bb
променени са 9 файла, в които са добавени 4505 реда и са изтрити 14 реда
  1. 214 0
      src/components/xuan-switch/xuan-switch.vue
  2. 31 0
      src/pages.json
  3. 1 1
      src/pages/index/login.vue
  4. 13 13
      src/pages/manage/index.vue
  5. 1132 0
      src/pages/yx/brand.vue
  6. 307 0
      src/pages/yx/classify.vue
  7. 2104 0
      src/pages/yx/good.vue
  8. 375 0
      src/pages/yx/order/detail.vue
  9. 328 0
      src/pages/yx/order/index.vue

+ 214 - 0
src/components/xuan-switch/xuan-switch.vue

@@ -0,0 +1,214 @@
1
+<template>
2
+    <view class="switch-container" :style="[{ background: bj_color }]">
3
+        <view class="switch_view">
4
+            <view
5
+                class="switch-item"
6
+                :class="{ checked_switch: isSwitch }"
7
+                :style="isSwitch ? `color:${checked_color}` : ''"
8
+                @click.prevent.stop="changeSwitch(true)"
9
+                :animation="animationData2"
10
+            >
11
+                {{ switchList[0] }}
12
+            </view>
13
+            <view
14
+                class="switch-item"
15
+                :class="{ checked_switch: !isSwitch }"
16
+                :style="!isSwitch ? `color:${checked_color}` : ''"
17
+                @click.prevent.stop="changeSwitch(false)"
18
+                :animation="animationData3"
19
+            >
20
+                {{ switchList[1] }}
21
+            </view>
22
+        </view>
23
+        <view class="disabled" v-if="disabled"></view>
24
+        <view
25
+            class="position_view"
26
+            :animation="animationData1"
27
+            :style="[{ background: checked_bj_color }]"
28
+        ></view>
29
+    </view>
30
+</template>
31
+
32
+<script>
33
+export default {
34
+    props: {
35
+        switchList: {
36
+            type: Array,
37
+            default: () => {
38
+                return ["开", "关"];
39
+            },
40
+        },
41
+        defaultSwitch: {
42
+            type: Boolean,
43
+            default: true,
44
+        },
45
+        isShowModal: {
46
+            //改变开关时,是否弹框提醒
47
+            type: Boolean,
48
+            default: false,
49
+        },
50
+        disabled: {
51
+            type: Boolean,
52
+            default: false,
53
+        },
54
+        bj_color: {
55
+            type: String,
56
+            default: "#fff",
57
+        },
58
+        // checked_bj_color:{
59
+        //   type:String,
60
+        //   default:'rgb(0, 188, 38)',
61
+        // },
62
+        changeBgColor: {
63
+            type: Boolean,
64
+            default: true,
65
+        },
66
+        checked_color: {
67
+            type: String,
68
+            default: "#fff",
69
+        },
70
+    },
71
+    data() {
72
+        return {
73
+            isSwitch: true,
74
+            initAnimation: {},
75
+            animationData1: {},
76
+            animationData2: {},
77
+            animationData3: {},
78
+            checked_bj_color: "00bc26", //#f44336红 #00bc26绿
79
+        };
80
+    },
81
+    created() {
82
+        this.initAnimation = uni.createAnimation({
83
+            duration: 500,
84
+            timingFunction: "ease",
85
+        });
86
+        this.isSwitch = this.defaultSwitch;
87
+        this.changeAnimation();
88
+    },
89
+    methods: {
90
+        changeSwitch(isSwitch) {
91
+            if (isSwitch == this.isSwitch || this.disabled) {
92
+                return;
93
+            }
94
+            if (this.isShowModal) {
95
+                let index = isSwitch ? 0 : 1;
96
+                let text = this.switchList[index];
97
+                uni.showModal({
98
+                    title: "提示",
99
+                    content: `您确定要将其调整为${text}吗?`,
100
+                    success: (res) => {
101
+                        if (res.confirm) {
102
+                            this.isSwitch = isSwitch;
103
+                            this.changeAnimation();
104
+                            this.callParentEvent(isSwitch);
105
+                        }
106
+                    },
107
+                });
108
+            } else {
109
+                this.isSwitch = isSwitch;
110
+                this.changeAnimation();
111
+                this.callParentEvent(isSwitch);
112
+            }
113
+        },
114
+        changeAnimation() {
115
+            if (this.isSwitch) {
116
+                this.animationData1 = this.initAnimation
117
+                    .left(0)
118
+                    .width("60%")
119
+                    .step()
120
+                    .export();
121
+                this.animationData2 = this.initAnimation
122
+                    .width("60%")
123
+                    .step()
124
+                    .export();
125
+                this.animationData3 = this.initAnimation
126
+                    .width("40%")
127
+                    .step()
128
+                    .export();
129
+            } else {
130
+                this.animationData1 = this.initAnimation
131
+                    .left("40%")
132
+                    .width("60%")
133
+                    .step()
134
+                    .export();
135
+                this.animationData2 = this.initAnimation
136
+                    .width("40%")
137
+                    .step()
138
+                    .export();
139
+                this.animationData3 = this.initAnimation
140
+                    .width("60%")
141
+                    .step()
142
+                    .export();
143
+            }
144
+        },
145
+        callParentEvent() {
146
+            this.$emit("change", this.isSwitch);
147
+        },
148
+    },
149
+    watch: {
150
+        isSwitch(v) {
151
+            if (this.changeBgColor) {
152
+                if (v) {
153
+                    this.checked_bj_color = "#00bc26";
154
+                } else {
155
+                    this.checked_bj_color = "#f44336";
156
+                }
157
+            }
158
+        },
159
+    },
160
+};
161
+</script>
162
+
163
+<style lang="scss" scoped>
164
+.switch-container {
165
+    display: flex;
166
+    flex-direction: row;
167
+    width: 160upx;
168
+    height: 60upx;
169
+    border-radius: 100upx;
170
+    border: 1upx solid #ccc;
171
+    position: relative;
172
+    .switch_view {
173
+        position: absolute;
174
+        top: 0;
175
+        left: 0;
176
+        width: 100%;
177
+        height: 100%;
178
+        z-index: 1;
179
+        display: flex;
180
+        border-radius: 100upx;
181
+        .switch-item {
182
+            color: #666;
183
+            font-size: 24upx;
184
+            height: 100%;
185
+            width: 40%;
186
+            border-radius: 100upx;
187
+            display: flex;
188
+            justify-content: center;
189
+            align-items: center;
190
+        }
191
+    }
192
+    .position_view {
193
+        position: absolute;
194
+        top: 0;
195
+        left: 0;
196
+        width: 60%;
197
+        height: 100%;
198
+        border-radius: 100upx;
199
+        background: rgb(0, 188, 38);
200
+        transition: all 0.3s;
201
+    }
202
+    .disabled {
203
+        position: absolute;
204
+        top: 0;
205
+        left: 0;
206
+        width: 100%;
207
+        height: 100%;
208
+        z-index: 99;
209
+        background: #fff;
210
+        opacity: 0.6;
211
+        border-radius: 100upx;
212
+    }
213
+}
214
+</style>

+ 31 - 0
src/pages.json

@@ -112,6 +112,37 @@
112 112
             "style": {
113 113
                 "navigationBarTitleText": "修改手机号"
114 114
             }
115
+        },
116
+        {
117
+            "path": "pages/yx/classify",
118
+            "style": {
119
+                "navigationBarTitleText": "分类管理"
120
+            }
121
+        },
122
+        {
123
+            "path": "pages/yx/brand",
124
+            "style": {
125
+                "navigationBarTitleText": "活动管理"
126
+            }
127
+        },
128
+        {
129
+            "path": "pages/yx/good",
130
+            "style": {
131
+                "navigationBarTitleText": "商品管理"
132
+            }
133
+        },
134
+        {
135
+            "path": "pages/yx/order/index",
136
+            "style": {
137
+                "navigationBarTitleText": "优选订单",
138
+                "enablePullDownRefresh": true
139
+            }
140
+        },
141
+        {
142
+            "path": "pages/yx/order/detail",
143
+            "style": {
144
+                "navigationBarTitleText": "订单详情"
145
+            }
115 146
         }
116 147
     ]
117 148
 }

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

@@ -21,7 +21,7 @@
21 21
             <button class="btn" @click="submit">确定</button>
22 22
             <div class="login-other">
23 23
                 <div class="register-box">
24
-                    <a class="go-register" @click="jumpRegister">去注册</a>
24
+                    <!-- <a class="go-register" @click="jumpRegister">去注册</a> -->
25 25
                     <!-- <a class="go-register register2" @click="jumpRegister2"
26 26
                         >无团长号注册</a
27 27
                     > -->

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

@@ -10,35 +10,35 @@
10 10
                     ></my-image>
11 11
                     <span class="text">账号管理</span>
12 12
                 </li>
13
-                <li class="item" @click="jump('/pages/manage/user/index')">
13
+                <li class="item" @click="jump('/pages/yx/classify')">
14 14
                     <my-image
15 15
                         class="img"
16
-                        src="/static/icon/cashier.png"
16
+                        src="/static/icon/classify.png"
17 17
                     ></my-image>
18
-                    <span class="text">资金结算</span>
18
+                    <span class="text">分类管理</span>
19 19
                 </li>
20
-                <li class="item" @click="jump('/pages/manage/user/index')">
20
+                <li class="item" @click="jump('/pages/yx/brand')">
21 21
                     <my-image
22 22
                         class="img"
23
-                        src="/static/icon/bd.png"
23
+                        src="/static/icon/youxuan.png"
24 24
                     ></my-image>
25
-                    <span class="text">售后处理</span>
25
+                    <span class="text">活动管理</span>
26 26
                 </li>
27
-                <li class="item" @click="jump('/pages/manage/user/index')">
27
+                <li class="item">
28 28
                     <my-image
29 29
                         class="img"
30
-                        src="/static/icon/shop.png"
30
+                        src="/static/icon/cashier.png"
31 31
                     ></my-image>
32
-                    <span class="text">商品管理</span>
32
+                    <span class="text">资金结算</span>
33 33
                 </li>
34
-                <li class="item" @click="jump('/pages/manage/user/index')">
34
+                <li class="item">
35 35
                     <my-image
36 36
                         class="img"
37
-                        src="/static/icon/youxuan.png"
37
+                        src="/static/icon/bd.png"
38 38
                     ></my-image>
39
-                    <span class="text">活动管理</span>
39
+                    <span class="text">售后处理</span>
40 40
                 </li>
41
-                <li class="item" @click="jump('/pages/manage/user/index')">
41
+                <li class="item" @click="jump('/pages/yx/order/index')">
42 42
                     <my-image
43 43
                         class="img"
44 44
                         src="/static/icon/cashier-list.png"

Файловите разлики са ограничени, защото са твърде много
+ 1132 - 0
src/pages/yx/brand.vue


+ 307 - 0
src/pages/yx/classify.vue

@@ -0,0 +1,307 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <ul class="classify-list">
4
+            <black v-for="item of classifyList" :key="item.categoryId">
5
+                <li class="item">
6
+                    <div
7
+                        class="con"
8
+                    >
9
+                        <div class="name">
10
+                            {{ item.name }}
11
+                        </div>
12
+                        <div class="des">
13
+                            <!-- {{ item.children ? item.children.length : 0 }}个品牌 -->
14
+                        </div>
15
+                        <my-image
16
+                            class="arrow"
17
+                            :class="{ up: item.showChildren }"
18
+                            src="/static/common/arrows_left.png"
19
+                        ></my-image>
20
+                    </div>
21
+                    <div class="tool">
22
+                        <!-- <selectSwitch class="switch" :defaultSwitch="item.display===1" @change="displaySwitch(item,$event)" :switchList="['显示','隐藏']"/> -->
23
+                        <!-- <selectSwitch class="switch" :defaultSwitch="item.top!==0" @change="setTopSwitch(item,$event)" :switchList="['置顶','取消']" :changeBgColor="false"/> -->
24
+                    </div>
25
+                </li>
26
+            </black>
27
+        </ul>
28
+        <!-- <div class="add-classify" @click="add">新建分类</div> -->
29
+
30
+        <uni-popup ref="popup" type="dialog">
31
+            <uni-popup-dialog
32
+                mode="input"
33
+                :title="'推荐等级'"
34
+                :content="false"
35
+                :inputType="'number'"
36
+                :value="level"
37
+                placeholder="请输入推荐等级"
38
+                @confirm="popupConfirm"
39
+            ></uni-popup-dialog>
40
+        </uni-popup>
41
+    </div>
42
+</template>
43
+
44
+<script>
45
+import MyImage from "../../components/image/index";
46
+import uniPopup from "../../components/uni-popup/uni-popup";
47
+import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
48
+import selectSwitch  from "../../components/xuan-switch/xuan-switch";
49
+
50
+export default {
51
+    name: "",
52
+    components: { MyImage, uniPopup, uniPopupDialog,selectSwitch  },
53
+
54
+    // 数据
55
+    data() {
56
+        return {
57
+            classifyList: [],
58
+            curData: {},
59
+            level: 0,
60
+        };
61
+    },
62
+
63
+    onLoad() {
64
+        if (this.user.storeId) {
65
+        }
66
+    },
67
+    async onShow() {
68
+        this.getClassify();
69
+    },
70
+    // 函数
71
+    methods: {
72
+        // 获取分类
73
+        getClassify() {
74
+            uni.showLoading({
75
+                title: "加载中...",
76
+            });
77
+            this.api.get("/Supplier/GetCateList", {}).then((res) => {
78
+                uni.hideLoading();
79
+                this.classifyList = res.data;
80
+            });
81
+        },
82
+
83
+        // 显示隐藏
84
+        displaySwitch(val,e) {
85
+            if (val.display === 0) {
86
+                //下架中,点击上架
87
+                this.api
88
+                    .post("/Yx/SetCategoryDisplay", {
89
+                        categoryId: val.categoryId,
90
+                        display: 1,
91
+                    })
92
+                    .then((res) => {
93
+                        if (res.success) {
94
+                            val.display = 1;
95
+                            this.$forceUpdate();
96
+                        } else {
97
+                            this.fn.showModal({
98
+                                title: "设置失败",
99
+                                content: res.message,
100
+                                showCancel: false,
101
+                            });
102
+                        }
103
+                    });
104
+            } else {
105
+                this.api
106
+                    .post("/Yx/SetCategoryDisplay", {
107
+                        categoryId: val.categoryId,
108
+                        display: 0,
109
+                    })
110
+                    .then((res) => {
111
+                        if (res.success) {
112
+                            // this.fn.showToast("下架成功");
113
+                            val.display = 0;
114
+                            this.$forceUpdate();
115
+                        } else {
116
+                            this.fn.showModal({
117
+                                title: "设置失败",
118
+                                content: res.message,
119
+                                showCancel: false,
120
+                            });
121
+                        }
122
+                    });
123
+            }
124
+        },
125
+
126
+        // 推荐等级设置
127
+        setTopSwitch(val) {
128
+            if (val.top === 0) {
129
+                // 置顶
130
+                this.api
131
+                    .post("/Yx/SetCategoryTop", {
132
+                        id: val.categoryId,
133
+                        query:true
134
+                    })
135
+                    .then((res) => {
136
+                        if (res.success) {
137
+                            val.top = 99;
138
+                            this.$forceUpdate();
139
+                        } else {
140
+                            this.fn.showModal({
141
+                                title: "设置失败",
142
+                                content: res.message,
143
+                                showCancel: false,
144
+                            });
145
+                        }
146
+                    });
147
+            } else {
148
+                // 取消置顶
149
+                this.api
150
+                    .post("/Yx/CancelCategoryTop", {
151
+                        id: val.categoryId,
152
+                        query:true
153
+                    })
154
+                    .then((res) => {
155
+                        if (res.success) {
156
+                            // this.fn.showToast("下架成功");
157
+                            val.top = 0;
158
+                            this.$forceUpdate();
159
+                        } else {
160
+                            this.fn.showModal({
161
+                                title: "设置失败",
162
+                                content: res.message,
163
+                                showCancel: false,
164
+                            });
165
+                        }
166
+                    });
167
+            }
168
+        },
169
+
170
+
171
+    },
172
+
173
+    // 数据计算
174
+    computed: {
175
+        user() {
176
+            return this.$store.state.user.user;
177
+        },
178
+    },
179
+
180
+    // 数据监听
181
+    watch: {},
182
+};
183
+</script>
184
+
185
+<style lang="scss" scoped>
186
+.page {
187
+    padding-bottom: px(180);
188
+    min-height: 100vh;
189
+    background-color: #fff;
190
+}
191
+.add-classify {
192
+    position: fixed;
193
+    bottom: 0;
194
+    left: 0;
195
+    right: 0;
196
+    height: px(150);
197
+    z-index: 100;
198
+    display: flex;
199
+    justify-content: center;
200
+    align-items: center;
201
+    font-size: px(44);
202
+    color: #fff;
203
+    background-color: rgb(0, 188, 38);
204
+}
205
+.page--iphoneX {
206
+    .add-classify {
207
+        padding-bottom: px(30);
208
+    }
209
+}
210
+.classify-list {
211
+    .item {
212
+        display: flex;
213
+        padding: px(30) px(35);
214
+        justify-content: space-between;
215
+        align-items: center;
216
+        border-top: 1px solid #f1f1f1;
217
+        .tool {
218
+            flex-shrink: 0;
219
+            display: flex;
220
+            align-items: center;
221
+            justify-content: center;
222
+        }
223
+        .setting {
224
+            width: px(140);
225
+            height: px(80);
226
+            border: 1px solid #b7b7b7;
227
+            border-radius: px(8);
228
+            color: #666;
229
+            font-size: px(40);
230
+            display: flex;
231
+            align-items: center;
232
+            justify-content: center;
233
+        }
234
+        .con {
235
+            width: 40%;
236
+            padding-right: px(44);
237
+            position: relative;
238
+        }
239
+        .link {
240
+            color: #4395ff;
241
+            font-size: px(42);
242
+            position: absolute;
243
+            right: 0;
244
+            top: 50%;
245
+            z-index: 10;
246
+            transform: translate(0, -50%);
247
+        }
248
+        .name {
249
+            font-size: px(44);
250
+            color: #333;
251
+        }
252
+
253
+        .des {
254
+            font-size: px(36);
255
+            margin-top: px(20);
256
+            color: #666;
257
+            @include omit(100%);
258
+        }
259
+        .arrow {
260
+            position: absolute;
261
+            right: 0;
262
+            top: 50%;
263
+            z-index: 10;
264
+            transform: translate(0, -50%) rotate(180deg);
265
+            width: px(44);
266
+            height: px(44);
267
+            transition: all 0.3s;
268
+            /deep/ img {
269
+                height: px(44);
270
+                width: px(44);
271
+            }
272
+            &.up {
273
+                transform: translate(0, -50%) rotate(90deg);
274
+            }
275
+        }
276
+        .status {
277
+            width: px(120);
278
+            height: px(44);
279
+            background-color: #e7faf0;
280
+            border-radius: px(8);
281
+            border: 1px solid #d0f5e0;
282
+            font-size: px(32);
283
+            color: #13ce66;
284
+            padding: px(6) px(3);
285
+            margin-right: px(30);
286
+            display: flex;
287
+            align-items: center;
288
+            justify-content: center;
289
+            &.status2 {
290
+                width: px(210);
291
+            }
292
+            &.up {
293
+                background-color: #ffeded;
294
+                border-color: #ffdbdb;
295
+                color: #ff4949;
296
+            }
297
+        }
298
+    }
299
+    .item-child {
300
+        padding-left: px(60);
301
+        background-color: #efefef;
302
+    }
303
+}
304
+.switch~.switch{
305
+    margin-left: px(40);
306
+}
307
+</style>

Файловите разлики са ограничени, защото са твърде много
+ 2104 - 0
src/pages/yx/good.vue


+ 375 - 0
src/pages/yx/order/detail.vue

@@ -0,0 +1,375 @@
1
+<template>
2
+    <div class="page" v-if="data">
3
+        <div class="order-info">
4
+            <div class="info">
5
+                <div class="num">订单号:{{ data.orderNo }}</div>
6
+                <div class="status">{{ data.status | orderStatus }}</div>
7
+            </div>
8
+            <div class="con">
9
+                <my-image :src="data.headIcon" class="img"></my-image>
10
+                <div class="main">
11
+                    <div class="line">
12
+                        <div class="name">
13
+                            {{ data.nickName }}
14
+                        </div>
15
+                        <div class="money">
16
+                            合计:<span class="red-text"
17
+                                >¥{{ data.amount / 100 }}</span
18
+                            >
19
+                        </div>
20
+                    </div>
21
+                    <div class="line">
22
+                        <div class="time">
23
+                            {{ data.orderTime | dateFormat("hh:mm") }}
24
+                        </div>
25
+                        <div class="money">
26
+                            预估佣金:¥{{ data.estimateComission / 100 }}
27
+                        </div>
28
+                    </div>
29
+                </div>
30
+            </div>
31
+        </div>
32
+        <ul class="good-list">
33
+            <li v-for="(item, index) of data.orderItems" :key="index">
34
+                <my-image class="good-img" :src="item.productImage"></my-image>
35
+                <div class="good-con">
36
+                    <div class="good-name">{{ item.productName }}</div>
37
+                    <div class="info">
38
+                        <div class="sku">规格:{{ item.productSpec }}</div>
39
+                        <div class="count">数量:{{ item.count }}</div>
40
+                    </div>
41
+                    <div class="money">
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>
50
+                    </div>
51
+                </div>
52
+            </li>
53
+        </ul>
54
+        <section class="info-box">
55
+            <ul>
56
+                <li>
57
+                    <div class="key">总件数:</div>
58
+                    <div class="value">x{{ data.totalCount }}</div>
59
+
60
+                    <div class="key key-r">总金额:</div>
61
+                    <div class="value">¥{{ data.totalAmount / 100 }}</div>
62
+                </li>
63
+                <li>
64
+                    <div class="key">积分抵扣({{ data.points }}分):</div>
65
+                    <div class="value">-¥{{ data.pointsPrice / 100 }}</div>
66
+                </li>
67
+                <li>
68
+                    <div class="key">优惠券:</div>
69
+                    <div class="value">-¥{{ data.couponAmount }}</div>
70
+                </li>
71
+                <li>
72
+                    <div class="key">运费/配送费:</div>
73
+                    <div class="value">¥{{ data.postage }}</div>
74
+                </li>
75
+                <li>
76
+                    <div class="key">合计:</div>
77
+                    <div class="value red">¥{{ data.amount / 100 }}</div>
78
+                </li>
79
+                <li >
80
+                    <div class="key">团长佣金:</div>
81
+                    <div class="value blod">
82
+                        ¥{{ data.estimateComission / 100 }}(佣金)- ¥{{
83
+                            data.pointsPrice / 100
84
+                        }}(积分抵扣)= <span class="green">+¥{{ data.commission / 100 }}</span>
85
+                    </div>
86
+                </li>
87
+                <li v-if="dataType === 9">
88
+                    <div class="key">佣金回退:</div>
89
+                    <div class="value blod">
90
+                        ¥{{ data.estimateComission / 100 }}(佣金)- ¥{{
91
+                            data.pointsPrice / 100
92
+                        }}(积分抵扣)= <span class="red">-¥{{ data.commission / 100 }}(已退还)</span>
93
+                    </div>
94
+                </li>
95
+                <li v-if="dataType === 10">
96
+                    <div class="key">BD佣金:</div>
97
+                    <div class="value blod">
98
+                        ¥{{ data.commission / 100 }}(佣金) * 20% = 
99
+                        <span class="green">+¥{{(data.commission * 0.2) | minuteToRmb}}</span>
100
+                    </div>
101
+                </li>
102
+                <li v-if="dataType === 11">
103
+                    <div class="key">BD佣金回退:</div>
104
+                    <div class="value blod">
105
+                         ¥{{ data.commission / 100 }}(佣金) * 20% = 
106
+                        <span class="red">-¥{{(data.commission * 0.2) | minuteToRmb}}(已退还)</span>
107
+                    </div>
108
+                </li>
109
+                <li v-if="dataType === 12">
110
+                    <div class="key">BDM佣金:</div>
111
+                    <div class="value blod">
112
+                        ¥{{ data.commission / 100 }}(佣金) * 5% = 
113
+                        <span class="green">+¥{{
114
+                            (data.commission * 0.05) | minuteToRmb
115
+                        }}</span>
116
+                    </div>
117
+                </li>
118
+                <li v-if="dataType === 13">
119
+                    <div class="key">BDM佣金回退:</div>
120
+                    <div class="value blod">
121
+                        ¥{{ data.commission / 100 }}(佣金) * 5% = 
122
+                        <span class="green">-¥{{
123
+                            (data.commission * 0.05) | minuteToRmb
124
+                        }}(已退还)</span>
125
+                    </div>
126
+                </li>
127
+            </ul>
128
+        </section>
129
+        <section class="info-box">
130
+            <ul>
131
+                <!-- <li>
132
+                    <div class="key">下单时间:</div>
133
+                    <div class="value">
134
+                        {{ data.orderTime | dateFormat("yyyy-MM-dd hh:mm") }}
135
+                    </div>
136
+                </li> -->
137
+                <li v-for="item of data.logs" :key="item.time">
138
+                    <div class="value">
139
+                        {{ item.time | dateFormat("yy-MM-dd hh:mm") }}:
140
+                    </div>
141
+                    <div class="key">{{ item.title }}</div>
142
+                </li>
143
+            </ul>
144
+        </section>
145
+    </div>
146
+</template>
147
+
148
+<script>
149
+import MyImage from "../../../components/image/index";
150
+let statusEnum = {
151
+    2: "待支付",
152
+    3: "待发货",
153
+    4: "待收货",
154
+    6: "已取消",
155
+    7: "售后中",
156
+    8: "已删除",
157
+    9: "已完成",
158
+    10: "已评价",
159
+    11: "已售后",
160
+    12: "已退款",
161
+    20: "待接单",
162
+    21: "拣货中",
163
+    22: "拣货完成",
164
+    23: "待配送",
165
+    24: "配送中",
166
+    25: "已送达",
167
+    26: "待提货",
168
+    27: "已提货",
169
+    31: "订单已推单",
170
+    32: "订单已被骑手接单",
171
+    33: "骑手已到店",
172
+    34: "骑手已取餐",
173
+    35: "订单完成",
174
+    36: "订单失败",
175
+};
176
+export default {
177
+    name: "",
178
+    components: { MyImage },
179
+
180
+    filters: {
181
+        orderStatus(v) {
182
+            return statusEnum[v] || "";
183
+        },
184
+    },
185
+    // 数据
186
+    data() {
187
+        return {
188
+            dataId: "",
189
+            data: null,
190
+            isBd: true,
191
+            dataType: 0,
192
+        };
193
+    },
194
+
195
+    onLoad(opts) {
196
+        this.dataId = opts.id;
197
+        if (opts.type) {
198
+            this.dataType = Number(opts.type);
199
+        }
200
+        this.getDetail();
201
+    },
202
+
203
+    onShow() {},
204
+
205
+    // 函数
206
+    methods: {
207
+        getDetail() {
208
+            uni.showLoading({
209
+                title: "加载中...",
210
+            });
211
+            this.api.get("/Yx/GetOrder", { id: this.dataId }).then((res) => {
212
+                uni.hideLoading();
213
+                this.data = res.data;
214
+            });
215
+        },
216
+    },
217
+
218
+    // 数据计算
219
+    computed: {},
220
+
221
+    // 数据监听
222
+    watch: {},
223
+};
224
+</script>
225
+
226
+<style lang="scss" scoped>
227
+.page {
228
+    background-color: #fff;
229
+}
230
+.order-info {
231
+    padding: px(30) px(30) px(50);
232
+    border-bottom: 1px solid #e9e9e9;
233
+    .info {
234
+        display: flex;
235
+        justify-content: space-between;
236
+        align-items: center;
237
+        .num {
238
+            color: #666;
239
+        }
240
+        .status {
241
+            color: #409eff;
242
+        }
243
+    }
244
+
245
+    .con {
246
+        display: flex;
247
+        align-items: stretch;
248
+        justify-content: space-between;
249
+        margin-top: px(30);
250
+        .img {
251
+            width: px(230);
252
+            height: px(230);
253
+            flex-shrink: 0;
254
+            margin-right: px(20);
255
+            background-color: #f9f9f9;
256
+            /deep/ img {
257
+                width: px(230);
258
+                height: px(230);
259
+            }
260
+        }
261
+    }
262
+    .main {
263
+        width: 100%;
264
+        display: flex;
265
+        justify-content: space-between;
266
+        flex-direction: column;
267
+        padding: px(25) 0;
268
+        .money {
269
+            flex-shrink: 0;
270
+        }
271
+        .name {
272
+            @include omits(2);
273
+        }
274
+        .line {
275
+            display: flex;
276
+            justify-content: space-between;
277
+            & ~ .line {
278
+                margin-top: px(10);
279
+            }
280
+        }
281
+        .red-text {
282
+            color: #ff4b26;
283
+        }
284
+        .time,
285
+        .money {
286
+            font-size: px(40);
287
+            color: #666;
288
+        }
289
+    }
290
+}
291
+
292
+.good-list {
293
+    li {
294
+        display: flex;
295
+        justify-content: space-between;
296
+        align-items: stretch;
297
+        padding: px(20) px(40);
298
+        border-bottom: 1px solid #e9e9e9;
299
+        background-color: #f9f9f9;
300
+        .good-img {
301
+            width: px(220);
302
+            height: px(220);
303
+            flex-shrink: 0;
304
+            margin-right: px(20);
305
+            background-color: #f1f1f1;
306
+            /deep/ img {
307
+                width: px(220);
308
+                height: px(220);
309
+            }
310
+        }
311
+        .good-con {
312
+            width: 100%;
313
+            display: flex;
314
+            justify-content: space-between;
315
+            flex-direction: column;
316
+            font-size: px(40);
317
+            .good-name {
318
+                @include omits(2);
319
+            }
320
+            .info,
321
+            .money,
322
+            .status {
323
+                margin-top: px(10);
324
+                display: flex;
325
+                justify-content: space-between;
326
+                align-items: center;
327
+            }
328
+            .count,
329
+            .sku {
330
+                color: #666;
331
+            }
332
+            .status {
333
+                font-size: px(36);
334
+                color: #f78819;
335
+            }
336
+        }
337
+    }
338
+}
339
+.info-box {
340
+    padding: px(60) px(30);
341
+    & ~ .info-box {
342
+        border-top: 1px solid #e9e9e9;
343
+    }
344
+    li {
345
+        display: flex;
346
+        justify-content: flex-start;
347
+        align-items: flex-start;
348
+        font-size: px(40);
349
+        padding: px(15) 0;
350
+    }
351
+    .key {
352
+        color: #666;
353
+        margin-left: px(20);
354
+    }
355
+    .red {
356
+        color: #ff4b26;
357
+    }
358
+    .key-r {
359
+        margin-left: px(50);
360
+    }
361
+    .value {
362
+        flex-shrink: 0;
363
+        margin-top: px(8);
364
+    }
365
+}
366
+.blod {
367
+    font-weight: bold;
368
+}
369
+.green {
370
+    color: #27a34f !important;
371
+}
372
+.red {
373
+    color: #f85e5e !important;
374
+}
375
+</style>

+ 328 - 0
src/pages/yx/order/index.vue

@@ -0,0 +1,328 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="filter">
4
+            <span class="key">时间:</span>
5
+            <picker
6
+                mode="date"
7
+                @change="dateChange($event, 'startDate')"
8
+                :end="filter.endDate || endDate"
9
+                ><input
10
+                    class="value"
11
+                    placeholder="开始日期"
12
+                    :disabled="true"
13
+                    v-model="filter.startDate"
14
+            /></picker>
15
+            <span class="row">至</span>
16
+            <picker
17
+                mode="date"
18
+                @change="dateChange($event, 'endDate')"
19
+                :start="filter.startDate"
20
+                :end="endDate"
21
+                ><input
22
+                    class="value"
23
+                    placeholder="结束日期"
24
+                    :disabled="true"
25
+                    v-model="filter.endDate"
26
+            /></picker>
27
+        </div>
28
+        <div class="card" v-for="(item, index) of listData" :key="index">
29
+            <h1 class="tit">{{ item.orderTime | dateFormat }}</h1>
30
+            <ul class="order-list">
31
+                <li
32
+                    @click="
33
+                        jump({
34
+                            path: '/pages/youxuan/order/detail',
35
+                            query: { id: item.id },
36
+                        })
37
+                    "
38
+                >
39
+                    <div class="info">
40
+                        <div class="num">订单号:{{ item.orderNo }}</div>
41
+                        <div class="status">
42
+                            {{ item.status | orderStatus }}
43
+                        </div>
44
+                    </div>
45
+                    <div class="con">
46
+                        <my-image class="img" :src="item.productImage"></my-image>
47
+                        <div class="main">
48
+                            <div class="line">
49
+                                <div class="name">{{ item.productName }}</div>
50
+                                <div class="money">
51
+                                    合计:<span class="red-text"
52
+                                        >¥{{ item.amount / 100 }}</span
53
+                                    >
54
+                                </div>
55
+                            </div>
56
+                            <!-- <div class="line">
57
+                                <div class="time">
58
+                                    {{ item.orderTime | dateFormat("hh:mm") }}
59
+                                </div>
60
+                                <div class="money">
61
+                                    预估佣金:¥{{
62
+                                        item.estimateComission / 100
63
+                                    }}
64
+                                </div>
65
+                            </div> -->
66
+                        </div>
67
+                    </div>
68
+                </li>
69
+            </ul>
70
+        </div>
71
+        <div class="more-text" v-if="dataEnd">- 没有更多数据了 -</div>
72
+    </div>
73
+</template>
74
+
75
+<script>
76
+import MyImage from "../../../components/image/index";
77
+let statusEnum = {
78
+    2: "待支付",
79
+    3: "待发货",
80
+    4: "待收货",
81
+    6: "已取消",
82
+    7: "售后中",
83
+    8: "已删除",
84
+    9: "已完成",
85
+    10: "已评价",
86
+    11: "已售后",
87
+    12: "已退款",
88
+    20: "待接单",
89
+    21: "拣货中",
90
+    22: "拣货完成",
91
+    23: "待配送",
92
+    24: "配送中",
93
+    25: "已送达",
94
+    26: "待提货",
95
+    27: "已提货",
96
+    31: "订单已推单",
97
+    32: "订单已被骑手接单",
98
+    33: "骑手已到店",
99
+    34: "骑手已取餐",
100
+    35: "订单完成",
101
+    36: "订单失败",
102
+};
103
+export default {
104
+    name: "",
105
+    components: { MyImage },
106
+    filters: {
107
+        orderStatus(v) {
108
+            return statusEnum[v] || "";
109
+        },
110
+    },
111
+    // 数据
112
+    data() {
113
+        return {
114
+            filter: {
115
+                startDate: "",
116
+                endDate: "",
117
+            },
118
+            pageIndex: 1,
119
+            dataEnd: false,
120
+            listData: [],
121
+            endDate: "",
122
+        };
123
+    },
124
+    onLoad() {
125
+        this.getList();
126
+        this.endDate = this.fn.dateFormat2(new Date());
127
+    },
128
+
129
+    onShow() {},
130
+    onPullDownRefresh() {
131
+        this.getList(true);
132
+    },
133
+    onReachBottom() {
134
+        this.getMoreList();
135
+    },
136
+
137
+    // 函数
138
+    methods: {
139
+        getList(isPull) {
140
+            uni.showLoading({
141
+                title: "加载中...",
142
+            });
143
+            this.pageIndex = 1;
144
+            this.dataEnd = false;
145
+            let sendData = {
146
+                pageIndex: this.pageIndex++,
147
+            };
148
+            if (this.filter.startDate) {
149
+                sendData.startTime = this.filter.startDate;
150
+            }
151
+            if (this.filter.endDate) {
152
+                sendData.endTime = this.filter.endDate;
153
+            }
154
+            this.api.get("/Supplier/GetOrderList", sendData).then((res) => {
155
+                if (isPull) {
156
+                    uni.stopPullDownRefresh();
157
+                }
158
+                uni.hideLoading();
159
+                this.listData = res.data.data;
160
+                console.log(this.listData);
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/GetOrderList", sendData).then((res) => {
180
+                uni.hideLoading();
181
+                this.listData = [...this.listData, ...res.data.data];
182
+                if (!res.data.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
+.card {
204
+    margin: px(40) px(40);
205
+    border: 1px solid #e9e9e9;
206
+    background-color: #fff;
207
+    .tit {
208
+        font-size: px(44);
209
+        font-weight: bold;
210
+        padding: px(30);
211
+        display: flex;
212
+        align-items: center;
213
+        justify-content: space-between;
214
+        background-color: #f1f1f1;
215
+    }
216
+    .more {
217
+        color: #409eff;
218
+        font-size: px(40);
219
+        display: flex;
220
+        align-items: center;
221
+        font-weight: normal;
222
+        .arrow {
223
+            width: px(30);
224
+            height: px(30);
225
+            transform: rotate(180deg);
226
+            /deep/ img {
227
+                width: px(30);
228
+                height: px(30);
229
+            }
230
+        }
231
+    }
232
+}
233
+.filter {
234
+    display: flex;
235
+    align-items: center;
236
+    padding: px(40);
237
+    font-size: px(44);
238
+    background-color: #fff;
239
+    .row {
240
+        padding: 0 px(20);
241
+        flex-shrink: 0;
242
+    }
243
+    .key {
244
+        flex-shrink: 0;
245
+    }
246
+    .value {
247
+        border: 1px solid #f1f1f1;
248
+        height: px(80);
249
+        width: px(200);
250
+        padding: 0 px(10);
251
+        width: 90%;
252
+    }
253
+}
254
+.order-list {
255
+    padding: px(30);
256
+    li {
257
+        padding: px(30) 0;
258
+        & ~ li {
259
+            border-top: 1px solid #e9e9e9;
260
+        }
261
+    }
262
+    .info {
263
+        display: flex;
264
+        justify-content: space-between;
265
+        align-items: center;
266
+        .num {
267
+            color: #666;
268
+        }
269
+        .status {
270
+            color: #409eff;
271
+        }
272
+    }
273
+
274
+    .con {
275
+        display: flex;
276
+        align-items: stretch;
277
+        justify-content: space-between;
278
+        margin-top: px(30);
279
+        .img {
280
+            width: px(200);
281
+            height: px(200);
282
+            flex-shrink: 0;
283
+            margin-right: px(20);
284
+            background-color: #f9f9f9;
285
+            /deep/ img {
286
+                width: px(200);
287
+                height: px(200);
288
+            }
289
+        }
290
+    }
291
+    .main {
292
+        width: 100%;
293
+        display: flex;
294
+        justify-content: space-between;
295
+        flex-direction: column;
296
+        padding: px(25) 0;
297
+        .money {
298
+            flex-shrink: 0;
299
+        }
300
+        .name {
301
+            @include omits(2);
302
+        }
303
+        .line {
304
+            display: flex;
305
+            justify-content: space-between;
306
+            & ~ .line {
307
+                margin-top: px(10);
308
+            }
309
+        }
310
+        .red-text {
311
+            color: #ff4b26;
312
+        }
313
+        .time,
314
+        .money {
315
+            font-size: px(40);
316
+            color: #666;
317
+        }
318
+    }
319
+}
320
+
321
+.more-text {
322
+    display: flex;
323
+    justify-content: center;
324
+    padding-bottom: px(60);
325
+    font-size: px(34);
326
+    color: #999;
327
+}
328
+</style>