Browse Source

个人资料设置

cr 4 years ago
parent
commit
06ff5a575e

+ 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 = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
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 = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
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 = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL =http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 30 - 0
src/pages.json

@@ -33,6 +33,12 @@
33 33
                 "navigationBarTitleText": "配送助手"
34 34
             }
35 35
         },
36
+        {
37
+            "path": "pages/index/index-scan",
38
+            "style": {
39
+                "navigationBarTitleText": "会员码订单列表"
40
+            }
41
+        },
36 42
         {
37 43
             "path": "pages/index/login",
38 44
             "style": {
@@ -237,6 +243,30 @@
237 243
             "style": {
238 244
                 "navigationBarTitleText": "商品海报"
239 245
             }
246
+        },
247
+        {
248
+            "path": "pages/manage/user/index",
249
+            "style": {
250
+                "navigationBarTitleText": "账号设置"
251
+            }
252
+        },
253
+        {
254
+            "path": "pages/manage/user/password",
255
+            "style": {
256
+                "navigationBarTitleText": "修改密码"
257
+            }
258
+        },
259
+        {
260
+            "path": "pages/manage/user/info",
261
+            "style": {
262
+                "navigationBarTitleText": "账号信息"
263
+            }
264
+        },
265
+        {
266
+            "path": "pages/manage/user/phone",
267
+            "style": {
268
+                "navigationBarTitleText": "修改手机号"
269
+            }
240 270
         }
241 271
     ]
242 272
 }

File diff suppressed because it is too large
+ 1607 - 0
src/pages/index/index-scan.vue


+ 52 - 6
src/pages/index/index.vue

@@ -1,14 +1,22 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div class="page__top">
4
-            <div class="name">当前门店:</div>
5
-            <div class="shop" v-if="!hideShop" @click="goShopSelect">
6
-                <div class="shop__name">
7
-                    <!-- 最多6字 -->
8
-                    {{ curShopName }}
9
-                    <i class="iconfont iconyoujiantou shop__arrow"></i>
4
+            <div class="shop-main">
5
+                <div class="name">当前门店:</div>
6
+                <div class="shop" v-if="!hideShop" @click="goShopSelect">
7
+                    <div class="shop__name">
8
+                        <!-- 最多6字 -->
9
+                        {{ curShopName }}
10
+                        <i class="iconfont iconyoujiantou shop__arrow"></i>
11
+                    </div>
10 12
                 </div>
11 13
             </div>
14
+            <div class="scan" @click="scan">
15
+                <my-image
16
+                    class="scan-img"
17
+                    src="/static/icon/scan.png"
18
+                ></my-image>
19
+            </div>
12 20
         </div>
13 21
         <ul class="tab">
14 22
             <li
@@ -682,6 +690,7 @@ export default {
682 690
 
683 691
             self.api
684 692
                 .get("/Order/GetList", {
693
+                    storeId: this.curShopId || "",
685 694
                     status: self.list[self.tab].status,
686 695
                     pageIndex: self.list[self.tab].page,
687 696
                     pageSize: 20,
@@ -998,6 +1007,31 @@ export default {
998 1007
             val.showAllAfterSale = !val.showAllAfterSale;
999 1008
             this.list = [...this.list];
1000 1009
         },
1010
+
1011
+        // 扫会员码
1012
+        scan() {
1013
+            let self = this;
1014
+            uni.scanCode({
1015
+                scanType: "qrCode",
1016
+                success(res) {
1017
+                    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
+                       })
1025
+                    } else {
1026
+                        self.fn.showToast("扫码失败,不是有效会员码,请重新扫描");
1027
+                    }
1028
+                },
1029
+                fail(res) {
1030
+                    self.fn.showToast("扫码失败");
1031
+                    console.log("扫码失败:", res);
1032
+                },
1033
+            });
1034
+        },
1001 1035
     },
1002 1036
 
1003 1037
     // 数据计算
@@ -1049,6 +1083,18 @@ page {
1049 1083
         flex-shrink: 0;
1050 1084
         margin-right: px(20);
1051 1085
     }
1086
+    .shop-main {
1087
+        display: flex;
1088
+        align-items: center;
1089
+    }
1090
+    .scan-img {
1091
+        width: px(70);
1092
+        height: px(70);
1093
+        /deep/ img {
1094
+            width: px(70);
1095
+            height: px(70);
1096
+        }
1097
+    }
1052 1098
 }
1053 1099
 
1054 1100
 .shop {

+ 1 - 1
src/pages/manage/add-good-form.vue

@@ -686,7 +686,7 @@ export default {
686 686
         // 条码扫描
687 687
         scan() {
688 688
             let self = this;
689
-            wx.scanCode({
689
+            uni.scanCode({
690 690
                 scanType: "barCode",
691 691
                 success(res) {
692 692
                     console.log("扫码", res);

+ 3 - 38
src/pages/manage/index.vue

@@ -35,48 +35,13 @@
35 35
                     <my-image class="img" :src="item.icon"></my-image>
36 36
                     <span class="text">{{ item.name }}</span>
37 37
                 </li>
38
-                <!-- <li class="item" @click="jump('/pages/manage/good-list')">
38
+                <li class="item" @click="jump('/pages/manage/user/index')">
39 39
                     <my-image
40 40
                         class="img"
41
-                        src="/static/icon/edit.png"
41
+                        src="/static/icon/user.png"
42 42
                     ></my-image>
43
-                    <span class="text">编辑商品</span>
43
+                    <span class="text">账号设置</span>
44 44
                 </li>
45
-                <li class="item" @click="jump('/pages/manage/classify')">
46
-                    <my-image
47
-                        class="img"
48
-                        src="/static/icon/classify.png"
49
-                    ></my-image>
50
-                    <span class="text">分类管理</span>
51
-                </li>
52
-                <li class="item" @click="jump('/pages/manage/statistics/nav')">
53
-                    <my-image
54
-                        class="img"
55
-                        src="/static/icon/statistics.png"
56
-                    ></my-image>
57
-                    <span class="text">数据统计</span>
58
-                </li>
59
-                <li class="item" @click="jump('/pages/manage/coupon/list')">
60
-                    <my-image
61
-                        class="img"
62
-                        src="/static/icon/coupon.png"
63
-                    ></my-image>
64
-                    <span class="text">优惠券</span>
65
-                </li>
66
-                <li class="item" @click="jump('/pages/manage/mina/index')">
67
-                    <my-image
68
-                        class="img"
69
-                        src="/static/icon/mina.png"
70
-                    ></my-image>
71
-                    <span class="text">小程序</span>
72
-                </li>
73
-                <li class="item" @click="jump('/pages/manage/poster/index')">
74
-                    <my-image
75
-                        class="img"
76
-                        src="/static/icon/share.png"
77
-                    ></my-image>
78
-                    <span class="text">分享海报</span>
79
-                </li> -->
80 45
             </ul>
81 46
         </div>
82 47
 

+ 101 - 0
src/pages/manage/user/index.vue

@@ -0,0 +1,101 @@
1
+<template>
2
+    <div class="page">
3
+        <ul class="list">
4
+            <!-- <li class="item" v-for="item of menuList" :key="item.id" @click="jump(item.url)">
5
+                <div class="name">{{item.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/manage/user/info')">
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/manage/user/password')">
19
+                <div class="name">修改密码</div>
20
+                <my-image
21
+                    class="arrow"
22
+                    src="/static/common/arrows_left.png"
23
+                ></my-image>
24
+            </li>
25
+            <li class="item" @click="jump('/pages/manage/user/phone')">
26
+                <div class="name">修改手机号</div>
27
+                <my-image
28
+                    class="arrow"
29
+                    src="/static/common/arrows_left.png"
30
+                ></my-image>
31
+            </li>
32
+        </ul>
33
+    </div>
34
+</template>
35
+
36
+<script>
37
+import MyImage from "../../../components/image/index";
38
+export default {
39
+    name: "",
40
+    components: { MyImage },
41
+
42
+    // 数据
43
+    data() {
44
+        return {
45
+            curShop: {},
46
+            menuList:[]
47
+        };
48
+    },
49
+
50
+    onLoad() {
51
+        let appMenuList = this.$store.state.user.menuList;
52
+        for(let item of appMenuList){
53
+            if(item.id === 'mobile_statistic'){
54
+                this.menuList = item.children;
55
+            }
56
+        }
57
+    },
58
+    async onShow() {},
59
+    // 函数
60
+    methods: {},
61
+
62
+    // 数据计算
63
+    computed: {
64
+        user() {
65
+            return this.$store.state.user.user;
66
+        },
67
+    },
68
+
69
+    // 数据监听
70
+    watch: {},
71
+};
72
+</script>
73
+
74
+<style lang="scss" scoped>
75
+.page {
76
+    min-height: 100vh;
77
+    background-color: #fff;
78
+}
79
+.list {
80
+    border-top: 1px solid #f1f1f1;
81
+    .item {
82
+        height: px(120);
83
+        padding: 0 px(35);
84
+        font-size: px(44);
85
+        display: flex;
86
+        justify-content: space-between;
87
+        align-items: center;
88
+        border-bottom: 1px solid #f1f1f1;
89
+    }
90
+    .arrow {
91
+        width: px(40);
92
+        height: px(40);
93
+        flex-shrink: 0;
94
+        transform: rotate(180deg);
95
+        /deep/ img {
96
+            width: px(40);
97
+            height: px(40);
98
+        }
99
+    }
100
+}
101
+</style>

+ 273 - 0
src/pages/manage/user/info.vue

@@ -0,0 +1,273 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item">
5
+                <div class="label">
6
+                    <span class="required hide">*</span>
7
+                    账号:
8
+                </div>
9
+                <div class="box">
10
+                    <div class="con">
11
+                        <input type="password" v-model="form.oldPassword" :disabled="true"/>
12
+                    </div>
13
+                </div>
14
+            </section>
15
+        </div>
16
+    </div>
17
+</template>
18
+
19
+<script>
20
+import MyImage from "../../../components/image/index";
21
+import EasyUpload from "../../../components/easy-upload/easy-upload-media";
22
+
23
+export default {
24
+    name: "",
25
+    components: { MyImage, EasyUpload },
26
+    // 数据
27
+    data() {
28
+        return {
29
+            data: {},
30
+            submitLoading: false,
31
+        };
32
+    },
33
+
34
+    onLoad(opts) {},
35
+
36
+    onShow() {},
37
+
38
+    // 函数
39
+    methods: {
40
+    
41
+    },
42
+
43
+    // 数据计算
44
+    computed: {
45
+        user() {
46
+            return this.$store.state.user.user;
47
+        },
48
+    },
49
+
50
+    // 数据监听
51
+    watch: {},
52
+};
53
+</script>
54
+
55
+
56
+<style lang="scss" scoped>
57
+.page {
58
+    padding-bottom: px(120);
59
+    min-height: 100vh;
60
+    background-color: #fff;
61
+}
62
+.page--iphoneX {
63
+    padding-bottom: px(150);
64
+    .btn {
65
+        padding-bottom: px(30);
66
+        background-color: rgb(0, 188, 38);
67
+    }
68
+}
69
+.form-card {
70
+    background-color: #fff;
71
+    padding: 0 px(30);
72
+    & ~ .form-card {
73
+        margin-top: px(25);
74
+    }
75
+    .head {
76
+        display: flex;
77
+        align-items: center;
78
+        justify-content: space-between;
79
+        height: px(140);
80
+        background-color: #fbfbfb;
81
+        border-bottom: 1px solid #f1f1f1;
82
+        border-top: 1px solid #f1f1f1;
83
+        font-size: px(44);
84
+    }
85
+}
86
+.form-item {
87
+    display: flex;
88
+    min-height: px(140);
89
+    padding: px(30) 0;
90
+    box-sizing: border-box;
91
+    align-items: center;
92
+    font-size: px(44);
93
+    &.dis-item {
94
+        color: #999;
95
+        background: #f9f9f9;
96
+    }
97
+    & ~ .form-item {
98
+        border-top: 1px solid #f1f1f1;
99
+    }
100
+    .label {
101
+        width: px(250);
102
+        flex-shrink: 0;
103
+        color: #999;
104
+        margin-right: px(10);
105
+    }
106
+    .box {
107
+        width: 100%;
108
+        position: relative;
109
+        input {
110
+            width: 100%;
111
+        }
112
+    }
113
+    .tool {
114
+        flex-shrink: 0;
115
+        color: #999;
116
+        margin-left: px(10);
117
+    }
118
+    .tip {
119
+        font-size: px(36);
120
+        color: #e6a23c;
121
+        margin-top: px(5);
122
+    }
123
+    textarea,
124
+    input {
125
+        max-width: 100%;
126
+        width: 100%;
127
+    }
128
+}
129
+.list {
130
+    // min-height: 100vh;
131
+    // background-color: #fff;
132
+    // border-bottom: 1px solid #f1f1f1;
133
+    li {
134
+        padding: px(0) px(35);
135
+        height: px(140);
136
+        line-height: px(140);
137
+        font-size: px(44);
138
+        border-top: 1px solid #f1f1f1;
139
+        display: flex;
140
+        justify-content: space-between;
141
+        align-items: center;
142
+    }
143
+    .tools {
144
+        display: flex;
145
+        align-items: center;
146
+        flex-shrink: 0;
147
+        span {
148
+            display: inline-block;
149
+            border: 1px solid #f1f1f1;
150
+            font-size: px(36);
151
+            height: px(80);
152
+            width: px(120);
153
+            display: flex;
154
+            justify-content: center;
155
+            align-items: center;
156
+            & ~ span {
157
+                margin-left: px(30);
158
+            }
159
+        }
160
+        .remove {
161
+            color: #f00;
162
+        }
163
+    }
164
+}
165
+.btn {
166
+    position: fixed;
167
+    bottom: 0;
168
+    left: 0;
169
+    right: 0;
170
+    width: 100%;
171
+    height: px(120);
172
+    background-color: rgb(0, 188, 38);
173
+    color: #fff;
174
+    display: flex;
175
+    align-items: center;
176
+    justify-content: center;
177
+    z-index: 100;
178
+}
179
+.add-btn {
180
+    height: px(120);
181
+    color: #333;
182
+    display: flex;
183
+    align-items: center;
184
+    justify-content: center;
185
+    margin: px(50) px(35) 0;
186
+    border: 1px solid #ccc;
187
+    border-radius: px(10);
188
+}
189
+.code-tool {
190
+    display: flex;
191
+    justify-content: flex-start;
192
+    align-items: center;
193
+    .scan-img {
194
+        flex-shrink: 0;
195
+        width: px(80);
196
+        height: px(80);
197
+        /deep/ img {
198
+            width: px(80);
199
+            height: px(80);
200
+        }
201
+    }
202
+    .generate {
203
+        color: #0097d1;
204
+        margin-right: px(30);
205
+        flex-shrink: 0;
206
+    }
207
+}
208
+.required {
209
+    color: #f00;
210
+    font-size: px(44);
211
+    &.hide {
212
+        visibility: hidden;
213
+    }
214
+}
215
+.inp-dis {
216
+    color: #999;
217
+}
218
+
219
+.img-card {
220
+    padding-top: px(30);
221
+    padding-bottom: px(30);
222
+}
223
+.form-img-item {
224
+    .tit {
225
+        padding: px(30);
226
+        font-size: px(44);
227
+    }
228
+}
229
+
230
+.spec-list {
231
+    width: 100%;
232
+    display: flex;
233
+    justify-content: space-between;
234
+    align-items: center;
235
+    li {
236
+        width: 33.333333%;
237
+        font-size: px(40);
238
+        height: px(100);
239
+        border: 1px solid #f1f1f1;
240
+        display: flex;
241
+        align-items: center;
242
+        justify-content: center;
243
+        color: #999;
244
+        & ~ li {
245
+            // border-left: none;
246
+        }
247
+        &.on {
248
+            color: rgb(0, 188, 38);
249
+            border-color: rgb(0, 188, 38);
250
+        }
251
+    }
252
+}
253
+.mo-date {
254
+    margin-top: px(20);
255
+    border-bottom: 1px solid #f1f1f1;
256
+    background: #fbfbfb;
257
+    font-size: px(40);
258
+    padding: px(10);
259
+}
260
+.n-date-box {
261
+    margin-top: px(20);
262
+    font-size: px(40);
263
+}
264
+.n-date {
265
+    border-bottom: 1px solid #f1f1f1;
266
+    background: #fbfbfb;
267
+    padding: 0 px(20);
268
+    display: inline-block;
269
+    width: px(200);
270
+    font-size: px(44);
271
+    vertical-align: bottom;
272
+}
273
+</style>

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

@@ -0,0 +1,351 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item">
5
+                <div class="label">
6
+                    <span class="required">*</span>
7
+                    旧密码:
8
+                </div>
9
+                <div class="box">
10
+                    <div class="con">
11
+                        <input type="password" v-model="form.oldPassword" />
12
+                    </div>
13
+                </div>
14
+            </section>
15
+            <section class="form-item">
16
+                <div class="label">
17
+                    <span class="required">*</span>
18
+                    新密码:
19
+                </div>
20
+                <div class="box">
21
+                    <div class="con">
22
+                        <input type="password" v-model="form.newPassword" />
23
+                    </div>
24
+                </div>
25
+            </section>
26
+            <section class="form-item">
27
+                <div class="label">
28
+                    <span class="required">*</span>
29
+                    确认密码:
30
+                </div>
31
+                <div class="box">
32
+                    <div class="con">
33
+                        <input type="password" v-model="form.newPassword2" />
34
+                    </div>
35
+                </div>
36
+            </section>
37
+        </div>
38
+        <div class="btn" @click="saveOk">保存</div>
39
+    </div>
40
+</template>
41
+
42
+<script>
43
+import MyImage from "../../../components/image/index";
44
+import EasyUpload from "../../../components/easy-upload/easy-upload-media";
45
+
46
+export default {
47
+    name: "",
48
+    components: { MyImage, EasyUpload },
49
+    // 数据
50
+    data() {
51
+        return {
52
+            form: {
53
+                oldPassword: "",
54
+                newPassword: "",
55
+                newPassword2: "",
56
+            },
57
+            submitLoading: false,
58
+        };
59
+    },
60
+
61
+    onLoad(opts) {},
62
+
63
+    onShow() {},
64
+
65
+    // 函数
66
+    methods: {
67
+        saveOk() {
68
+            if (this.submitLoading) {
69
+                return;
70
+            }
71
+            if (!this.form.oldPassword) {
72
+                return this.fn.showToast("请输入旧密码");
73
+            }
74
+            if (!this.form.newPassword) {
75
+                return this.fn.showToast("请输入新密码");
76
+            }
77
+            if (this.form.newPassword.length<6) {
78
+                return this.fn.showToast("密码长度不能小于6位");
79
+            }
80
+            if (!this.form.newPassword2) {
81
+                return this.fn.showToast("请输入确认新密码");
82
+            }
83
+            if (this.form.newPassword !== this.form.newPassword2) {
84
+                return this.fn.showToast("新密码不同");
85
+            }
86
+            uni.showLoading({
87
+                title: "提交中...",
88
+                mask: true,
89
+            });
90
+            let data = { ...this.form, userId: this.user.id,query:true };
91
+            delete data.newPassword2;
92
+            this.submitLoading = true;
93
+
94
+            this.api
95
+                .post("/Login/ChangePwd", data, { pass: true })
96
+                .then((res) => {
97
+                    this.submitLoading = false;
98
+                    uni.hideLoading();
99
+                    if (res.success) {
100
+                        this.fn.showToast("修改成功");
101
+                        setTimeout(() => {
102
+                            this.layout();
103
+                        }, 500);
104
+                    } else {
105
+                        this.fn.showModal({
106
+                            content: res.message,
107
+                            showCancel:false,
108
+                            title:'修改失败'
109
+                        });
110
+                    }
111
+                });
112
+        },
113
+
114
+        layout() {
115
+            this.$store.commit("user/logout", null);
116
+            this.router.replace({
117
+                path: "/pages/index/login",
118
+            });
119
+        },
120
+    },
121
+
122
+    // 数据计算
123
+    computed: {
124
+        user() {
125
+            return this.$store.state.user.user;
126
+        },
127
+    },
128
+
129
+    // 数据监听
130
+    watch: {},
131
+};
132
+</script>
133
+
134
+
135
+<style lang="scss" scoped>
136
+.page {
137
+    padding-bottom: px(120);
138
+    min-height: 100vh;
139
+}
140
+.page--iphoneX {
141
+    padding-bottom: px(150);
142
+    .btn {
143
+        padding-bottom: px(30);
144
+        background-color: rgb(0, 188, 38);
145
+    }
146
+}
147
+.form-card {
148
+    background-color: #fff;
149
+    padding: 0 px(30);
150
+    & ~ .form-card {
151
+        margin-top: px(25);
152
+    }
153
+    .head {
154
+        display: flex;
155
+        align-items: center;
156
+        justify-content: space-between;
157
+        height: px(140);
158
+        background-color: #fbfbfb;
159
+        border-bottom: 1px solid #f1f1f1;
160
+        border-top: 1px solid #f1f1f1;
161
+        font-size: px(44);
162
+    }
163
+}
164
+.form-item {
165
+    display: flex;
166
+    min-height: px(140);
167
+    padding: px(30) 0;
168
+    box-sizing: border-box;
169
+    align-items: center;
170
+    font-size: px(44);
171
+    &.dis-item {
172
+        color: #999;
173
+        background: #f9f9f9;
174
+    }
175
+    & ~ .form-item {
176
+        border-top: 1px solid #f1f1f1;
177
+    }
178
+    .label {
179
+        width: px(250);
180
+        flex-shrink: 0;
181
+        color: #999;
182
+        margin-right: px(10);
183
+    }
184
+    .box {
185
+        width: 100%;
186
+        position: relative;
187
+        input {
188
+            width: 100%;
189
+        }
190
+    }
191
+    .tool {
192
+        flex-shrink: 0;
193
+        color: #999;
194
+        margin-left: px(10);
195
+    }
196
+    .tip {
197
+        font-size: px(36);
198
+        color: #e6a23c;
199
+        margin-top: px(5);
200
+    }
201
+    textarea,
202
+    input {
203
+        max-width: 100%;
204
+        width: 100%;
205
+    }
206
+}
207
+.list {
208
+    // min-height: 100vh;
209
+    // background-color: #fff;
210
+    // border-bottom: 1px solid #f1f1f1;
211
+    li {
212
+        padding: px(0) px(35);
213
+        height: px(140);
214
+        line-height: px(140);
215
+        font-size: px(44);
216
+        border-top: 1px solid #f1f1f1;
217
+        display: flex;
218
+        justify-content: space-between;
219
+        align-items: center;
220
+    }
221
+    .tools {
222
+        display: flex;
223
+        align-items: center;
224
+        flex-shrink: 0;
225
+        span {
226
+            display: inline-block;
227
+            border: 1px solid #f1f1f1;
228
+            font-size: px(36);
229
+            height: px(80);
230
+            width: px(120);
231
+            display: flex;
232
+            justify-content: center;
233
+            align-items: center;
234
+            & ~ span {
235
+                margin-left: px(30);
236
+            }
237
+        }
238
+        .remove {
239
+            color: #f00;
240
+        }
241
+    }
242
+}
243
+.btn {
244
+    position: fixed;
245
+    bottom: 0;
246
+    left: 0;
247
+    right: 0;
248
+    width: 100%;
249
+    height: px(120);
250
+    background-color: rgb(0, 188, 38);
251
+    color: #fff;
252
+    display: flex;
253
+    align-items: center;
254
+    justify-content: center;
255
+    z-index: 100;
256
+}
257
+.add-btn {
258
+    height: px(120);
259
+    color: #333;
260
+    display: flex;
261
+    align-items: center;
262
+    justify-content: center;
263
+    margin: px(50) px(35) 0;
264
+    border: 1px solid #ccc;
265
+    border-radius: px(10);
266
+}
267
+.code-tool {
268
+    display: flex;
269
+    justify-content: flex-start;
270
+    align-items: center;
271
+    .scan-img {
272
+        flex-shrink: 0;
273
+        width: px(80);
274
+        height: px(80);
275
+        /deep/ img {
276
+            width: px(80);
277
+            height: px(80);
278
+        }
279
+    }
280
+    .generate {
281
+        color: #0097d1;
282
+        margin-right: px(30);
283
+        flex-shrink: 0;
284
+    }
285
+}
286
+.required {
287
+    color: #f00;
288
+    font-size: px(44);
289
+    &.hide {
290
+        visibility: hidden;
291
+    }
292
+}
293
+.inp-dis {
294
+    color: #999;
295
+}
296
+
297
+.img-card {
298
+    padding-top: px(30);
299
+    padding-bottom: px(30);
300
+}
301
+.form-img-item {
302
+    .tit {
303
+        padding: px(30);
304
+        font-size: px(44);
305
+    }
306
+}
307
+
308
+.spec-list {
309
+    width: 100%;
310
+    display: flex;
311
+    justify-content: space-between;
312
+    align-items: center;
313
+    li {
314
+        width: 33.333333%;
315
+        font-size: px(40);
316
+        height: px(100);
317
+        border: 1px solid #f1f1f1;
318
+        display: flex;
319
+        align-items: center;
320
+        justify-content: center;
321
+        color: #999;
322
+        & ~ li {
323
+            // border-left: none;
324
+        }
325
+        &.on {
326
+            color: rgb(0, 188, 38);
327
+            border-color: rgb(0, 188, 38);
328
+        }
329
+    }
330
+}
331
+.mo-date {
332
+    margin-top: px(20);
333
+    border-bottom: 1px solid #f1f1f1;
334
+    background: #fbfbfb;
335
+    font-size: px(40);
336
+    padding: px(10);
337
+}
338
+.n-date-box {
339
+    margin-top: px(20);
340
+    font-size: px(40);
341
+}
342
+.n-date {
343
+    border-bottom: 1px solid #f1f1f1;
344
+    background: #fbfbfb;
345
+    padding: 0 px(20);
346
+    display: inline-block;
347
+    width: px(200);
348
+    font-size: px(44);
349
+    vertical-align: bottom;
350
+}
351
+</style>

+ 403 - 0
src/pages/manage/user/phone.vue

@@ -0,0 +1,403 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item">
5
+                <div class="label">
6
+                    <span class="required">*</span>
7
+                    旧手机号:
8
+                </div>
9
+                <div class="box">
10
+                    <div class="con">
11
+                        <input type="text" v-model="form.phone" />
12
+                    </div>
13
+                </div>
14
+            </section>
15
+            <section class="form-item">
16
+                <div class="label">
17
+                    <span class="required">*</span>
18
+                    验证码:
19
+                </div>
20
+                <div class="box">
21
+                    <div class="con">
22
+                        <input type="text" v-model="form.code" />
23
+                    </div>
24
+                </div>
25
+                <div class="tool">
26
+                    <span
27
+                        class="code-btn"
28
+                        :class="{ dis: getCodeIng }"
29
+                        @click="getCode"
30
+                        >{{ codeStr }}</span
31
+                    >
32
+                </div>
33
+            </section>
34
+            <section class="form-item">
35
+                <div class="label">
36
+                    <span class="required">*</span>
37
+                    新手机号:
38
+                </div>
39
+                <div class="box">
40
+                    <div class="con">
41
+                        <input type="text" v-model="form.newPhone" />
42
+                    </div>
43
+                </div>
44
+            </section>
45
+        </div>
46
+        <div class="btn" @click="saveOk">保存</div>
47
+    </div>
48
+</template>
49
+
50
+<script>
51
+import MyImage from "../../../components/image/index";
52
+import EasyUpload from "../../../components/easy-upload/easy-upload-media";
53
+
54
+export default {
55
+    name: "",
56
+    components: { MyImage, EasyUpload },
57
+    // 数据
58
+    data() {
59
+        return {
60
+            form: {
61
+                phone: "",
62
+                code: "",
63
+                newPhone: "",
64
+            },
65
+            submitLoading: false,
66
+            getCodeIng: false,
67
+            codeStr: "获取验证码",
68
+        };
69
+    },
70
+
71
+    onLoad(opts) {},
72
+
73
+    onShow() {},
74
+
75
+    // 函数
76
+    methods: {
77
+        getCode() {
78
+            if (this.getCodeIng) {
79
+                return;
80
+            }
81
+            if (!/^1[3456789]\d{9}$/.test(this.form.phone)) {
82
+                return this.fn.showToast("请输入正确的手机号");
83
+            }
84
+            this.getCodeIng = true;
85
+            // this.api.get("", {}, { pass: true }).then((res) => {
86
+            // if (res.success) {
87
+            this.countDown();
88
+            // } else {
89
+            // this.getCodeIng = false;
90
+            // this.fn.showToast("获取验证码失败:" + res.message);
91
+            // }
92
+            // });
93
+        },
94
+
95
+        countDown() {
96
+            let n = 10;
97
+            this.codeStr = n + "s";
98
+            let timer = setInterval(() => {
99
+                n--;
100
+                this.codeStr = n + "s";
101
+                if (n === 0) {
102
+                    clearInterval(timer);
103
+                    this.codeStr = "获取验证码";
104
+                    this.getCodeIng = false;
105
+                }
106
+            }, 1000);
107
+        },
108
+
109
+        saveOk() {
110
+            if (this.submitLoading) {
111
+                return;
112
+            }
113
+            if (!this.form.phone) {
114
+                return this.fn.showToast("请输入旧手机号");
115
+            }
116
+            if (!this.form.code) {
117
+                return this.fn.showToast("请输入验证码");
118
+            }
119
+            if (!this.form.newPhone) {
120
+                return this.fn.showToast("请输入新手机号");
121
+            }
122
+            if (!/^1[3456789]\d{9}$/.test(this.form.newPhone)) {
123
+                return this.fn.showToast("请输入正确的新手机号");
124
+            }
125
+            uni.showLoading({
126
+                title: "提交中...",
127
+                mask: true,
128
+            });
129
+            let data = { ...this.form, userId: this.user.id, query: true };
130
+            delete data.newPassword2;
131
+            this.submitLoading = true;
132
+
133
+            this.api
134
+                .post("/Login/ChangePwd", data, { pass: true })
135
+                .then((res) => {
136
+                    this.submitLoading = false;
137
+                    uni.hideLoading();
138
+                    if (res.success) {
139
+                        this.fn.showToast("修改成功");
140
+                        setTimeout(() => {
141
+                            this.layout();
142
+                        }, 500);
143
+                    } else {
144
+                        this.fn.showModal({
145
+                            content: res.message,
146
+                            showCancel: false,
147
+                            title: "修改失败",
148
+                        });
149
+                    }
150
+                });
151
+        },
152
+
153
+        layout() {
154
+            this.$store.commit("user/logout", null);
155
+            this.router.replace({
156
+                path: "/pages/index/login",
157
+            });
158
+        },
159
+    },
160
+
161
+    // 数据计算
162
+    computed: {
163
+        user() {
164
+            return this.$store.state.user.user;
165
+        },
166
+    },
167
+
168
+    // 数据监听
169
+    watch: {},
170
+};
171
+</script>
172
+
173
+
174
+<style lang="scss" scoped>
175
+.page {
176
+    padding-bottom: px(120);
177
+    min-height: 100vh;
178
+}
179
+.page--iphoneX {
180
+    padding-bottom: px(150);
181
+    .btn {
182
+        padding-bottom: px(30);
183
+        background-color: rgb(0, 188, 38);
184
+    }
185
+}
186
+.form-card {
187
+    background-color: #fff;
188
+    padding: 0 px(30);
189
+    & ~ .form-card {
190
+        margin-top: px(25);
191
+    }
192
+    .head {
193
+        display: flex;
194
+        align-items: center;
195
+        justify-content: space-between;
196
+        height: px(140);
197
+        background-color: #fbfbfb;
198
+        border-bottom: 1px solid #f1f1f1;
199
+        border-top: 1px solid #f1f1f1;
200
+        font-size: px(44);
201
+    }
202
+}
203
+.form-item {
204
+    display: flex;
205
+    min-height: px(140);
206
+    padding: px(30) 0;
207
+    box-sizing: border-box;
208
+    align-items: center;
209
+    font-size: px(44);
210
+    &.dis-item {
211
+        color: #999;
212
+        background: #f9f9f9;
213
+    }
214
+    & ~ .form-item {
215
+        border-top: 1px solid #f1f1f1;
216
+    }
217
+    .label {
218
+        width: px(250);
219
+        flex-shrink: 0;
220
+        color: #999;
221
+        margin-right: px(10);
222
+    }
223
+    .box {
224
+        width: 100%;
225
+        position: relative;
226
+        input {
227
+            width: 100%;
228
+        }
229
+    }
230
+    .tool {
231
+        flex-shrink: 0;
232
+        color: #999;
233
+        margin-left: px(10);
234
+    }
235
+    .tip {
236
+        font-size: px(36);
237
+        color: #e6a23c;
238
+        margin-top: px(5);
239
+    }
240
+    textarea,
241
+    input {
242
+        max-width: 100%;
243
+        width: 100%;
244
+    }
245
+}
246
+.list {
247
+    // min-height: 100vh;
248
+    // background-color: #fff;
249
+    // border-bottom: 1px solid #f1f1f1;
250
+    li {
251
+        padding: px(0) px(35);
252
+        height: px(140);
253
+        line-height: px(140);
254
+        font-size: px(44);
255
+        border-top: 1px solid #f1f1f1;
256
+        display: flex;
257
+        justify-content: space-between;
258
+        align-items: center;
259
+    }
260
+    .tools {
261
+        display: flex;
262
+        align-items: center;
263
+        flex-shrink: 0;
264
+        span {
265
+            display: inline-block;
266
+            border: 1px solid #f1f1f1;
267
+            font-size: px(36);
268
+            height: px(80);
269
+            width: px(120);
270
+            display: flex;
271
+            justify-content: center;
272
+            align-items: center;
273
+            & ~ span {
274
+                margin-left: px(30);
275
+            }
276
+        }
277
+        .remove {
278
+            color: #f00;
279
+        }
280
+    }
281
+}
282
+.btn {
283
+    position: fixed;
284
+    bottom: 0;
285
+    left: 0;
286
+    right: 0;
287
+    width: 100%;
288
+    height: px(120);
289
+    background-color: rgb(0, 188, 38);
290
+    color: #fff;
291
+    display: flex;
292
+    align-items: center;
293
+    justify-content: center;
294
+    z-index: 100;
295
+}
296
+.add-btn {
297
+    height: px(120);
298
+    color: #333;
299
+    display: flex;
300
+    align-items: center;
301
+    justify-content: center;
302
+    margin: px(50) px(35) 0;
303
+    border: 1px solid #ccc;
304
+    border-radius: px(10);
305
+}
306
+.code-tool {
307
+    display: flex;
308
+    justify-content: flex-start;
309
+    align-items: center;
310
+    .scan-img {
311
+        flex-shrink: 0;
312
+        width: px(80);
313
+        height: px(80);
314
+        /deep/ img {
315
+            width: px(80);
316
+            height: px(80);
317
+        }
318
+    }
319
+    .generate {
320
+        color: #0097d1;
321
+        margin-right: px(30);
322
+        flex-shrink: 0;
323
+    }
324
+}
325
+.required {
326
+    color: #f00;
327
+    font-size: px(44);
328
+    &.hide {
329
+        visibility: hidden;
330
+    }
331
+}
332
+.inp-dis {
333
+    color: #999;
334
+}
335
+
336
+.img-card {
337
+    padding-top: px(30);
338
+    padding-bottom: px(30);
339
+}
340
+.form-img-item {
341
+    .tit {
342
+        padding: px(30);
343
+        font-size: px(44);
344
+    }
345
+}
346
+
347
+.spec-list {
348
+    width: 100%;
349
+    display: flex;
350
+    justify-content: space-between;
351
+    align-items: center;
352
+    li {
353
+        width: 33.333333%;
354
+        font-size: px(40);
355
+        height: px(100);
356
+        border: 1px solid #f1f1f1;
357
+        display: flex;
358
+        align-items: center;
359
+        justify-content: center;
360
+        color: #999;
361
+        & ~ li {
362
+            // border-left: none;
363
+        }
364
+        &.on {
365
+            color: rgb(0, 188, 38);
366
+            border-color: rgb(0, 188, 38);
367
+        }
368
+    }
369
+}
370
+.mo-date {
371
+    margin-top: px(20);
372
+    border-bottom: 1px solid #f1f1f1;
373
+    background: #fbfbfb;
374
+    font-size: px(40);
375
+    padding: px(10);
376
+}
377
+.n-date-box {
378
+    margin-top: px(20);
379
+    font-size: px(40);
380
+}
381
+.n-date {
382
+    border-bottom: 1px solid #f1f1f1;
383
+    background: #fbfbfb;
384
+    padding: 0 px(20);
385
+    display: inline-block;
386
+    width: px(200);
387
+    font-size: px(44);
388
+    vertical-align: bottom;
389
+}
390
+.code-btn {
391
+    width: px(220);
392
+    height: px(60);
393
+    border-left: 1px solid #f1f1f1;
394
+    display: flex;
395
+    align-items: center;
396
+    justify-content: center;
397
+    font-size: px(40);
398
+    color: #4395ff;
399
+    &.dis {
400
+        color: #999;
401
+    }
402
+}
403
+</style>

BIN
src/static/icon/user.png