Browse Source

钱包设置

cr 4 years ago
parent
commit
9223923c58
3 changed files with 221 additions and 117 deletions
  1. 7 0
      src/pages/manage/index.vue
  2. 112 74
      src/pages/wallet/bind.vue
  3. 102 43
      src/pages/wallet/index.vue

+ 7 - 0
src/pages/manage/index.vue

@@ -57,6 +57,13 @@
57
                         ></my-image>
57
                         ></my-image>
58
                         <span class="text">我的钱包</span>
58
                         <span class="text">我的钱包</span>
59
                     </li> -->
59
                     </li> -->
60
+                    <li class="item" @click="jump('/pages/wallet/index')">
61
+                        <my-image
62
+                            class="img"
63
+                            src="/static/icon/money.png"
64
+                        ></my-image>
65
+                        <span class="text">我的钱包</span>
66
+                    </li> 
60
                 <li class="item" @click="jump('/pages/manage/user/index')">
67
                 <li class="item" @click="jump('/pages/manage/user/index')">
61
                     <my-image
68
                     <my-image
62
                         class="img"
69
                         class="img"

+ 112 - 74
src/pages/wallet/bind.vue

@@ -2,14 +2,9 @@
2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
         <div class="form-card">
3
         <div class="form-card">
4
             <section class="form-item">
4
             <section class="form-item">
5
-                <div class="label">姓名:</div>
5
+                <div class="label"><span class="required">*</span>姓名:</div>
6
                 <div class="box">
6
                 <div class="box">
7
-                    <input
8
-                        type="text"
9
-                        :disabled="true"
10
-                        v-model="form.name"
11
-                        placeholder=" "
12
-                    />
7
+                    <input type="text" v-model="form.name" placeholder=" " />
13
                 </div>
8
                 </div>
14
             </section>
9
             </section>
15
             <section class="form-item">
10
             <section class="form-item">
@@ -20,9 +15,8 @@
20
                 <div class="box">
15
                 <div class="box">
21
                     <input
16
                     <input
22
                         type="text"
17
                         type="text"
23
-                        :disabled="true"
24
                         v-model="form.wechat"
18
                         v-model="form.wechat"
25
-                        placeholder=" "
19
+                        placeholder="请输入"
26
                     />
20
                     />
27
                 </div>
21
                 </div>
28
             </section>
22
             </section>
@@ -55,9 +49,8 @@
55
                 <div class="box">
49
                 <div class="box">
56
                     <input
50
                     <input
57
                         type="text"
51
                         type="text"
58
-                        :disabled="true"
59
-                        v-model="form.zhihang"
60
-                        placeholder=" "
52
+                        v-model="form.bankBranch"
53
+                        placeholder="请输入"
61
                     />
54
                     />
62
                 </div>
55
                 </div>
63
             </section>
56
             </section>
@@ -69,28 +62,28 @@
69
                 <div class="box">
62
                 <div class="box">
70
                     <input
63
                     <input
71
                         type="text"
64
                         type="text"
72
-                        :disabled="true"
73
-                        v-model="form.kahao"
74
-                        placeholder=" "
65
+                        v-model="form.bankAccount"
66
+                        placeholder="请输入"
75
                     />
67
                     />
76
                 </div>
68
                 </div>
77
             </section>
69
             </section>
78
             <section class="form-item">
70
             <section class="form-item">
79
                 <div class="label">
71
                 <div class="label">
80
                     <span class="required">*</span>
72
                     <span class="required">*</span>
81
-                    银行卡号
73
+                    验证码
82
                 </div>
74
                 </div>
83
                 <div class="box code-box">
75
                 <div class="box code-box">
84
                     <input
76
                     <input
85
                         type="text"
77
                         type="text"
86
-                        :disabled="true"
87
                         v-model="form.code"
78
                         v-model="form.code"
88
-                        placeholder=" "
79
+                        placeholder="请输入"
89
                     />
80
                     />
90
                     <span class="get-code">{{ codeStr }}</span>
81
                     <span class="get-code">{{ codeStr }}</span>
91
                 </div>
82
                 </div>
92
             </section>
83
             </section>
93
-        <p class="tel">店长手机号:173****1879</p>
84
+            <p class="tel">
85
+                店长手机号:{{ shopInfo.managerTelephone | hideTel }}
86
+            </p>
94
         </div>
87
         </div>
95
         <div class="btns">
88
         <div class="btns">
96
             <div class="btn" @click="saveOk">保存</div>
89
             <div class="btn" @click="saveOk">保存</div>
@@ -104,97 +97,142 @@ import MyImage from "../../components/image/index";
104
 export default {
97
 export default {
105
     name: "",
98
     name: "",
106
     components: { MyImage },
99
     components: { MyImage },
100
+    filters: {
101
+        hideTel(v) {
102
+            return v.replace(/(\d{3})(\d{4})(\d{4})/, "$1****$3") || "";
103
+        },
104
+    },
107
     // 数据
105
     // 数据
108
     data() {
106
     data() {
109
         return {
107
         return {
110
             form: {
108
             form: {
111
                 name: "",
109
                 name: "",
112
                 wechat: "",
110
                 wechat: "",
113
-                yinhang: "",
114
-                zhihang: "",
115
-                kahao: "",
111
+                bank: "",
112
+                bankBranch: "",
113
+                bankAccount: "",
116
                 code: "",
114
                 code: "",
117
             },
115
             },
118
             opts: [
116
             opts: [
119
-                // { key: "待关联", value: 0 },
120
-                { key: "招商", value: 1 },
121
-                { key: "工商", value: 2 },
117
+                { key: "工商银行", value: "工商银行" },
118
+                { key: "农业银行", value: "农业银行" },
119
+                { key: "建设银行", value: "建设银行" },
120
+                { key: "招商银行", value: "招商银行" },
121
+                { key: "中国银行", value: "中国银行" },
122
+                { key: "浦发银行", value: "浦发银行" },
123
+                { key: "广发银行", value: "广发银行" },
124
+                { key: "民生银行", value: "民生银行" },
125
+                { key: "平安银行", value: "平安银行" },
126
+                { key: "光大银行", value: "光大银行" },
127
+                { key: "兴业银行", value: "兴业银行" },
128
+                { key: "中信银行", value: "中信银行" },
129
+                { key: "上海银行", value: "上海银行" },
122
             ],
130
             ],
123
             submitLoading: false,
131
             submitLoading: false,
124
             timeing: false,
132
             timeing: false,
125
             codeStr: "发送验证码",
133
             codeStr: "发送验证码",
134
+            shopInfo: {},
126
         };
135
         };
127
     },
136
     },
128
 
137
 
129
     onLoad(opts) {
138
     onLoad(opts) {
130
         this.getData();
139
         this.getData();
131
     },
140
     },
132
-    getCode() {
133
-        if (this.timeing) {
134
-            return;
135
-        }
136
-        let phoneReg = /^[1][1-9][0-9]{9}$/;
137
-        if (!this.form.mobile) {
138
-            return this.fn.showToast("请输入手机号");
139
-        }
140
-        if (!phoneReg.test(this.form.mobile)) {
141
-            return this.fn.showToast("手机号格式不正确");
142
-        }
143
-        this.sendCode();
144
-        this.downTime();
145
-    },
146
-    sendCode() {
147
-        this.api
148
-            .get("/Login/SendSms", { mobile: this.form.mobile })
149
-            .then((res) => {});
150
-    },
151
-    downTime() {
152
-        this.timeing = true;
153
-        let t = 60;
154
-        this.codeStr = t + "s重新获取";
155
-        this.timer = setInterval(() => {
156
-            t--;
157
-            if (t === 0) {
158
-                clearInterval(this.timer);
159
-                this.codeStr = "发送验证码";
160
-                this.timeing = false;
161
-            } else {
162
-                this.codeStr = t + "s重新获取";
163
-            }
164
-        }, 1000);
165
-    },
166
 
141
 
167
     onShow() {},
142
     onShow() {},
168
 
143
 
169
     // 函数
144
     // 函数
170
     methods: {
145
     methods: {
146
+        getData() {
147
+            this.api.get("/Shop/GetInfo", {}, { pass: true }).then((res) => {
148
+                if (res.success && res.data) {
149
+                    this.shopInfo = res.data;
150
+                }
151
+            });
152
+        },
153
+        getCode() {
154
+            if (this.timeing) {
155
+                return;
156
+            }
157
+            let phoneReg = /^[1][1-9][0-9]{9}$/;
158
+            if (!this.form.mobile) {
159
+                return this.fn.showToast("请输入手机号");
160
+            }
161
+            if (!phoneReg.test(this.form.mobile)) {
162
+                return this.fn.showToast("手机号格式不正确");
163
+            }
164
+            this.sendCode();
165
+            this.downTime();
166
+        },
167
+        sendCode() {
168
+            if(!this.shopInfo.managerTelephone){
169
+                return this.fn.showToast('未获取到店长手机号');
170
+            }
171
+            this.api
172
+                .get("/Login/SendSms", {
173
+                    mobile: this.shopInfo.managerTelephone,
174
+                })
175
+                .then((res) => {});
176
+        },
177
+        downTime() {
178
+            this.timeing = true;
179
+            let t = 60;
180
+            this.codeStr = t + "s重新获取";
181
+            this.timer = setInterval(() => {
182
+                t--;
183
+                if (t === 0) {
184
+                    clearInterval(this.timer);
185
+                    this.codeStr = "发送验证码";
186
+                    this.timeing = false;
187
+                } else {
188
+                    this.codeStr = t + "s重新获取";
189
+                }
190
+            }, 1000);
191
+        },
171
         pickerChange(e) {
192
         pickerChange(e) {
172
             let val = this.opts[e.detail.value];
193
             let val = this.opts[e.detail.value];
173
-            this.form.yinhang = val.value;
194
+            this.form.bank = val.value;
174
         },
195
         },
175
         saveOk() {
196
         saveOk() {
176
             if (this.submitLoading) {
197
             if (this.submitLoading) {
177
                 return;
198
                 return;
178
             }
199
             }
179
-            if (!this.form.managerTelephone) {
180
-                return this.fn.showToast("请输入店长电话");
200
+            if (!this.form.name) {
201
+                return this.fn.showToast("请输入姓名");
202
+            }
203
+            if (!this.form.wechat) {
204
+                return this.fn.showToast("请输入微信号");
205
+            }
206
+            if (!this.form.bank) {
207
+                return this.fn.showToast("请选择银行");
181
             }
208
             }
182
-            // if (!this.form.iDCard) {
183
-            //     return this.fn.showToast("请上传身份证照");
184
-            // }
185
-            // if (this.form.iDCard.length !== 2) {
186
-            //     return this.fn.showToast("请分别上传身份证照正反面");
187
-            // }
188
-            if (this.user.parentInviteCode) {
189
-                this.form.invitedCode = this.user.parentInviteCode;
209
+            if (!this.form.bankBranch) {
210
+                return this.fn.showToast("请输入开户支行");
211
+            }
212
+            if (!this.form.bankAccount) {
213
+                return this.fn.showToast("请输入银行卡号");
214
+            }
215
+            if (!this.form.code) {
216
+                return this.fn.showToast("请输入验证码");
190
             }
217
             }
191
-            console.log(this.form);
192
             this.submitLoading = true;
218
             this.submitLoading = true;
193
             uni.showLoading({
219
             uni.showLoading({
194
                 title: "提交中...",
220
                 title: "提交中...",
195
             });
221
             });
196
-            let data = { ...this.form };
197
-            this.api.post("/Shop/Set", data, { pass: true }).then((res) => {
222
+            let data = {
223
+                mobile:this.shopInfo.managerTelephone,
224
+                smsCode:this.form.code,
225
+                account:{
226
+                    name:this.form.name,
227
+                    wechat:this.form.wechat,
228
+                    bank:this.form.bank,
229
+                    bankBranch:this.form.bankBranch,
230
+                    bankAccount:this.form.bankAccount,
231
+                    userId:this.user.id,
232
+                    appId:this.user.appId,
233
+                }
234
+             };
235
+            this.api.post("/User/BindAccount", data, { pass: true }).then((res) => {
198
                 this.submitLoading = false;
236
                 this.submitLoading = false;
199
                 uni.hideLoading();
237
                 uni.hideLoading();
200
                 if (res.success) {
238
                 if (res.success) {
@@ -474,7 +512,7 @@ export default {
474
         }
512
         }
475
     }
513
     }
476
 }
514
 }
477
-.tel{
515
+.tel {
478
     border-top: 1px solid #f1f1f1;
516
     border-top: 1px solid #f1f1f1;
479
     padding-top: px(60);
517
     padding-top: px(60);
480
     text-align: center;
518
     text-align: center;

+ 102 - 43
src/pages/wallet/index.vue

@@ -29,66 +29,80 @@
29
             <h1 class="tit">可提现金额</h1>
29
             <h1 class="tit">可提现金额</h1>
30
             <div class="money-num">
30
             <div class="money-num">
31
                 <div class="num">¥960.00</div>
31
                 <div class="num">¥960.00</div>
32
-                <div class="view" @click="jump('/pages/wallet/bill')">查看账单</div>
32
+                <div class="view" @click="jump('/pages/wallet/bill')">
33
+                    查看账单
34
+                </div>
33
             </div>
35
             </div>
34
             <p class="tip">最低提现2元,单日上线20000元</p>
36
             <p class="tip">最低提现2元,单日上线20000元</p>
35
             <div class="input">
37
             <div class="input">
36
-                <input type="digit" placeholder="¥0">
38
+                <input type="digit" v-model="formVal" placeholder="¥0" />
37
             </div>
39
             </div>
38
             <p class="tip tip-color">提现金额超出总金额,请重新填写</p>
40
             <p class="tip tip-color">提现金额超出总金额,请重新填写</p>
39
-            <button type="button" class="btn">申请提现</button>
41
+            <button type="button" class="btn" @click="withdrawal">
42
+                申请提现
43
+            </button>
40
         </div>
44
         </div>
41
         <div class="card record">
45
         <div class="card record">
42
-            <h1 class="tit">提现记录  共2条</h1>
46
+            <h1 class="tit">提现记录 共{{ withdrawalTotal }}条</h1>
43
             <ul class="table">
47
             <ul class="table">
44
                 <li class="row">
48
                 <li class="row">
45
-                    <div class="item">
46
-                        申请时间
47
-                    </div>
48
-                    <div class="item">
49
-                        提现方式
50
-                    </div>
51
-                    <div class="item">
52
-                        金额
53
-                    </div>
54
-                    <div class="item">
55
-                        状态
56
-                    </div>
49
+                    <div class="item">申请时间</div>
50
+                    <div class="item">提现方式</div>
51
+                    <div class="item">金额</div>
52
+                    <div class="item">状态</div>
57
                 </li>
53
                 </li>
58
-                <li class="row">
54
+                <li class="row" v-for="item of withdrawalList" :key="item.id">
59
                     <div class="item">
55
                     <div class="item">
60
-                        2021/01/01
56
+                        {{ item.applyTime | dateFormat("yyyy/MM/dd") }}
61
                     </div>
57
                     </div>
62
                     <div class="item">
58
                     <div class="item">
63
-                        微信
59
+                        <!-- {{item.status}} -->
64
                     </div>
60
                     </div>
65
                     <div class="item">
61
                     <div class="item">
66
-                        100
62
+                        {{ item.amount / 100 }}
67
                     </div>
63
                     </div>
68
                     <div class="item">
64
                     <div class="item">
69
-                        已提交
65
+                        {{ item.status }}
70
                     </div>
66
                     </div>
71
                 </li>
67
                 </li>
72
             </ul>
68
             </ul>
73
         </div>
69
         </div>
70
+
71
+        <uni-popup ref="popup" type="dialog">
72
+            <uni-popup-dialog
73
+                mode="input"
74
+                :title="'提现备注'"
75
+                :content="false"
76
+                :inputType="'text'"
77
+                placeholder="请输入备注"
78
+                @confirm="popupConfirm"
79
+            ></uni-popup-dialog>
80
+        </uni-popup>
74
     </div>
81
     </div>
75
 </template>
82
 </template>
76
 
83
 
77
 <script>
84
 <script>
78
 import MyImage from "../../components/image/index";
85
 import MyImage from "../../components/image/index";
86
+import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
87
+import uniPopup from "../../components/uni-popup/uni-popup";
79
 
88
 
80
 export default {
89
 export default {
81
     name: "",
90
     name: "",
82
-    components: { MyImage },
91
+    components: { MyImage, uniPopupDialog, uniPopup },
83
     // 数据
92
     // 数据
84
     data() {
93
     data() {
85
         return {
94
         return {
95
+            formVal: "",
96
+            withdrawalPageIndex: 1,
97
+            withdrawalList: [],
98
+            withdrawalTotal: 0,
86
         };
99
         };
87
     },
100
     },
88
     filters: {},
101
     filters: {},
89
-    onLoad() {},
90
-    async onShow() {
102
+    onLoad() {
103
+        this.getWithdrawalList();
91
     },
104
     },
105
+    async onShow() {},
92
 
106
 
93
     // onPullDownRefresh() {
107
     // onPullDownRefresh() {
94
     //     this.getList();
108
     //     this.getList();
@@ -96,7 +110,52 @@ export default {
96
 
110
 
97
     // 函数
111
     // 函数
98
     methods: {
112
     methods: {
113
+        getWithdrawalList() {
114
+            this.api
115
+                .get("/User/GetWithdrawalList", {
116
+                    pageIndex: this.withdrawalPageIndex,
117
+                })
118
+                .then((res) => {
119
+                    this.withdrawalList = res.data.data;
120
+                    this.withdrawalTotal = res.data.pager.totalItems;
121
+                });
122
+        },
99
 
123
 
124
+        withdrawal() {
125
+            if (!this.formVal) {
126
+                return this.fn.showToast("请输入提现金额");
127
+            }
128
+            this.$refs.popup.open({
129
+                type: "dialog",
130
+            });
131
+        },
132
+        popupConfirm(done, value) {
133
+            if (!value) {
134
+                return this.fn.showToast("请输入提现备注");
135
+            }
136
+            console.log(this.formVal, value);
137
+            uni.showLoading({
138
+                title: "提交中...",
139
+            });
140
+            let data = { 
141
+                amount:this.formVal/100,
142
+                remark:value
143
+             };
144
+            this.api.post("/User/Withdrawal", data, { pass: true }).then((res) => {
145
+                this.submitLoading = false;
146
+                uni.hideLoading();
147
+                if (res.success) {
148
+                    
149
+                    // 刷新页面数据
150
+                } else {
151
+                    this.fn.showModal({
152
+                        content:'错误信息:'+res.message,
153
+                        showCancel: false,
154
+                    });
155
+                }
156
+            });
157
+            done();
158
+        },
100
     },
159
     },
101
 
160
 
102
     // 数据计算
161
     // 数据计算
@@ -113,42 +172,42 @@ export default {
113
 
172
 
114
 
173
 
115
 <style lang="scss" scoped>
174
 <style lang="scss" scoped>
116
-.card{
175
+.card {
117
     margin: px(40) px(40);
176
     margin: px(40) px(40);
118
     border: 1px solid #efefef;
177
     border: 1px solid #efefef;
119
     padding: px(40);
178
     padding: px(40);
120
     background-color: #fff;
179
     background-color: #fff;
121
-    .tit{
180
+    .tit {
122
         font-size: px(44);
181
         font-size: px(44);
123
         font-weight: bold;
182
         font-weight: bold;
124
         padding-bottom: px(20);
183
         padding-bottom: px(20);
125
     }
184
     }
126
 }
185
 }
127
-.info{
128
-    .item{
186
+.info {
187
+    .item {
129
         margin-top: px(20);
188
         margin-top: px(20);
130
         font-size: px(44);
189
         font-size: px(44);
131
         display: flex;
190
         display: flex;
132
         align-items: start;
191
         align-items: start;
133
         line-height: px(60);
192
         line-height: px(60);
134
-        .key{
193
+        .key {
135
             margin-right: px(20);
194
             margin-right: px(20);
136
             flex-shrink: 0;
195
             flex-shrink: 0;
137
             color: #666;
196
             color: #666;
138
         }
197
         }
139
     }
198
     }
140
 }
199
 }
141
-.money{
142
-    .money-num{
200
+.money {
201
+    .money-num {
143
         display: flex;
202
         display: flex;
144
         align-items: center;
203
         align-items: center;
145
         justify-content: space-between;
204
         justify-content: space-between;
146
         padding: px(20) 0;
205
         padding: px(20) 0;
147
-        .num{
206
+        .num {
148
             font-size: px(56);
207
             font-size: px(56);
149
             color: red;
208
             color: red;
150
         }
209
         }
151
-        .view{
210
+        .view {
152
             width: px(340);
211
             width: px(340);
153
             height: px(88);
212
             height: px(88);
154
             border: 1px solid rgb(0, 188, 38);
213
             border: 1px solid rgb(0, 188, 38);
@@ -159,37 +218,37 @@ export default {
159
             border-radius: px(10);
218
             border-radius: px(10);
160
         }
219
         }
161
     }
220
     }
162
-    .input{
221
+    .input {
163
         margin: px(30) 0;
222
         margin: px(30) 0;
164
-        input{
223
+        input {
165
             height: px(100);
224
             height: px(100);
166
             padding: 0 px(20);
225
             padding: 0 px(20);
167
             border: 1px solid #ededed;
226
             border: 1px solid #ededed;
168
         }
227
         }
169
     }
228
     }
170
-    .tip{
229
+    .tip {
171
         font-size: px(40);
230
         font-size: px(40);
172
         color: #999;
231
         color: #999;
173
-        &.top-color{
232
+        &.top-color {
174
             color: rgb(255, 173, 129);
233
             color: rgb(255, 173, 129);
175
         }
234
         }
176
     }
235
     }
177
-    .btn{
236
+    .btn {
178
         margin-top: px(40);
237
         margin-top: px(40);
179
-        background-color:rgb(0, 188, 38);
238
+        background-color: rgb(0, 188, 38);
180
         color: #fff;
239
         color: #fff;
181
         border: none;
240
         border: none;
182
     }
241
     }
183
 }
242
 }
184
-.record{
185
-    .table{
243
+.record {
244
+    .table {
186
         margin-top: px(30);
245
         margin-top: px(30);
187
-        .row{
246
+        .row {
188
             display: flex;
247
             display: flex;
189
             border-right: 1px solid #efefef;
248
             border-right: 1px solid #efefef;
190
             border-bottom: 1px solid #efefef;
249
             border-bottom: 1px solid #efefef;
191
         }
250
         }
192
-        .item{
251
+        .item {
193
             border-left: 1px solid #efefef;
252
             border-left: 1px solid #efefef;
194
             border-top: 1px solid #efefef;
253
             border-top: 1px solid #efefef;
195
             width: 25%;
254
             width: 25%;