cr лет назад: 4
Родитель
Сommit
9223923c58
3 измененных файлов с 221 добавлено и 117 удалено
  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 57
                         ></my-image>
58 58
                         <span class="text">我的钱包</span>
59 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 67
                 <li class="item" @click="jump('/pages/manage/user/index')">
61 68
                     <my-image
62 69
                         class="img"

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

@@ -2,14 +2,9 @@
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="form-card">
4 4
             <section class="form-item">
5
-                <div class="label">姓名:</div>
5
+                <div class="label"><span class="required">*</span>姓名:</div>
6 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 8
                 </div>
14 9
             </section>
15 10
             <section class="form-item">
@@ -20,9 +15,8 @@
20 15
                 <div class="box">
21 16
                     <input
22 17
                         type="text"
23
-                        :disabled="true"
24 18
                         v-model="form.wechat"
25
-                        placeholder=" "
19
+                        placeholder="请输入"
26 20
                     />
27 21
                 </div>
28 22
             </section>
@@ -55,9 +49,8 @@
55 49
                 <div class="box">
56 50
                     <input
57 51
                         type="text"
58
-                        :disabled="true"
59
-                        v-model="form.zhihang"
60
-                        placeholder=" "
52
+                        v-model="form.bankBranch"
53
+                        placeholder="请输入"
61 54
                     />
62 55
                 </div>
63 56
             </section>
@@ -69,28 +62,28 @@
69 62
                 <div class="box">
70 63
                     <input
71 64
                         type="text"
72
-                        :disabled="true"
73
-                        v-model="form.kahao"
74
-                        placeholder=" "
65
+                        v-model="form.bankAccount"
66
+                        placeholder="请输入"
75 67
                     />
76 68
                 </div>
77 69
             </section>
78 70
             <section class="form-item">
79 71
                 <div class="label">
80 72
                     <span class="required">*</span>
81
-                    银行卡号
73
+                    验证码
82 74
                 </div>
83 75
                 <div class="box code-box">
84 76
                     <input
85 77
                         type="text"
86
-                        :disabled="true"
87 78
                         v-model="form.code"
88
-                        placeholder=" "
79
+                        placeholder="请输入"
89 80
                     />
90 81
                     <span class="get-code">{{ codeStr }}</span>
91 82
                 </div>
92 83
             </section>
93
-        <p class="tel">店长手机号:173****1879</p>
84
+            <p class="tel">
85
+                店长手机号:{{ shopInfo.managerTelephone | hideTel }}
86
+            </p>
94 87
         </div>
95 88
         <div class="btns">
96 89
             <div class="btn" @click="saveOk">保存</div>
@@ -104,97 +97,142 @@ import MyImage from "../../components/image/index";
104 97
 export default {
105 98
     name: "",
106 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 106
     data() {
109 107
         return {
110 108
             form: {
111 109
                 name: "",
112 110
                 wechat: "",
113
-                yinhang: "",
114
-                zhihang: "",
115
-                kahao: "",
111
+                bank: "",
112
+                bankBranch: "",
113
+                bankAccount: "",
116 114
                 code: "",
117 115
             },
118 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 131
             submitLoading: false,
124 132
             timeing: false,
125 133
             codeStr: "发送验证码",
134
+            shopInfo: {},
126 135
         };
127 136
     },
128 137
 
129 138
     onLoad(opts) {
130 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 142
     onShow() {},
168 143
 
169 144
     // 函数
170 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 192
         pickerChange(e) {
172 193
             let val = this.opts[e.detail.value];
173
-            this.form.yinhang = val.value;
194
+            this.form.bank = val.value;
174 195
         },
175 196
         saveOk() {
176 197
             if (this.submitLoading) {
177 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 218
             this.submitLoading = true;
193 219
             uni.showLoading({
194 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 236
                 this.submitLoading = false;
199 237
                 uni.hideLoading();
200 238
                 if (res.success) {
@@ -474,7 +512,7 @@ export default {
474 512
         }
475 513
     }
476 514
 }
477
-.tel{
515
+.tel {
478 516
     border-top: 1px solid #f1f1f1;
479 517
     padding-top: px(60);
480 518
     text-align: center;

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

@@ -29,66 +29,80 @@
29 29
             <h1 class="tit">可提现金额</h1>
30 30
             <div class="money-num">
31 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 35
             </div>
34 36
             <p class="tip">最低提现2元,单日上线20000元</p>
35 37
             <div class="input">
36
-                <input type="digit" placeholder="¥0">
38
+                <input type="digit" v-model="formVal" placeholder="¥0" />
37 39
             </div>
38 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 44
         </div>
41 45
         <div class="card record">
42
-            <h1 class="tit">提现记录  共2条</h1>
46
+            <h1 class="tit">提现记录 共{{ withdrawalTotal }}条</h1>
43 47
             <ul class="table">
44 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 53
                 </li>
58
-                <li class="row">
54
+                <li class="row" v-for="item of withdrawalList" :key="item.id">
59 55
                     <div class="item">
60
-                        2021/01/01
56
+                        {{ item.applyTime | dateFormat("yyyy/MM/dd") }}
61 57
                     </div>
62 58
                     <div class="item">
63
-                        微信
59
+                        <!-- {{item.status}} -->
64 60
                     </div>
65 61
                     <div class="item">
66
-                        100
62
+                        {{ item.amount / 100 }}
67 63
                     </div>
68 64
                     <div class="item">
69
-                        已提交
65
+                        {{ item.status }}
70 66
                     </div>
71 67
                 </li>
72 68
             </ul>
73 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 81
     </div>
75 82
 </template>
76 83
 
77 84
 <script>
78 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 89
 export default {
81 90
     name: "",
82
-    components: { MyImage },
91
+    components: { MyImage, uniPopupDialog, uniPopup },
83 92
     // 数据
84 93
     data() {
85 94
         return {
95
+            formVal: "",
96
+            withdrawalPageIndex: 1,
97
+            withdrawalList: [],
98
+            withdrawalTotal: 0,
86 99
         };
87 100
     },
88 101
     filters: {},
89
-    onLoad() {},
90
-    async onShow() {
102
+    onLoad() {
103
+        this.getWithdrawalList();
91 104
     },
105
+    async onShow() {},
92 106
 
93 107
     // onPullDownRefresh() {
94 108
     //     this.getList();
@@ -96,7 +110,52 @@ export default {
96 110
 
97 111
     // 函数
98 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 174
 <style lang="scss" scoped>
116
-.card{
175
+.card {
117 176
     margin: px(40) px(40);
118 177
     border: 1px solid #efefef;
119 178
     padding: px(40);
120 179
     background-color: #fff;
121
-    .tit{
180
+    .tit {
122 181
         font-size: px(44);
123 182
         font-weight: bold;
124 183
         padding-bottom: px(20);
125 184
     }
126 185
 }
127
-.info{
128
-    .item{
186
+.info {
187
+    .item {
129 188
         margin-top: px(20);
130 189
         font-size: px(44);
131 190
         display: flex;
132 191
         align-items: start;
133 192
         line-height: px(60);
134
-        .key{
193
+        .key {
135 194
             margin-right: px(20);
136 195
             flex-shrink: 0;
137 196
             color: #666;
138 197
         }
139 198
     }
140 199
 }
141
-.money{
142
-    .money-num{
200
+.money {
201
+    .money-num {
143 202
         display: flex;
144 203
         align-items: center;
145 204
         justify-content: space-between;
146 205
         padding: px(20) 0;
147
-        .num{
206
+        .num {
148 207
             font-size: px(56);
149 208
             color: red;
150 209
         }
151
-        .view{
210
+        .view {
152 211
             width: px(340);
153 212
             height: px(88);
154 213
             border: 1px solid rgb(0, 188, 38);
@@ -159,37 +218,37 @@ export default {
159 218
             border-radius: px(10);
160 219
         }
161 220
     }
162
-    .input{
221
+    .input {
163 222
         margin: px(30) 0;
164
-        input{
223
+        input {
165 224
             height: px(100);
166 225
             padding: 0 px(20);
167 226
             border: 1px solid #ededed;
168 227
         }
169 228
     }
170
-    .tip{
229
+    .tip {
171 230
         font-size: px(40);
172 231
         color: #999;
173
-        &.top-color{
232
+        &.top-color {
174 233
             color: rgb(255, 173, 129);
175 234
         }
176 235
     }
177
-    .btn{
236
+    .btn {
178 237
         margin-top: px(40);
179
-        background-color:rgb(0, 188, 38);
238
+        background-color: rgb(0, 188, 38);
180 239
         color: #fff;
181 240
         border: none;
182 241
     }
183 242
 }
184
-.record{
185
-    .table{
243
+.record {
244
+    .table {
186 245
         margin-top: px(30);
187
-        .row{
246
+        .row {
188 247
             display: flex;
189 248
             border-right: 1px solid #efefef;
190 249
             border-bottom: 1px solid #efefef;
191 250
         }
192
-        .item{
251
+        .item {
193 252
             border-left: 1px solid #efefef;
194 253
             border-top: 1px solid #efefef;
195 254
             width: 25%;