cr преди 4 години
родител
ревизия
89179a153d

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL =http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 3 - 0
releaselog.md

@@ -1,4 +1,7 @@
1 1
 
2
+# 0.3.7 (20.12.23 18:00) 
3
+### 增加会员码
4
+
2 5
 # 0.3.7 (20.12.21 18:00) 
3 6
 ### 增加导航权限
4 7
 

+ 64 - 9
src/pages/index/index.vue

@@ -11,9 +11,15 @@
11 11
                     </div>
12 12
                 </div>
13 13
             </div>
14
-            <div class="scan" @click="scan">
14
+            <div class="scan">
15 15
                 <my-image
16 16
                     class="scan-img"
17
+                    @click="inputCode"
18
+                    src="/static/icon/edit.png"
19
+                ></my-image>
20
+                <my-image
21
+                    class="scan-img"
22
+                    @click="scan"
17 23
                     src="/static/icon/scan.png"
18 24
                 ></my-image>
19 25
             </div>
@@ -445,16 +451,29 @@
445 451
             当前小程序需要绑定手机号使用,
446 452
             <span class="bind" @click="goBind">去绑定</span>
447 453
         </div>
454
+
455
+        <uni-popup ref="popup" type="dialog">
456
+            <uni-popup-dialog
457
+                mode="input"
458
+                :title="'会员码'"
459
+                :content="false"
460
+                :inputType="'text'"
461
+                placeholder="请输入会员码"
462
+                @confirm="popupConfirm"
463
+            ></uni-popup-dialog>
464
+        </uni-popup>
448 465
     </div>
449 466
 </template>
450 467
 
451 468
 <script>
452 469
 import MyImage from "../../components/image/index";
453 470
 import fn from "../../common/js/function";
471
+import uniPopup from "../../components/uni-popup/uni-popup";
472
+import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
454 473
 
455 474
 export default {
456 475
     name: "",
457
-    components: { MyImage },
476
+    components: { MyImage, uniPopup, uniPopupDialog },
458 477
     // 数据
459 478
     data() {
460 479
         return {
@@ -1015,13 +1034,17 @@ export default {
1015 1034
                 scanType: "qrCode",
1016 1035
                 success(res) {
1017 1036
                     console.log("扫码", res);
1018
-                    if (res.scanType === "QR_CODE" && res.result && res.result.length === 9) {
1019
-                       self.router.push({
1020
-                           path:'/pages/index/index-scan',
1021
-                           query:{
1022
-                               vipcode:res.result
1023
-                           }
1024
-                       })
1037
+                    if (
1038
+                        res.scanType === "QR_CODE" &&
1039
+                        res.result &&
1040
+                        res.result.length === 9
1041
+                    ) {
1042
+                        self.router.push({
1043
+                            path: "/pages/index/index-scan",
1044
+                            query: {
1045
+                                vipcode: res.result,
1046
+                            },
1047
+                        });
1025 1048
                     } else {
1026 1049
                         self.fn.showToast("扫码失败,不是有效会员码,请重新扫描");
1027 1050
                     }
@@ -1032,6 +1055,30 @@ export default {
1032 1055
                 },
1033 1056
             });
1034 1057
         },
1058
+
1059
+        // 输入会员码
1060
+        inputCode() {
1061
+            this.$refs.popup.open({
1062
+                type: "dialog",
1063
+            });
1064
+        },
1065
+
1066
+        popupConfirm(done, value) {
1067
+            let self = this;
1068
+            if (!value) {
1069
+                return this.fn.showToast("请输入会员码");
1070
+            }
1071
+            if (!/^\d{9}$/.test(value)) {
1072
+                return this.fn.showToast("会员码不正确");
1073
+            }
1074
+            done();
1075
+            self.router.push({
1076
+                path: "/pages/index/index-scan",
1077
+                query: {
1078
+                    vipcode: value,
1079
+                },
1080
+            });
1081
+        },
1035 1082
     },
1036 1083
 
1037 1084
     // 数据计算
@@ -1087,9 +1134,17 @@ page {
1087 1134
         display: flex;
1088 1135
         align-items: center;
1089 1136
     }
1137
+    .scan {
1138
+        display: flex;
1139
+        align-items: center;
1140
+        justify-content: space-between;
1141
+    }
1090 1142
     .scan-img {
1091 1143
         width: px(70);
1092 1144
         height: px(70);
1145
+        & ~ .scan-img {
1146
+            margin-left: px(30);
1147
+        }
1093 1148
         /deep/ img {
1094 1149
             width: px(70);
1095 1150
             height: px(70);

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

@@ -47,7 +47,7 @@
47 47
 
48 48
         <button class="btn" @click="layout">退出登录</button>
49 49
 
50
-        <div class="ver">0.3.7</div>
50
+        <div class="ver">0.3.8</div>
51 51
     </div>
52 52
 </template>
53 53
 
@@ -180,6 +180,7 @@ export default {
180 180
             this.$store.commit("user/logout", null);
181 181
             this.router.replace({
182 182
                 path: "/pages/index/login",
183
+                isReLaunch: true,
183 184
             });
184 185
         },
185 186
     },

+ 1 - 0
src/pages/manage/mina/query.vue

@@ -126,6 +126,7 @@ export default {
126 126
             this.$store.commit("user/logout", null);
127 127
             this.router.replace({
128 128
                 path: "/pages/index/login",
129
+                isReLaunch:true
129 130
             });
130 131
         },
131 132
     },

+ 1 - 0
src/pages/manage/mina/register.vue

@@ -122,6 +122,7 @@ export default {
122 122
             this.$store.commit("user/logout", null);
123 123
             this.router.replace({
124 124
                 path: "/pages/index/login",
125
+                isReLaunch:true
125 126
             });
126 127
         },
127 128
     },

+ 123 - 6
src/pages/manage/user/info.vue

@@ -4,25 +4,89 @@
4 4
             <section class="form-item">
5 5
                 <div class="label">
6 6
                     <span class="required hide">*</span>
7
-                    账号
7
+                    昵称
8 8
                 </div>
9 9
                 <div class="box">
10 10
                     <div class="con">
11
-                        <input type="password" v-model="form.oldPassword" :disabled="true"/>
11
+                        <input
12
+                            type="text"
13
+                            v-model="user.userName"
14
+                            :disabled="true"
15
+                        />
16
+                    </div>
17
+                </div>
18
+                <div class="tool">
19
+                    <span class="link" @click="setName">修改</span>
20
+                </div>
21
+            </section>
22
+            <section class="form-item">
23
+                <div class="label">
24
+                    <span class="required hide">*</span>
25
+                    店铺:
26
+                </div>
27
+                <div class="box">
28
+                    <div class="con">
29
+                        <input
30
+                            type="text"
31
+                            v-model="user.storeName"
32
+                            :disabled="true"
33
+                        />
34
+                    </div>
35
+                </div>
36
+            </section>
37
+            <section class="form-item">
38
+                <div class="label">
39
+                    <span class="required hide">*</span>
40
+                    角色:
41
+                </div>
42
+                <div class="box">
43
+                    <div class="con">
44
+                        <input
45
+                            type="text"
46
+                            :value="user.roleId | roleFilter"
47
+                            :disabled="true"
48
+                        />
12 49
                     </div>
13 50
                 </div>
14 51
             </section>
15 52
         </div>
53
+
54
+        <uni-popup ref="popup" type="dialog">
55
+            <uni-popup-dialog
56
+                mode="input"
57
+                :title="'新昵称'"
58
+                :content="false"
59
+                :inputType="'text'"
60
+                placeholder="请输入新昵称"
61
+                @confirm="popupConfirm"
62
+            ></uni-popup-dialog>
63
+        </uni-popup>
16 64
     </div>
17 65
 </template>
18 66
 
19 67
 <script>
20 68
 import MyImage from "../../../components/image/index";
21 69
 import EasyUpload from "../../../components/easy-upload/easy-upload-media";
22
-
70
+import uniPopup from "../../../components/uni-popup/uni-popup";
71
+import uniPopupDialog from "../../../components/uni-popup/uni-popup-dialog";
72
+let roleObj = {
73
+    "75b71b24-25de-40ac-a866-c8f5555b8b92": "超级管理员",
74
+    "26b2d3be-be4a-489f-839b-d50fdac0f2f4": "客服人员",
75
+    "bfbde5df-9922-410f-bab2-158402d3d98d": "财务工作人员",
76
+    "f68b8e48-c681-467b-af76-e1612c26d62e": "主播人员",
77
+    "c67011ac-f79c-4d0b-a7c3-24e5b8319056": "运营人员",
78
+    "50c41c5d-b54c-43ed-b587-10dcb60e72e5": "店铺管理员",
79
+    "731d7667-d68c-4b15-9080-4a96775a5606": "多门店管理员",
80
+};
23 81
 export default {
24 82
     name: "",
25
-    components: { MyImage, EasyUpload },
83
+    components: { MyImage, EasyUpload,uniPopup, uniPopupDialog },
84
+    filters: {
85
+        roleFilter(v) {
86
+            let name = roleObj[v];
87
+            return name || "";
88
+        },
89
+    },
26 90
     // 数据
27 91
     data() {
28 92
         return {
@@ -31,13 +95,63 @@ export default {
31 95
         };
32 96
     },
33 97
 
34
-    onLoad(opts) {},
98
+    onLoad(opts) {
99
+        console.log(this.user);
100
+        this.getUser();
101
+    },
35 102
 
36 103
     onShow() {},
37 104
 
38 105
     // 函数
39 106
     methods: {
40
-    
107
+        setName() {
108
+            this.$refs.popup.open({
109
+                type: "dialog",
110
+            });
111
+        },
112
+
113
+        popupConfirm(done, value) {
114
+            if (!value) {
115
+                return this.fn.showToast("请输入新昵称");
116
+            }
117
+            uni.showLoading({
118
+                title: "提交中...",
119
+                mask: true,
120
+            });
121
+            this.api
122
+                .post(
123
+                    "/User/SetNickName",
124
+                    {
125
+                        nickName: value,
126
+                        query: true,
127
+                    },
128
+                    { pass: true }
129
+                )
130
+                .then((res) => {
131
+                    this.submitLoading = false;
132
+                    uni.hideLoading();
133
+                    if (res.success) {
134
+                        this.fn.showToast("修改成功");
135
+                        let user = { ...this.user };
136
+                        user.userName = value;
137
+                        this.$store.commit("user/update", {
138
+                            user,
139
+                        });
140
+                    } else {
141
+                        this.fn.showModal({
142
+                            content: res.message,
143
+                            showCancel: false,
144
+                            title: "修改失败",
145
+                        });
146
+                    }
147
+                    done();
148
+                });
149
+        },
150
+        getUser() {
151
+            this.api.get("/Login/GetUserInfo").then((res) => {
152
+                console.log(res);
153
+            });
154
+        },
41 155
     },
42 156
 
43 157
     // 数据计算
@@ -270,4 +384,7 @@ export default {
270 384
     font-size: px(44);
271 385
     vertical-align: bottom;
272 386
 }
387
+.link {
388
+    color: #409eff;
389
+}
273 390
 </style>

+ 1 - 0
src/pages/manage/user/password.vue

@@ -115,6 +115,7 @@ export default {
115 115
             this.$store.commit("user/logout", null);
116 116
             this.router.replace({
117 117
                 path: "/pages/index/login",
118
+                isReLaunch:true
118 119
             });
119 120
         },
120 121
     },

+ 15 - 14
src/pages/manage/user/phone.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="form-card">
4
-            <section class="form-item">
4
+            <!-- <section class="form-item">
5 5
                 <div class="label">
6 6
                     <span class="required">*</span>
7 7
                     旧手机号:
@@ -30,7 +30,7 @@
30 30
                         >{{ codeStr }}</span
31 31
                     >
32 32
                 </div>
33
-            </section>
33
+            </section> -->
34 34
             <section class="form-item">
35 35
                 <div class="label">
36 36
                     <span class="required">*</span>
@@ -58,8 +58,8 @@ export default {
58 58
     data() {
59 59
         return {
60 60
             form: {
61
-                phone: "",
62
-                code: "",
61
+                // phone: "",
62
+                // code: "",
63 63
                 newPhone: "",
64 64
             },
65 65
             submitLoading: false,
@@ -110,12 +110,12 @@ export default {
110 110
             if (this.submitLoading) {
111 111
                 return;
112 112
             }
113
-            if (!this.form.phone) {
114
-                return this.fn.showToast("请输入旧手机号");
115
-            }
116
-            if (!this.form.code) {
117
-                return this.fn.showToast("请输入验证码");
118
-            }
113
+            // if (!this.form.phone) {
114
+            //     return this.fn.showToast("请输入旧手机号");
115
+            // }
116
+            // if (!this.form.code) {
117
+            //     return this.fn.showToast("请输入验证码");
118
+            // }
119 119
             if (!this.form.newPhone) {
120 120
                 return this.fn.showToast("请输入新手机号");
121 121
             }
@@ -126,19 +126,19 @@ export default {
126 126
                 title: "提交中...",
127 127
                 mask: true,
128 128
             });
129
-            let data = { ...this.form, userId: this.user.id, query: true };
130
-            delete data.newPassword2;
129
+            let data = { mobile: this.form.newPhone, query: true };
130
+            // delete data.newPassword2;
131 131
             this.submitLoading = true;
132 132
 
133 133
             this.api
134
-                .post("/Login/ChangePwd", data, { pass: true })
134
+                .post("/User/SetMobile", data, { pass: true })
135 135
                 .then((res) => {
136 136
                     this.submitLoading = false;
137 137
                     uni.hideLoading();
138 138
                     if (res.success) {
139 139
                         this.fn.showToast("修改成功");
140 140
                         setTimeout(() => {
141
-                            this.layout();
141
+                            this.router.back();
142 142
                         }, 500);
143 143
                     } else {
144 144
                         this.fn.showModal({
@@ -154,6 +154,7 @@ export default {
154 154
             this.$store.commit("user/logout", null);
155 155
             this.router.replace({
156 156
                 path: "/pages/index/login",
157
+                isReLaunch:true
157 158
             });
158 159
         },
159 160
     },